HomeSort by relevance Sort by last modified time
    Searched refs:Mapping (Results 1 - 25 of 35) 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 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...]
Diagnostic.h 131 /// Level - The level of the diagnostic, after it has been through mapping.
190 /// \brief Mapping information for diagnostics. Mapping info is
191 /// packed into four bits per diagnostic. The low three bits are the mapping
192 /// (an instance of diag::Mapping), or zero if unset. The high bit is set
193 /// when the mapping was established as a user mapping. If the high bit is
476 void setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
480 /// "unknown-pragmas" to have the specified mapping. This returns true and
485 bool setDiagnosticGroupMapping(StringRef Group, diag::Mapping Map
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
SectionMap.h 29 // a mapping in SectionMap is the triple of
31 struct Mapping {
37 typedef std::vector<struct Mapping> SectionMappingTy;
46 // get the possible output section name based on the mapping table
50 // add a mapping from input substr to output name and offset.
55 // find - return the iterator to the mapping
58 // at - return the pointer to the mapping
59 Mapping* at(const std::string& pInput);
SectionMerger.h 33 struct Mapping {
37 typedef std::vector<Mapping> LDSectionMapTy;
52 /// addMapping - add a mapping as creating one new output LDSection
  /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...]
  /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.
  /frameworks/compile/mclinker/lib/LD/
SectionMap.cpp 49 // Now only check if the mapping exists in the map already
50 // TODO: handle the cases such as overriding the exist mapping and drawing
57 struct Mapping mapping = { local
62 m_SectMap.push_back(mapping);
76 SectionMap::Mapping* SectionMap::at(const std::string& pInput)
SectionMerger.cpp 76 // the mapping rule is not in SectionMap, and this is handled in getOutputSectHdr.
86 struct Mapping mapping = { local
90 m_LDSectionMap.push_back(mapping);
  /external/clang/lib/Frontend/
Warnings.cpp 101 diag::Mapping Mapping = isPositive ? diag::MAP_WARNING : diag::MAP_IGNORE;
187 Diags.setDiagnosticGroupMapping(Opt, Mapping);
PrintPreprocessedOutput.cpp 131 diag::Mapping Map, StringRef Str);
388 diag::Mapping Map, StringRef Str) {
  /external/clang/include/clang/Lex/
PPCallbacks.h 163 diag::Mapping mapping, StringRef Str) {
314 diag::Mapping mapping, StringRef Str) {
315 First->PragmaDiagnostic(Loc, Namespace, mapping, Str);
316 Second->PragmaDiagnostic(Loc, Namespace, mapping, Str);
  /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 =
interpreter-irregexp.cc 43 typedef unibrow::Mapping<unibrow::Ecma262Canonicalize> Canonicalize;
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 34 std::map<const Record*, std::vector<Record*> > Mapping;
43 Mapping[SubGroups[j]].push_back(DiagGroups[i]);
48 return Mapping[Group];
129 /// \brief Invert the 1-[0/1] mapping of diags to group into a one to many
130 /// mapping of groups to diags in the group.
260 // Compute a mapping from a DiagGroup to all of its parents.
  /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 40 unsigned Mapping : 3;
128 Info.setMapping((diag::Mapping) StaticInfo->Mapping);
132 "Unexpected mapping with no-Werror bit!");
138 "Unexpected mapping with show-in-system-header bit!");
382 // Get the mapping information, or compute it lazily.
Diagnostic.cpp 164 void DiagnosticsEngine::setDiagnosticMapping(diag::kind Diag, diag::Mapping Map,
175 // Don't allow a mapping to a warning override an error/fatal mapping.
232 StringRef Group, diag::Mapping Map, SourceLocation Loc)
239 // Set the mapping.
253 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
271 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
279 // Perform the mapping change.
301 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, and
318 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, an
    [all...]
  /external/mesa3d/docs/
MESA_texture_signed_rgba.spec 91 however -128 and -127 both map to -1.0. Mapping -128 to -1.0
104 This is the same mapping as OpenGL 3.1 uses.
106 The above mapping should be considered the reference, but there
108 cannot do this. Particulary the mapping given in NV_texture_shader or
109 the standard OpenGL byte/float mapping is considered acceptable too, as
110 might be a mapping which represents -1.0 by -128, 0.0 by 0 and 1.0 by
114 converting to GL_FLOAT (using the standard OpenGL float/byte mapping)
115 and converting back (using the mapping described here).

Completed in 433 milliseconds

1 2