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

1 2

  /external/chromium/base/
global_descriptors_posix.h 40 typedef std::vector<std::pair<Key, int> > Mapping;
58 void Reset(const Mapping& mapping);
65 Mapping descriptors_;
  /external/chromium_org/base/posix/
global_descriptors.h 40 typedef std::vector<KeyFDPair> Mapping;
58 void Reset(const Mapping& mapping);
65 Mapping descriptors_;
  /external/clang/lib/Frontend/
Warnings.cpp 112 diag::Mapping Mapping = isPositive ? diag::MAP_WARNING : diag::MAP_IGNORE;
199 Diags.setDiagnosticGroupMapping(Opt, Mapping);
  /frameworks/compile/mclinker/include/mcld/Target/
SymbolEntryMap.h 31 struct Mapping {
36 typedef std::vector<Mapping> SymbolEntryPool;
67 const_iterator mapping, mEnd = m_Pool.end(); local
68 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping) {
69 if (mapping->symbol == &pSymbol) {
70 return mapping->entry;
81 iterator mapping, mEnd = m_Pool.end(); local
82 for (mapping = m_Pool.begin(); mapping != mEnd; ++mapping)
95 Mapping mapping; local
    [all...]
  /external/chromium_org/third_party/protobuf/src/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/llvm/unittests/Support/
IntegersSubsetTest.cpp 33 typedef IntegersSubsetMapping<unsigned,Subset,Int> Mapping;
116 Mapping::Cases TheCases;
122 Mapping TheMapping;
133 Mapping::Cases::iterator CaseIt = TheCases.begin();
142 Mapping ImproperMapping;
146 Mapping::RangeIterator ErrItem;
150 Mapping ProperMapping;
158 Mapping ToBeOptimized;
173 Mapping::Cases::iterator CaseIt = TheCases.begin();
195 Mapping::RangesCollection Ranges
    [all...]
  /external/protobuf/src/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, const string& disk_path)
286 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...]
test_collections.py 15 from collections import Mapping, MutableMapping
557 self.assertIsInstance(sample(), Mapping)
558 self.assertTrue(issubclass(sample, Mapping))
559 self.validate_abstract_methods(Mapping, '__contains__', '__iter__', '__len__',
561 class MyMapping(collections.Mapping):
606 self.assertIsInstance(c, Mapping)
608 self.assertTrue(issubclass(Counter, Mapping))
    [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...]
test_collections.py 15 from collections import Mapping, MutableMapping
557 self.assertIsInstance(sample(), Mapping)
558 self.assertTrue(issubclass(sample, Mapping))
559 self.validate_abstract_methods(Mapping, '__contains__', '__iter__', '__len__',
561 class MyMapping(collections.Mapping):
606 self.assertIsInstance(c, Mapping)
608 self.assertTrue(issubclass(Counter, Mapping))
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source.py 8 from collections import defaultdict, Mapping
50 elif isinstance(node, Mapping):
84 elif isinstance(node, Mapping):
  /external/chromium_org/third_party/jinja2/
runtime.py 117 # create the initial mapping of blocks. Whenever template inheritance
118 # takes place the runtime will update this mapping with the new blocks
232 # register the context as mapping if possible
234 from collections import Mapping
235 Mapping.register(Context)
  /external/chromium_org/v8/src/
effects.h 199 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {}
218 typedef ZoneSplayTree<SplayTreeConfig> Mapping;
219 typedef typename Mapping::Locator Locator;
240 Mapping* map_;
unicode.h 71 // that either have no mapping or map to a single character independent
75 class Mapping {
77 inline Mapping() { }
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 64 enum Mapping {
74 unsigned Mapping : 3;
82 static DiagnosticMappingInfo Make(diag::Mapping Mapping, bool IsUser,
85 Result.Mapping = Mapping;
94 diag::Mapping getMapping() const { return diag::Mapping(Mapping); }
95 void setMapping(diag::Mapping Value) { Mapping = Value;
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 42 std::map<const Record*, std::vector<Record*> > Mapping;
51 Mapping[SubGroups[j]].push_back(DiagGroups[i]);
56 return Mapping[Group];
163 /// \brief Invert the 1-[0/1] mapping of diags to group into a one to many
164 /// mapping of groups to diags in the group.
598 // Compute a mapping from a DiagGroup to all of its parents.
  /external/libvorbis/doc/
01-introduction.tex 166 type 0, the MDCT, in Vorbis I) and a mapping number. The mapping
167 number specifies which mapping configuration instance to use for
171 \subsubsection{Mapping}
173 A mapping contains a channel coupling description and a list of
176 components; the submap list is internal and specific to a mapping.
179 floor and residue vectors within a mapping. The submap functions as a
421 the vectors specified in the current mapping configuration. The
  /external/v8/src/
unicode.h 71 // that either have no mapping or map to a single character independent
75 class Mapping {
77 inline Mapping() { }
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 17 "Mapping", "MutableMapping",
346 class Mapping(Sized, Iterable, Container):
348 """A Mapping is a generic container for associating key/value
405 if not isinstance(other, Mapping):
414 def __init__(self, mapping):
415 self._mapping = mapping
471 class MutableMapping(Mapping):
527 ''' D.update([E, ]**F) -> None. Update D from mapping/iterable E and F.
540 if isinstance(other, Mapping):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 17 "Mapping", "MutableMapping",
346 class Mapping(Sized, Iterable, Container):
348 """A Mapping is a generic container for associating key/value
405 if not isinstance(other, Mapping):
414 def __init__(self, mapping):
415 self._mapping = mapping
471 class MutableMapping(Mapping):
527 ''' D.update([E, ]**F) -> None. Update D from mapping/iterable E and F.
540 if isinstance(other, Mapping):
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 40 unsigned Mapping : 3;
160 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
164 "Unexpected mapping with no-Werror bit!");
170 "Unexpected mapping with show-in-system-header bit!");
414 // Get the mapping information, or compute it lazily.
  /external/llvm/include/llvm/Support/
YAMLTraits.h 34 /// to/from a YAML mapping. For example:
37 /// static void mapping(IO &io, MyStruct &s) {
46 // static void mapping(IO &io, T &fields);
51 /// to/from a YAML scalar where there is a one-to-one mapping between
220 static char test(SameType<Signature_mapping, &U::mapping>*);
488 MappingTraits<T>::mapping(io, Val);
602 // Utility for use within MappingTraits<>::mapping() method
636 // Utility for use within MappingTraits<>::mapping() method
767 NameToNode Mapping;
896 /// Use these types instead of uintXX_t in any mapping to hav
    [all...]
FileSystem.h 701 /// Platform specific mapping state.
704 void *Mapping;
768 /// @param file_offset Byte offset in file where mapping should begin.
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 55 * The input manager has two concepts, a {@link Trigger} and a mapping.
57 * or a mouse axis. A mapping represents a link onto one or several triggers,
59 * mapping will be invoked. Any listeners registered to receive an event
60 * from the mapping will have an event raised.
101 private final IntMap<ArrayList<Mapping>> bindings = new IntMap<ArrayList<Mapping>>();
102 private final HashMap<String, Mapping> mappings = new HashMap<String, Mapping>();
109 private static class Mapping {
115 public Mapping(String name) {
162 Mapping mapping = maps.get(i); local
237 Mapping mapping = maps.get(i); local
268 Mapping mapping = maps.get(i); local
482 Mapping mapping = mappings.get(mappingName); local
524 Mapping mapping = mappings.get(mappingName); local
571 Mapping mapping = mappings.remove(mappingName); local
596 Mapping mapping = mappings.get(mappingName); local
870 Mapping mapping = maps.get(i); local
    [all...]

Completed in 663 milliseconds

1 2