HomeSort by relevance Sort by last modified time
    Searched refs:Mapping (Results 1 - 25 of 43) 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_;
global_descriptors_posix.cc 31 for (Mapping::const_iterator
37 // In order to make unittests pass, we define a default mapping from keys to
43 for (Mapping::iterator
54 void GlobalDescriptors::Reset(const Mapping& mapping) {
55 descriptors_ = mapping;
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 62 enum Mapping {
72 unsigned Mapping : 3;
80 static DiagnosticMappingInfo Make(diag::Mapping Mapping, bool IsUser,
83 Result.Mapping = Mapping;
92 diag::Mapping getMapping() const { return diag::Mapping(Mapping); }
93 void setMapping(diag::Mapping Value) { Mapping = Value;
    [all...]
Diagnostic.h 134 /// \brief The level of the diagnostic, after it has been through mapping.
193 /// \brief Mapping information for diagnostics.
195 /// Mapping info is packed into four bits per diagnostic. The low three
196 /// bits are the mapping (an instance of diag::Mapping), or zero if unset.
197 /// The high bit is set when the mapping was established as a user mapping.
524 void setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
528 /// have the specified mapping.
535 bool setDiagnosticGroupMapping(StringRef Group, diag::Mapping Map
    [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/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...]
  /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/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...]
importer.cc 342 mappings_.push_back(Mapping(virtual_path, CanonicalizePath(disk_path)));
354 // Apply the mapping in reverse.
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 107 /// Instances of this class can perform bidirectional mapping from random
119 struct Mapping {
125 NamedImmMapper(const Mapping (&Pairs)[N], uint32_t TooBigImm)
136 const Mapping *Pairs;
159 const static Mapping ATPairs[];
183 const static Mapping DBarrierPairs[];
203 const static Mapping DCPairs[];
220 const static Mapping ICPairs[];
236 const static Mapping ISBPairs[];
266 const static Mapping PRFMPairs[]
    [all...]
AArch64BaseInfo.cpp 50 const NamedImmMapper::Mapping A64AT::ATMapper::ATPairs[] = {
68 const NamedImmMapper::Mapping A64DB::DBarrierMapper::DBarrierPairs[] = {
86 const NamedImmMapper::Mapping A64DC::DCMapper::DCPairs[] = {
100 const NamedImmMapper::Mapping A64IC::ICMapper::ICPairs[] = {
109 const NamedImmMapper::Mapping A64ISB::ISBMapper::ISBPairs[] = {
116 const NamedImmMapper::Mapping A64PRFM::PRFMMapper::PRFMPairs[] = {
140 const NamedImmMapper::Mapping A64PState::PStateMapper::PStatePairs[] = {
149 const NamedImmMapper::Mapping A64SysReg::MRSMapper::MRSPairs[] = {
205 const NamedImmMapper::Mapping A64SysReg::MSRMapper::MSRPairs[] = {
217 const NamedImmMapper::Mapping A64SysReg::SysRegMapper::SysRegPairs[] =
    [all...]
  /external/clang/lib/Frontend/
Warnings.cpp 113 diag::Mapping Mapping = isPositive ? diag::MAP_WARNING : diag::MAP_IGNORE;
200 Diags.setDiagnosticGroupMapping(Opt, Mapping);
PrintPreprocessedOutput.cpp 139 diag::Mapping Map, StringRef Str);
411 diag::Mapping Map, StringRef Str) {
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 133 // These flags allow to change the shadow mapping.
134 // The shadow mapping looks like
136 static cl::opt<int> ClMappingScale("asan-mapping-scale",
137 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
138 static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log",
139 cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1));
140 static cl::opt<bool> ClShort64BitOffset("asan-short-64bit-mapping-offset",
141 cl::desc("Use short immediate constant as the mapping offset for 64bit"),
196 /// This struct defines the shadow mapping using the rule:
212 ShadowMapping Mapping;
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 101 setError(CurrentNode, "not a mapping");
105 HNode *Value = MN->Mapping[Key];
128 for (MapHNode::NameToNode::iterator i = MN->Mapping.begin(),
129 End = MN->Mapping.end(); i != End; ++i) {
313 mapHNode->Mapping[KeyStr] = ValueHNode;
338 for (MapHNode::NameToNode::iterator i = Mapping.begin(), End = Mapping.end();
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_shadow_test.cc 49 TEST(Shadow, Mapping) {
  /external/v8/src/
isolate.h 863 unibrow::Mapping<unibrow::Ecma262UnCanonicalize>* jsregexp_uncanonicalize() {
867 unibrow::Mapping<unibrow::CanonicalizationRange>* jsregexp_canonrange() {
903 unibrow::Mapping<unibrow::Ecma262Canonicalize>*
910 unibrow::Mapping<unibrow::Ecma262Canonicalize>*
    [all...]
unicode-inl.h 48 template <class T, int s> int Mapping<T, s>::get(uchar c, uchar n,
63 template <class T, int s> int Mapping<T, s>::CalculateValue(uchar c, uchar n,
unicode.h 71 // that either have no mapping or map to a single character independent
75 class Mapping {
77 inline Mapping() { }
runtime.h 543 unibrow::Mapping<unibrow::ToUppercase, 128>* to_upper_mapping() {
546 unibrow::Mapping<unibrow::ToLowercase, 128>* to_lower_mapping() {
566 unibrow::Mapping<unibrow::ToUppercase, 128> to_upper_mapping_;
567 unibrow::Mapping<unibrow::ToLowercase, 128> to_lower_mapping_;
regexp-macro-assembler.cc 221 unibrow::Mapping<unibrow::Ecma262Canonicalize>* canonicalize =
  /external/clang/include/clang/Lex/
PPCallbacks.h 182 diag::Mapping mapping, StringRef Str) {
351 diag::Mapping mapping, StringRef Str) {
352 First->PragmaDiagnostic(Loc, Namespace, mapping, Str);
353 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri03.js 78 Check that Node.baseURI is null for a DocumentType as defined in the Infoset Mapping (Appendix C).
84 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/infoset-mapping#Infoset2DocumentType
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 39 unsigned Mapping : 3;
163 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
167 "Unexpected mapping with no-Werror bit!");
173 "Unexpected mapping with show-in-system-header bit!");
417 // Get the mapping information, or compute it lazily.
Diagnostic.cpp 165 void DiagnosticsEngine::setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
177 // Don't allow a mapping to a warning override an error/fatal mapping.
234 StringRef Group, diag::Mapping Map, SourceLocation Loc)
241 // Set the mapping.
255 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
273 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
281 // Perform the mapping change.
303 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
320 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, an
    [all...]

Completed in 743 milliseconds

1 2