HomeSort by relevance Sort by last modified time
    Searched full:mapping (Results 1 - 25 of 11718) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/snakeyaml/src/test/resources/pyyaml/
spec-10-12.data 2 # mapping
spec-05-03.data 4 mapping:
spec-05-04.data 2 mapping: { sky: blue, sea: green }
spec-07-12a.data 2 # collection (mapping) node.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports2.py 6 MAPPING = {
16 mapping = MAPPING variable in class:FixImports2
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
mapping.s 2 .global mapping
3 mapping: label
5 bl mapping
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
mapping.s 3 .global mapping
4 mapping: label
6 bl mapping
  /external/llvm/test/YAMLParser/
spec-10-12.test 4 # mapping
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeDeserializer.h 33 Mapping(Reader) {}
37 TypeRecordMapping Mapping;
44 assert(!Mapping && "Already in a type mapping!");
45 Mapping = llvm::make_unique<MappingInfo>(Record.content());
46 return Mapping->Mapping.visitTypeBegin(Record);
50 assert(Mapping && "Not in a type mapping!");
51 auto EC = Mapping->Mapping.visitTypeEnd(Record)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
TypeDeserializer.h 33 Mapping(Reader) {}
37 TypeRecordMapping Mapping;
44 assert(!Mapping && "Already in a type mapping!");
45 Mapping = llvm::make_unique<MappingInfo>(Record.content());
46 return Mapping->Mapping.visitTypeBegin(Record);
50 assert(Mapping && "Not in a type mapping!");
51 auto EC = Mapping->Mapping.visitTypeEnd(Record)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
KeyEntryMap.h 35 /// EntryOrPair - A key may mapping to a signal entry or a pair of entries,
36 /// user is responsible for the type of Mapping.entry
42 struct Mapping {
47 typedef std::vector<Mapping> KeyEntryPool;
55 /// lookUp - look up the entry mapping to pKey
59 /// lookUpFirstEntry - look up the first entry mapping to pKey
63 /// lookUpSecondEntry - look up the second entry mapping to pKey
90 const_iterator mapping, mEnd = m_Pool.end(); local
91 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping)
102 iterator mapping, mEnd = m_Pool.end(); local
115 const_iterator mapping, mEnd = m_Pool.end(); local
128 const_iterator mapping, mEnd = m_Pool.end(); local
141 const_iterator mapping, mEnd = m_Pool.end(); local
154 const_iterator mapping, mEnd = m_Pool.end(); local
167 Mapping mapping; local
177 Mapping mapping; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
    [all...]
  /external/python/cpython2/Lib/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]
  /external/python/cpython3/Lib/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
charmap.py 1 """ Generic Python Character Mapping Codec.
25 def __init__(self, errors='strict', mapping=None):
27 self.mapping = mapping
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
35 self.mapping = mapping
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None)
    [all...]

Completed in 1894 milliseconds

1 2 3 4 5 6 7 8 91011>>