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

1 2 3

  /frameworks/base/tools/aapt2/
public_attr_map.py 4 import xml.etree.ElementTree as ET
28 tree = ET.parse(f)
  /external/compiler-rt/lib/ubsan/
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);
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...]
  /external/chromium-trace/catapult/trace_processor/third_party/cloudstorage/
cloudstorage_api.py 32 import xml.etree.cElementTree as ET
332 root = ET.fromstring(content)
445 for _, e in ET.iterparse(result, events=('end',)):
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcCAPITest.cpp 66 auto *ET = CCtx->APIExecTest;
67 CCtx->M = ET->createTestModule(ET->TM->getTargetTriple());
  /frameworks/compile/slang/
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_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);
slang_rs_export_foreach.cpp 366 RSExportType *ET =
369 slangAssert(ET && "Failed to export a kernel");
371 slangAssert((ET->getClass() == RSExportType::ExportClassRecord) &&
374 FE->mParamPacketType = static_cast<RSExportRecordType *>(ET);
slang.cpp 486 RSExportType *ET = static_cast<RSExportType *>(RSE);
487 if (ET->getClass() != RSExportType::ExportClassRecord)
490 RSExportRecordType *ERT = static_cast<RSExportRecordType *>(ET);
slang_backend.cpp 526 const RSExportType *ET = EV->getType();
534 switch (ET->getClass()) {
537 static_cast<const RSExportPrimitiveType*>(ET);
549 mLLVMContext, ("*" + static_cast<const RSExportPointerType*>(ET)
565 static_cast<const RSExportMatrixType*>(ET)->getDim() - 2)));
836 const RSExportType *ET = I->getValue();
841 llvm::MDString::get(mLLVMContext, ET->getName().c_str()));
843 if (ET->getClass() == RSExportType::ExportClassRecord) {
845 static_cast<const RSExportRecordType*>(ET);
856 StructInfoMetadataName.append(ET->getName())
    [all...]
  /art/test/utils/python/
generate_java_main.py 39 import xml.etree.ElementTree as ET
285 root = ET.fromstring(xml)
  /external/fonttools/Lib/fontTools/ttLib/tables/
S_V_G_.py 6 import xml.etree.cElementTree as ET
8 import xml.etree.ElementTree as ET
56 XML = ET.XML
57 XMLElement = ET.Element
58 xmlToString = ET.tostring
  /external/icu/icu4c/source/test/cintltst/
cbiditst.h 39 #define ET U_EUROPEAN_NUMBER_TERMINATOR
  /external/v8/tools/gyp/pylib/gyp/generator/
eclipse.py 27 import xml.etree.cElementTree as ET
343 result = ET.Element('classpath')
356 entry_element = ET.SubElement(result, 'classpathentry')
368 ET.ElementTree(result).write(out_name)
  /system/extras/simpleperf/runtest/
runtest.py 31 import xml.etree.ElementTree as ET
200 tree = ET.parse(config_file)
  /cts/tools/cts-media/
get_achievable_rates.py 18 import xml.etree.ElementTree as ET
317 return self.importXml(ET.parse(path))
318 except ET.ParseError:
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestData.java 26 protected static final int ET = UCharacterDirection.EUROPEAN_NUMBER_TERMINATOR;
48 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON",
58 { R, EN, NSM, ET }, // 5
98 { RLO, RLO, AL, AL, WS, EN, ES, ON, WS, S, S, PDF, LRO, WS, AL, ET, RLE,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestData.java 25 protected static final int ET = UCharacterDirection.EUROPEAN_NUMBER_TERMINATOR;
47 "L", "R", "EN", "ES", "ET", "AN", "CS", "B", "S", "WS", "ON",
57 { R, EN, NSM, ET }, // 5
97 { RLO, RLO, AL, AL, WS, EN, ES, ON, WS, S, S, PDF, LRO, WS, AL, ET, RLE,
  /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))
  /external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/
bluetooth_SDP_ServiceSearchAttributeRequest.py 7 import xml.etree.ElementTree as ET
89 value = ET.Element('uint16', {'value': str(self.FAKE_ATTRIBUTE_VALUE)})
91 sdp_record = ET.Element('record')
93 service_id_attr = ET.Element(
96 ET.Element('uuid', {'value': '0x%X' % self.FAKE_SERVICE_CLASS_ID}))
100 attr = ET.Element('attribute', {'id': str(attr_id)})
106 attr = ET.Element('attribute', {'id': str(attr_id)})
111 ET.tostring(sdp_record))
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_modulegraph.py 11 import xml.etree.ElementTree as ET
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 606 QualType ET = QualType();
613 ET = cast<ConstantArrayType> (TP)->getElementType();
616 ET = cast<IncompleteArrayType> (TP)->getElementType();
619 ET = cast<VariableArrayType> (TP)->getElementType();
622 ET = cast<DependentSizedArrayType> (TP)->getElementType();
625 ET = cast<VectorType> (TP)->getElementType();
628 ET = cast<ComplexType> (TP)->getElementType();
634 return MakeCXType(ET, GetTU(CT));
658 QualType ET = QualType();
665 ET = cast<ConstantArrayType> (TP)->getElementType()
    [all...]
  /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.

Completed in 841 milliseconds

1 2 3