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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/framework/base/activitymanager/util/src/android/server/am/
ProtoExtractors.java 34 public static Configuration extract(ConfigurationProto proto) { method in class:ProtoExtractors
39 config.windowConfiguration.setTo(extract(proto.windowConfiguration)); method
50 public static WindowConfiguration extract(WindowConfigurationProto proto) { method in class:ProtoExtractors
55 config.setAppBounds(extract(proto.appBounds)); method
61 public static Rect extract(RectProto proto) { method in class:ProtoExtractors
  /cts/tests/tests/keystore/src/android/server/am/
ProtoExtractors.java 34 public static Configuration extract(ConfigurationProto proto) { method in class:ProtoExtractors
39 config.windowConfiguration.setTo(extract(proto.windowConfiguration)); method
50 public static WindowConfiguration extract(WindowConfigurationProto proto) { method in class:ProtoExtractors
55 config.setAppBounds(extract(proto.appBounds)); method
61 public static Rect extract(RectProto proto) { method in class:ProtoExtractors
  /external/robolectric-shadows/processor/src/test/resources/mock-source/org/robolectric/shadow/api/
Shadow.java 5 public static <T> T extract(Object source) { method in class:Shadow
  /external/scapy/scapy/layers/tls/crypto/
hkdf.py 25 def extract(self, salt, ikm): member in class:TLS13_HKDF
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /external/icu/icu4c/source/common/unicode/
urep.h 127 void (*extract)(UReplaceable* rep, member in struct:UReplaceableCallbacks
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugArangeSet.cpp 24 DWARFDebugArangeSet::extract(DataExtractor data, uint32_t *offset_ptr) { function in class:DWARFDebugArangeSet
DWARFDebugRangeList.cpp 22 bool DWARFDebugRangeList::extract(DataExtractor data, uint32_t *offset_ptr) { function in class:DWARFDebugRangeList
DWARFAbbreviationDeclaration.cpp 29 DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) { function in class:DWARFAbbreviationDeclaration
DWARFDebugAbbrev.cpp 25 bool DWARFAbbreviationDeclarationSet::extract(DataExtractor Data, function in class:DWARFAbbreviationDeclarationSet
32 while (AbbrDecl.extract(Data, OffsetPtr)) {
76 void DWARFDebugAbbrev::extract(DataExtractor Data) { function in class:DWARFDebugAbbrev
83 if (!AbbrDecls.extract(Data, &Offset))
  /external/python/cpython2/Lib/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/internal/
IShadow.java 7 <T> T extract(Object instance); method in interface:IShadow
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 18 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr){ function in class:DWARFAbbreviationDeclaration
19 return extract(data, offset_ptr, data.getULEB128(offset_ptr));
23 DWARFAbbreviationDeclaration::extract(DataExtractor data, uint32_t* offset_ptr, function in class:DWARFAbbreviationDeclaration
DWARFDebugAbbrev.cpp 15 bool DWARFAbbreviationDeclarationSet::extract(DataExtractor data, function in class:DWARFAbbreviationDeclarationSet
22 while (abbrevDeclaration.extract(data, offset_ptr)) {
70 if (abbrevDeclSet.extract(data, &offset))
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /prebuilts/gdb/linux-x86/lib/python2.7/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fpformat.py 35 def extract(s): function
96 sign, intpart, fraction, expo = extract(x)
111 sign, intpart, fraction, expo = extract(x)
  /system/bt/packet/base/
iterator.h 61 FixedWidthIntegerType extract() { function in class:bluetooth::Iterator
63 "Iterator::extract requires an integral type.");
74 uint8_t extract8() { return extract<uint8_t>(); }
75 uint16_t extract16() { return extract<uint16_t>(); }
76 uint32_t extract32() { return extract<uint32_t>(); }
77 uint64_t extract64() { return extract<uint64_t>(); }
  /system/bt/vendor_libs/test_vendor_lib/include/
hci_packet.h 50 FixedWidthIntegerType extract() { function in class:test_vendor_lib::Iterator
52 "Iterator::extract requires an integral type.");
  /external/libcxx/utils/libcxx/sym_check/
extract.py 11 extract - A set of function that extract symbol lists from shared libraries.
24 NMExtractor - Extract symbol lists from libraries using nm.
36 Initialize the nm executable and flags that will be used to extract
46 def extract(self, lib): member in class:NMExtractor
48 Extract symbols from a library and return the results as a dict of
110 ReadElfExtractor - Extract symbol lists from libraries using readelf.
123 extract symbols from shared libraries.
132 def extract(self, lib): member in class:ReadElfExtractor
134 Extract symbols from a library and return the results as a dict o
    [all...]
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 56 void LiveIntervalUnion::extract(LiveInterval &VirtReg, const LiveRange &Range) { function in class:LiveIntervalUnion
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ShadowImpl.java 16 public <T> T extract(Object instance) { method in class:ShadowImpl
  /external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/shadow/api/
Shadow.java 24 public static <T> T extract(Object instance) { method in class:Shadow
25 return SHADOW_IMPL.extract(instance);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalUnion.cpp 55 void LiveIntervalUnion::extract(LiveInterval &VirtReg) { function in class:LiveIntervalUnion

Completed in 1845 milliseconds

1 2 3 4 5 6 7 8 91011>>