HomeSort by relevance Sort by last modified time
    Searched defs:ET (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/webview/chromium/tools/
generate_local_manifest.py 15 import xml.etree.ElementTree as ET
18 manifest_tree = ET.parse(manifest_path)
19 local_manifest_root = ET.Element('manifest')
31 remove_project = ET.SubElement(local_manifest_root, 'remove-project')
34 local_manifest_tree = ET.ElementTree(local_manifest_root)
  /external/chromium_org/android_webview/buildbot/
generate_local_manifest.py 15 import xml.etree.ElementTree as ET
19 manifest_tree = ET.parse(manifest_path)
20 local_manifest_root = ET.Element('manifest')
23 remove_project = ET.SubElement(local_manifest_root, 'remove-project')
27 pin_project = ET.SubElement(local_manifest_root, 'project')
53 local_manifest_tree = ET.ElementTree(local_manifest_root)
  /external/qemu/audio/
mixeng_template.h 44 #define ET glue (ENDIAN_CONVERSION, glue (_, IN_T))
47 static mixeng_real inline glue (conv_, ET) (IN_T v)
66 static IN_T inline glue (clip_, ET) (mixeng_real v)
84 static inline int64_t glue (conv_, ET) (IN_T v)
94 static inline IN_T glue (clip_, ET) (int64_t v)
111 static void glue (glue (conv_, ET), _to_stereo)
125 out->l = VOL (glue (conv_, ET) (*in++), vol->l);
126 out->r = VOL (glue (conv_, ET) (*in++), vol->r);
131 static void glue (glue (conv_, ET), _to_mono)
145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_element.cpp 65 RSExportType *ET = NULL;
88 ET = EPT;
105 ET = EVT;
116 return ET;
slang_rs_context.cpp 92 RSExportType *ET = RSExportType::CreateFromDecl(this, VD);
93 if (!ET)
96 RSExportVar *EV = new RSExportVar(this, VD, ET);
155 RSExportType *ET = NULL;
180 ET = RSExportType::Create(this, T);
183 return (ET != NULL);
271 RSExportType *ET) {
276 ET);
slang_rs_export_foreach.cpp 448 RSExportType *ET = RSExportType::Create(Context, T.getTypePtr());
450 if (ET == NULL) {
457 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
460 FE->mParamPacketType = static_cast<RSExportRecordType *>(ET);
slang_rs_export_func.cpp 110 RSExportType *ET =
113 if (ET == NULL) {
120 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
123 F->mParamPacketType = static_cast<RSExportRecordType *>(ET);
slang_rs.cpp 106 RSExportType *ET = static_cast<RSExportType *>(RSE);
107 if (ET->getClass() != RSExportType::ExportClassRecord)
110 RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET);
slang_rs_backend.cpp 205 const RSExportType *ET = EV->getType();
213 switch (ET->getClass()) {
216 static_cast<const RSExportPrimitiveType*>(ET);
228 mLLVMContext, ("*" + static_cast<const RSExportPointerType*>(ET)
237 static_cast<const RSExportMatrixType*>(ET)->getDim() - 2)));
442 const RSExportType *ET = I->getValue();
447 llvm::MDString::get(mLLVMContext, ET->getName().c_str()));
449 if (ET->getClass() == RSExportType::ExportClassRecord) {
451 static_cast<const RSExportRecordType*>(ET);
462 StructInfoMetadataName.append(ET->getName())
    [all...]
slang_rs_reflection_cpp.cpp 64 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) {
65 switch (ET->getClass()) {
68 static_cast<const RSExportPrimitiveType*>(ET))->c_name;
72 static_cast<const RSExportPointerType*>(ET)->getPointeeType();
81 static_cast<const RSExportVectorType*>(ET);
88 return GetMatrixTypeName(static_cast<const RSExportMatrixType*>(ET));
93 static_cast<const RSExportConstantArrayType*>(ET);
102 return ET->getElementName() + "." RS_TYPE_ITEM_CLASS_NAME;
473 const RSExportType *ET = EV->getType();
475 switch (ET->getClass())
    [all...]
slang_rs_export_type.cpp 701 RSExportType *ET = NULL;
709 ET = RSExportRecordType::Create(Context,
716 ET = RSExportMatrixType::Create(Context,
724 ET = RSExportMatrixType::Create(Context,
732 ET = RSExportMatrixType::Create(Context,
740 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
747 ET = RSExportPrimitiveType::Create(Context, T, TypeName);
751 ET = RSExportPointerType::Create(Context,
758 ET = RSExportVectorType::Create(Context,
763 ET = RSExportConstantArrayType::Create
    [all...]
slang_rs_reflection.cpp 162 static std::string GetTypeName(const RSExportType *ET, bool Brackets = true) {
163 switch (ET->getClass()) {
166 static_cast<const RSExportPrimitiveType*>(ET))->java_name;
170 static_cast<const RSExportPointerType*>(ET)->getPointeeType();
179 static_cast<const RSExportVectorType*>(ET);
186 return GetMatrixTypeName(static_cast<const RSExportMatrixType*>(ET));
190 static_cast<const RSExportConstantArrayType*>(ET);
198 return ET->getElementName() + "."RS_TYPE_ITEM_CLASS_NAME;
208 static const char *GetTypeNullValue(const RSExportType *ET) {
209 switch (ET->getClass())
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.h 39 #define ET U_EUROPEAN_NUMBER_TERMINATOR
  /external/clang/include/clang/Basic/
TargetBuiltins.h 99 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
108 EltType ET = getEltType();
109 return ET == Poly8 || ET == Poly16;
  /external/icu4c/test/cintltst/
cbiditst.h 39 #define ET U_EUROPEAN_NUMBER_TERMINATOR
  /external/clang/test/SemaCXX/
enum-scoped.cpp 208 enum class ET : T; // expected-note 2{{here}}
211 template<> enum class S<int>::ET : int {};
212 template<> enum class S<char>::ET : short {}; // expected-error {{different underlying type}}
216 template<typename T> enum class S<T>::ET : int {}; // expected-error {{different underlying type 'int' (was 'short')}}
221 // never instantiate the definitions of S<short>::ET nor S<short>::Eint.
  /external/clang/tools/libclang/
CXType.cpp 590 QualType ET = QualType();
597 ET = cast<ConstantArrayType> (TP)->getElementType();
600 ET = cast<IncompleteArrayType> (TP)->getElementType();
603 ET = cast<VariableArrayType> (TP)->getElementType();
606 ET = cast<DependentSizedArrayType> (TP)->getElementType();
609 ET = cast<VectorType> (TP)->getElementType();
612 ET = cast<ComplexType> (TP)->getElementType();
618 return MakeCXType(ET, GetTU(CT));
642 QualType ET = QualType();
649 ET = cast<ConstantArrayType> (TP)->getElementType()
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 128 llvm::Type *ET = PT->getElementType();
129 uint64_t ETSize = DL->getTypeAllocSize(ET);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 9 # For this purpose, the module-level "ET" symbol is temporarily
20 from xml.etree import ElementTree as ET
72 tree = ET.ElementTree(elem)
81 if elem.tag == ET.Comment:
115 if not ET.iselement(element):
142 >>> element = ET.Element("tag")
144 >>> tree = ET.ElementTree(element)
147 >>> element = ET.Element("t\xe4g", key="value")
148 >>> tree = ET.ElementTree(element)
151 >>> element = ET.Element("tag", key="value"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 9 # For this purpose, the module-level "ET" symbol is temporarily
20 from xml.etree import ElementTree as ET
72 tree = ET.ElementTree(elem)
81 if elem.tag == ET.Comment:
115 if not ET.iselement(element):
142 >>> element = ET.Element("tag")
144 >>> tree = ET.ElementTree(element)
147 >>> element = ET.Element("t\xe4g", key="value")
148 >>> tree = ET.ElementTree(element)
151 >>> element = ET.Element("tag", key="value"
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ubidiimp.h 41 ET= U_EUROPEAN_NUMBER_TERMINATOR,
91 #define MASK_ET_NSM_BN (DIRPROP_FLAG(ET)|DIRPROP_FLAG(NSM)|MASK_BN_EXPLICIT)
94 #define MASK_POSSIBLE_N (DIRPROP_FLAG(CS)|DIRPROP_FLAG(ES)|DIRPROP_FLAG(ET)|MASK_N)
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/icu4c/common/
ubidiimp.h 41 ET= U_EUROPEAN_NUMBER_TERMINATOR,
91 #define MASK_ET_NSM_BN (DIRPROP_FLAG(ET)|DIRPROP_FLAG(NSM)|MASK_BN_EXPLICIT)
94 #define MASK_POSSIBLE_N (DIRPROP_FLAG(CS)|DIRPROP_FLAG(ES)|DIRPROP_FLAG(ET)|MASK_N)
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 630 Type* ET = AT->getElementType();
631 printType(ET);
633 std::string elemName(getCppName(ET));
643 Type* ET = PT->getElementType();
644 printType(ET);
646 std::string elemName(getCppName(ET));
656 Type* ET = PT->getElementType();
657 printType(ET);
659 std::string elemName(getCppName(ET));
    [all...]

Completed in 949 milliseconds

1 2