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

1 2 3 4

  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker_commons.hpp 61 template <typename ET, int n> struct pixelInfo_<Vec<ET, n> >
64 typedef ET sampleType;
102 template <typename ET> struct calcDist_<Vec<ET, 2> >
104 static inline int f(const Vec<ET, 2> a, const Vec<ET, 2> b)
110 template <typename ET> struct calcDist_<Vec<ET, 3> >
112 static inline int f(const Vec<ET, 3> a, const Vec<ET, 3> b
    [all...]
  /prebuilts/gdb/darwin-x86/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...]
test_xml_etree_c.py 42 pyET = test_xml_etree.ET
44 test_xml_etree.ET = cET
51 test_xml_etree.ET = pyET
  /prebuilts/gdb/linux-x86/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...]
test_xml_etree_c.py 42 pyET = test_xml_etree.ET
44 test_xml_etree.ET = cET
51 test_xml_etree.ET = pyET
  /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...]
test_xml_etree_c.py 42 pyET = test_xml_etree.ET
44 test_xml_etree.ET = cET
51 test_xml_etree.ET = pyET
  /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...]
test_xml_etree_c.py 42 pyET = test_xml_etree.ET
44 test_xml_etree.ET = cET
51 test_xml_etree.ET = pyET
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 25 bool ignoreReport(SourceLocation SLoc, ReportOptions Opts, ErrorType ET) {
35 return SLoc.isDisabled() || IsPCSuppressed(ET, Opts.pc, SLoc.getFilename());
48 ErrorType ET;
50 ET = ErrorType::NullPointerUse;
52 ET = ErrorType::MisalignedPointerUse;
54 ET = ErrorType::InsufficientObjectSize;
58 if (ignoreReport(Loc.getSourceLocation(), Opts, ET))
67 ScopedReport R(Opts, Loc, ET);
69 switch (ET) {
112 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflo
    [all...]
ubsan_handlers_cxx.cc 46 ErrorType ET = ErrorType::DynamicTypeMismatch;
47 if (ignoreReport(Loc, Opts, ET))
50 ScopedReport R(Opts, Loc, ET);
93 ErrorType ET = ErrorType::CFIBadType;
95 if (ignoreReport(Loc, Opts, ET))
98 ScopedReport R(Opts, Loc, ET);
  /frameworks/compile/slang/
slang_rs_export_var.cpp 31 const RSExportType *ET)
34 mET(ET),
42 switch (ET->getClass()) {
69 static_cast<const RSExportConstantArrayType*>(ET);
89 << mName << ET->getName();
slang_rs_reflection_cpp.cpp 61 static std::string GetTypeName(const RSExportType *ET, bool PreIdentifier = true) {
62 if((!PreIdentifier) && (ET->getClass() != RSExportType::ExportClassConstantArray)) {
66 switch (ET->getClass()) {
69 static_cast<const RSExportPrimitiveType *>(ET);
79 static_cast<const RSExportPointerType *>(ET)->getPointeeType();
87 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
94 return GetMatrixTypeName(static_cast<const RSExportMatrixType *>(ET));
98 static_cast<const RSExportConstantArrayType *>(ET);
111 return ET->getElementName() + "." + kRsTypeItemClassName;
515 const RSExportType *ET = EV->getType()
    [all...]
slang_rs_reflection_cpp.h 118 void genInitExportVariable(const RSExportType *ET, const std::string &VarName,
142 void genPackVarOfType(const RSExportType *ET, const char *VarName,
146 void genTypeCheck(const RSExportType *ET, const char *VarName);
149 void genTypeInstanceFromPointer(const RSExportType *ET);
150 void genTypeInstance(const RSExportType *ET);
slang_rs_reflection.cpp 88 void genAddElement(const RSExportType *ET, const std::string &VarName,
187 std::string GetTypeName(const RSExportType *ET, unsigned Style = TypeNameDefault) {
188 switch (ET->getClass()) {
191 RSExportPrimitiveType::getRSReflectionType(static_cast<const RSExportPrimitiveType *>(ET));
198 static_cast<const RSExportPointerType *>(ET)->getPointeeType();
206 const RSExportVectorType *EVT = static_cast<const RSExportVectorType *>(ET);
216 return GetMatrixTypeName(static_cast<const RSExportMatrixType *>(ET));
220 static_cast<const RSExportConstantArrayType *>(ET);
233 return ET->getElementName() + "." RS_TYPE_ITEM_CLASS_NAME;
235 return ET->getName()
    [all...]
slang_rs_export_element.cpp 77 RSExportType *ET = nullptr;
100 ET = EPT;
117 ET = EVT;
128 return ET;
slang_rs_export_func.cpp 107 RSExportType *ET =
110 if (ET == nullptr) {
117 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
120 F->mParamPacketType = static_cast<RSExportRecordType *>(ET);
slang_rs_export_var.h 50 const RSExportType *ET);
slang_rs_context.cpp 82 RSExportType *ET = RSExportType::CreateFromDecl(this, VD);
83 if (!ET)
86 RSExportVar *EV = new RSExportVar(this, VD, ET);
186 RSExportType *ET = nullptr;
211 ET = RSExportType::Create(this, T, NotLegacyKernelArgument);
214 return (ET != nullptr);
388 RSExportType *ET) {
392 ET);
  /external/clang/include/clang/Basic/
TargetBuiltins.h 123 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
132 EltType ET = getEltType();
133 return ET == Poly8 || ET == Poly16;
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 306 template <typename ET>
308 typedef typename object::ELFFile<ET>::Elf_Sym Elf_Sym;
309 typedef typename object::ELFFile<ET>::Elf_Shdr Elf_Shdr;
310 typedef typename object::ELFFile<ET>::Elf_Rel Elf_Rel;
311 typedef typename object::ELFFile<ET>::Elf_Word Elf_Word;
314 const object::ELFFile<ET> *ELF;
337 PrinterContext(StreamWriter &SW, const object::ELFFile<ET> *ELF,
344 template <typename ET>
345 const size_t PrinterContext<ET>::IndexTableEntrySize = 8;
347 template <typename ET>
    [all...]
  /external/clang/lib/AST/
TemplateBase.cpp 43 if (const EnumType *ET = T->getAs<EnumType>()) {
44 for (const EnumConstantDecl* ECD : ET->getDecl()->enumerators()) {
  /frameworks/base/tools/aapt2/
public_attr_map.py 4 import xml.etree.ElementTree as ET
28 tree = ET.parse(f)
  /external/icu/icu4c/source/test/cintltst/
cbiditst.h 39 #define ET U_EUROPEAN_NUMBER_TERMINATOR
  /external/autotest/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/
bluetooth_SDP_ServiceAttributeRequest.py 6 import xml.etree.ElementTree as ET
392 value = ET.Element('uint16', {'value': str(self.FAKE_ATTRIBUTE_VALUE)})
394 sdp_record = ET.Element('record')
396 service_id_attr = ET.Element(
399 ET.Element('uuid', {'value': '0x%X' % self.FAKE_SERVICE_CLASS_ID}))
403 attr = ET.Element('attribute', {'id': str(attr_id)})
409 attr = ET.Element('attribute', {'id': str(attr_id)})
414 ET.tostring(sdp_record))

Completed in 489 milliseconds

1 2 3 4