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

1 2 3 4 5 6 7 8 9

  /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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19911.go 14 type ET struct{}
16 func (*ET) Error() string { return "err" }
19 check("false", fmt.Sprintf("(*ET)(nil) == error(nil): %v", (*ET)(nil) == error(nil)))
20 check("true", fmt.Sprintf("(*ET)(nil) != error(nil): %v", (*ET)(nil) != error(nil)))
22 nilET := (*ET)(nil)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19911.go 14 type ET struct{}
16 func (*ET) Error() string { return "err" }
19 check("false", fmt.Sprintf("(*ET)(nil) == error(nil): %v", (*ET)(nil) == error(nil)))
20 check("true", fmt.Sprintf("(*ET)(nil) != error(nil): %v", (*ET)(nil) != error(nil)))
22 nilET := (*ET)(nil)
  /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...]
  /external/python/cpython3/Lib/test/
test_xml_etree.py 5 # For this purpose, the module-level "ET" symbol is temporarily
25 # ET is pyET in test_xml_etree and is the C accelerated version in
28 ET = None
103 support.check__all__(self, ET, names, blacklist=("HTML_EMPTY",))
111 tree = ET.ElementTree(elem)
126 cls.modules = {pyET, ET}
136 # pyET must be second, because pyET may be (equal to) ET.
137 human = dict([(ET, "cET"), (pyET, "pyET")])
147 self.assertIsInstance(alice, (ET.Element, pyET.Element))
148 self.assertIsInstance(bob, (ET.Element, pyET.Element)
    [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
  /test/vts-testcase/hal/script/configure/
test_case_creator.py 28 from xml.etree import cElementTree as ET
236 configuration = ET.Element('configuration', {
241 ET.SubElement(
251 file_pusher = ET.SubElement(configuration, 'target_preparer',
255 test = ET.SubElement(configuration, 'test',
275 adapter_preparer = ET.SubElement(configuration, 'target_preparer',
279 ET.SubElement(
287 ET.SubElement(adapter_preparer, 'option', {
292 test = ET.SubElement(configuration, 'test',
294 ET.SubElement(test, 'option',
    [all...]
  /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);
  /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);
  /development/gsi/gsi_util/gsi_util/dumpers/
xml_dumper.py 18 import xml.etree.ElementTree as ET
28 self._tree = ET.parse(filename)
  /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...]

Completed in 533 milliseconds

1 2 3 4 5 6 7 8 9