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

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
TimeEfi.c 24 @param[in] ET Pointer to the EFI_TIME structure to convert.
29 IN EFI_TIME *ET,
34 BT->tm_year = ET->Year - TM_YEAR_BASE;
35 BT->tm_mon = ET->Month - 1; // BD time is zero based, EFI is 1 based
36 BT->tm_mday = ET->Day;
37 BT->tm_hour = ET->Hour;
38 BT->tm_min = ET->Minute;
39 BT->tm_sec = ET->Second;
41 BT->tm_zoneoff = ET->TimeZone;
42 BT->tm_daylight = ET->Daylight;
    [all...]
  /external/python/cpython2/Lib/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/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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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 47 ErrorType ET = ErrorType::DynamicTypeMismatch;
48 if (ignoreReport(Loc, Opts, ET))
51 ScopedReport R(Opts, Loc, ET);
101 ErrorType ET = ErrorType::CFIBadType;
103 if (ignoreReport(Loc, Opts, ET))
106 ScopedReport R(Opts, Loc, ET);
  /test/vts-testcase/hal/script/configure/
test_case_creator.py 28 from xml.etree import cElementTree as ET
217 configuration = ET.Element('configuration', {
220 file_pusher = ET.SubElement(configuration, 'target_preparer',
224 python_preparer = ET.SubElement(configuration, 'target_preparer',
226 test = ET.SubElement(configuration, 'test', {'class': VTS_TEST_CLASS})
243 ET.SubElement(file_pusher, 'option',
249 ET.SubElement(file_pusher, 'option', {
254 ET.SubElement(file_pusher, 'option', {
259 ET.SubElement(file_pusher, 'option', {
265 ET.SubElement(file_pusher, 'option',
    [all...]
  /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;
517 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 93 void genAddElement(const RSExportType *ET, const std::string &VarName,
193 std::string GetReduceResultTypeName(const RSExportType *ET) {
194 switch (ET->getClass()) {
196 const RSExportConstantArrayType *const CAT = static_cast<const RSExportConstantArrayType *>(ET);
206 ET,
211 RSReflectionJava::GetTypeName(ET, RSReflectionJava::TypeNameDefault | RSReflectionJava::TypeNameC);
221 static const char *GetTypeNullValue(const RSExportType *ET) {
222 switch (ET->getClass()) {
225 static_cast<const RSExportPrimitiveType *>(ET);
247 static std::string GetBuiltinElementConstruct(const RSExportType *ET) {
    [all...]
  /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;
  /device/google/wahoo/lisa/targetdev/
powerhint.py 1 import xml.etree.ElementTree as ET
21 tree = ET.parse(tmp.name)
74 tree = ET.parse(tmp.name)
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 307 template <typename ET>
309 typedef typename object::ELFFile<ET>::Elf_Sym Elf_Sym;
310 typedef typename object::ELFFile<ET>::Elf_Shdr Elf_Shdr;
311 typedef typename object::ELFFile<ET>::Elf_Rel Elf_Rel;
312 typedef typename object::ELFFile<ET>::Elf_Word Elf_Word;
315 const object::ELFFile<ET> *ELF;
338 PrinterContext(ScopedPrinter &SW, const object::ELFFile<ET> *ELF,
345 template <typename ET>
346 const size_t PrinterContext<ET>::IndexTableEntrySize = 8;
348 template <typename ET>
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/bin/
Gpt.com 2 ???3??|??8?+?:?0??????PW???3?????|??.????3?????P??$?P3????f?f???f&?=EFI ??f&?}PART??f&?}??f&?ET.???f??f?? f???fRf&?MHf&?]Lf?f?
  /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/tools/
public_attr_map.py 4 import xml.etree.ElementTree as ET
28 tree = ET.parse(f)

Completed in 1498 milliseconds

1 2 3 4 5 6 7