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

1 2 3

  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/trie/
_base.py 3 from collections import Mapping
6 class Trie(Mapping):
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 53 SlotMapping Mapping;
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
59 ASSERT_EQ(Mapping.GlobalValues.size(), 1u);
60 EXPECT_TRUE(isa<GlobalVariable>(Mapping.GlobalValues[0]));
62 EXPECT_EQ(Mapping.MetadataNodes.size(), 2u);
63 EXPECT_EQ(Mapping.MetadataNodes.count(0), 1u);
64 EXPECT_EQ(Mapping.MetadataNodes.count(42), 1u);
65 EXPECT_EQ(Mapping.MetadataNodes.count(1), 0u);
136 SlotMapping Mapping;
137 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
    [all...]
  /system/core/libmemunreachable/
ProcessMappings.h 22 struct Mapping {
34 bool ProcessMappings(pid_t pid, allocator::vector<Mapping>& mappings);
  /external/clang/lib/Basic/
Warnings.cpp 107 diag::Severity Mapping =
194 Diags.setSeverityForGroup(Flavor, Opt, Mapping);
  /external/libchrome/base/posix/
global_descriptors.h 51 typedef std::vector<Descriptor> Mapping;
80 void Reset(const Mapping& mapping);
87 Mapping descriptors_;
  /external/compiler-rt/lib/dfsan/
dfsan_platform.h 21 struct Mapping {
28 struct Mapping {
62 template<typename Mapping, int Type>
65 case MAPPING_SHADOW_ADDR: return Mapping::kShadowAddr;
66 case MAPPING_UNION_TABLE_ADDR: return Mapping::kUnionTableAddr;
67 case MAPPING_APP_ADDR: return Mapping::kAppAddr;
68 case MAPPING_SHADOW_MASK: return Mapping::kShadowMask;
81 return MappingImpl<Mapping, Type>();
  /external/autotest/client/site_tests/security_ASLR/
security_ASLR.py 109 class Mapping(object):
110 """Holds information about a process's address mapping.
112 Stores information about one memory mapping for a process.
129 return "<mapping %s %s>" % (self._name, self._start)
211 for i, mapping in enumerate(mappings[1:]):
213 for key in mapping.iterkeys():
222 mapping[key].get_start())
251 A dict mapping names to mapping objects (see above for mapping
    [all...]
  /external/google-breakpad/src/common/windows/
omap_internal.h 113 typedef std::vector<MappedRange> Mapping;
115 // Used as a secondary search structure accompanying a Mapping.
126 // This is a description of the mapping between original and transformed
128 Mapping mapping; member in struct:google_breakpad::ImageMap
129 // For all interval endpoints in |mapping| this stores the minimum index of
130 // an interval in |mapping| that contains the endpoint. Useful for doing
  /external/llvm/tools/dsymutil/
DebugMap.cpp 78 auto Mapping = AddressToMapping.find(Address);
79 if (Mapping == AddressToMapping.end())
81 return Mapping->getSecond();
137 mapping(IO &io, std::pair<std::string, DebugMapObject::SymbolMapping> &s) { function in class:llvm::yaml::MappingTraits
144 void MappingTraits<dsymutil::DebugMapObject>::mapping( function in class:llvm::yaml::MappingTraits
179 void MappingTraits<dsymutil::DebugMap>::mapping(IO &io, function in class:llvm::yaml::MappingTraits
188 void MappingTraits<std::unique_ptr<dsymutil::DebugMap>>::mapping( function in class:llvm::yaml::MappingTraits
239 auto &Mapping = Entry.second;
240 uint64_t ObjAddress = Mapping.ObjectAddress;
244 Res.addSymbol(Entry.first, ObjAddress, Mapping.BinaryAddress, Mapping.Size)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
importer.h 255 // Given a path to a file on disk, find a virtual path mapping to that
256 // file. The first mapping created with MapPath() whose disk_path contains
259 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
261 // * SHADOWED: A mapping was found, but using Open() to open this virtual
263 // other mapping with a higher precedence also matches this virtual path
268 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
273 // * NO_MAPPING: Indicates that no mapping was found which contains this
291 struct Mapping {
295 inline Mapping(const string& virtual_path_param,
299 vector<Mapping> mappings_
    [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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pep292.py 12 class Mapping:
92 m = Mapping()
108 m = Mapping()
141 s = Template('the mapping is $mapping')
142 eq(s.substitute(dict(foo='none'), mapping='bozo'),
143 'the mapping is bozo')
144 eq(s.substitute(dict(mapping='one'), mapping='two'),
145 'the mapping is two'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pep292.py 12 class Mapping:
92 m = Mapping()
108 m = Mapping()
141 s = Template('the mapping is $mapping')
142 eq(s.substitute(dict(foo='none'), mapping='bozo'),
143 'the mapping is bozo')
144 eq(s.substitute(dict(mapping='one'), mapping='two'),
145 'the mapping is two'
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/compiler/
importer.h 245 // Given a path to a file on disk, find a virtual path mapping to that
246 // file. The first mapping created with MapPath() whose disk_path contains
249 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
251 // * SHADOWED: A mapping was found, but using Open() to open this virtual
253 // other mapping with a higher precedence also matches this virtual path
258 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
263 // * NO_MAPPING: Indicates that no mapping was found which contains this
279 struct Mapping {
283 inline Mapping(const string& virtual_path_param,
287 vector<Mapping> mappings_
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/compiler/
importer.h 245 // Given a path to a file on disk, find a virtual path mapping to that
246 // file. The first mapping created with MapPath() whose disk_path contains
249 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
251 // * SHADOWED: A mapping was found, but using Open() to open this virtual
253 // other mapping with a higher precedence also matches this virtual path
258 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
263 // * NO_MAPPING: Indicates that no mapping was found which contains this
279 struct Mapping {
283 inline Mapping(const string& virtual_path_param,
287 vector<Mapping> mappings_
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/compiler/
importer.h 245 // Given a path to a file on disk, find a virtual path mapping to that
246 // file. The first mapping created with MapPath() whose disk_path contains
249 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
251 // * SHADOWED: A mapping was found, but using Open() to open this virtual
253 // other mapping with a higher precedence also matches this virtual path
258 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
263 // * NO_MAPPING: Indicates that no mapping was found which contains this
279 struct Mapping {
283 inline Mapping(const string& virtual_path_param,
287 vector<Mapping> mappings_
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep292.py 12 class Mapping:
92 m = Mapping()
108 m = Mapping()
141 s = Template('the mapping is $mapping')
142 eq(s.substitute(dict(foo='none'), mapping='bozo'),
143 'the mapping is bozo')
144 eq(s.substitute(dict(mapping='one'), mapping='two'),
145 'the mapping is two'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep292.py 12 class Mapping:
92 m = Mapping()
108 m = Mapping()
141 s = Template('the mapping is $mapping')
142 eq(s.substitute(dict(foo='none'), mapping='bozo'),
143 'the mapping is bozo')
144 eq(s.substitute(dict(mapping='one'), mapping='two'),
145 'the mapping is two'
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/
importer.h 264 // Given a path to a file on disk, find a virtual path mapping to that
265 // file. The first mapping created with MapPath() whose disk_path contains
268 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
270 // * SHADOWED: A mapping was found, but using Open() to open this virtual
272 // other mapping with a higher precedence also matches this virtual path
277 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
282 // * NO_MAPPING: Indicates that no mapping was found which contains this
300 struct Mapping {
304 inline Mapping(const string& virtual_path_param,
308 vector<Mapping> mappings_
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/
importer.h 245 // Given a path to a file on disk, find a virtual path mapping to that
246 // file. The first mapping created with MapPath() whose disk_path contains
249 // * SUCCESS: The mapping was found. *virtual_file is filled in so that
251 // * SHADOWED: A mapping was found, but using Open() to open this virtual
253 // other mapping with a higher precedence also matches this virtual path
258 // * CANNOT_OPEN: The mapping was found and was not shadowed, but the
263 // * NO_MAPPING: Indicates that no mapping was found which contains this
279 struct Mapping {
283 inline Mapping(const string& virtual_path_param,
287 vector<Mapping> mappings_
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
types.py 24 Some utility functions to deal with mapping Amazon DynamoDB types to
30 from collections import Mapping
127 elif isinstance(val, Mapping):
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 234 ErrorOr<std::unique_ptr<MemoryBuffer>> Mapping =
237 if (!Mapping)
239 Mapping.getError().message());
241 if (!parse(*Mapping, DL))
  /external/v8/src/
effects.h 174 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {}
192 typedef ZoneSplayTree<SplayTreeConfig> Mapping;
193 typedef typename Mapping::Locator Locator;
214 Mapping* map_;
unicode.h 60 // that either have no mapping or map to a single character independent
64 class Mapping {
66 inline Mapping() { }
  /external/compiler-rt/lib/tsan/rtl/
tsan_platform.h 44 struct Mapping {
76 struct Mapping {
97 // mapping to use. Although slower, it make a same instrumented binary run on
174 // Indicates that mapping defines a mid range memory segment.
180 // mapping to use. Although slower, it make a same instrumented binary run on
266 struct Mapping {
291 struct Mapping {
334 template<typename Mapping, int Type>
338 case MAPPING_LO_APP_BEG: return Mapping::kLoAppMemBeg;
339 case MAPPING_LO_APP_END: return Mapping::kLoAppMemEnd
    [all...]

Completed in 504 milliseconds

1 2 3