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

12 3

  /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/opencv3/3rdparty/jinja2/
runtime.py 120 # create the initial mapping of blocks. Whenever template inheritance
121 # takes place the runtime will update this mapping with the new blocks
245 # register the context as mapping if possible
247 from collections import Mapping
248 Mapping.register(Context)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/
Diagnostic.cpp 192 // Don't allow a mapping to a warning override an error/fatal mapping.
199 DiagnosticMapping Mapping = makeUserMapping(Map, L);
203 GetCurDiagState()->setMapping(Diag, Mapping);
216 GetCurDiagState()->setMapping(Diag, Mapping);
229 I->State->setMapping(Diag, Mapping);
234 Pos->State->setMapping(Diag, Mapping);
243 NewState->setMapping(Diag, Mapping);
256 // Set the mapping.
271 // Otherwise, we want to set the diagnostic mapping's "no Werror" bit, an
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 43 std::map<const Record*, std::vector<Record*> > Mapping;
52 Mapping[SubGroups[j]].push_back(DiagGroups[i]);
57 return Mapping[Group];
164 /// \brief Invert the 1-[0/1] mapping of diags to group into a one to many
165 /// mapping of groups to diags in the group.
826 // Compute a mapping from a DiagGroup to all of its parents.
    [all...]
  /system/netd/tests/
netd_test.cpp 173 struct Mapping {
209 std::vector<Mapping>* mappings) const {
225 void SetupDNSServers(unsigned num_servers, const std::vector<Mapping>& mappings,
239 for (const auto& mapping : mappings) {
240 d->addMapping(mapping.entry.c_str(), ns_type::ns_t_a, mapping.ip4.c_str());
241 d->addMapping(mapping.entry.c_str(), ns_type::ns_t_aaaa, mapping.ip6.c_str());
371 std::vector<Mapping> mappings;
384 auto& mapping = mappings[i]
468 const Mapping& mapping = mappings[0]; local
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 1 //===--- CoverageMappingGen.cpp - Coverage mapping generation ---*- C++ -*-===//
10 // Instrumentation-based code coverage mapping generator
74 /// coverage mapping region builders.
82 /// \brief Map of clang's FileIDs to IDs used for coverage mapping.
87 /// \brief The coverage mapping regions for this function
89 /// \brief The source mapping regions for this function.
149 /// Fills \c Mapping with the virtual file mapping needed to write out
152 void gatherFileIDs(SmallVectorImpl<unsigned> &Mapping) {
179 FileIDMapping[SM.getFileID(Loc)] = std::make_pair(Mapping.size(), Loc)
    [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 191 struct Mapping {
192 Mapping()
204 std::map<uint64_t, Mapping> mappings;
556 CrashedProcess::Mapping mapping; local
557 mapping.permissions = 0;
559 mapping.permissions |= PF_R;
562 mapping.permissions |= PF_W;
565 mapping.permissions |= PF_X;
567 mapping.start_address = start
798 CrashedProcess::Mapping mapping; local
858 CrashedProcess::Mapping mapping = iter->second; local
888 CrashedProcess::Mapping mapping; local
1145 const CrashedProcess::Mapping& mapping = iter->second; local
1210 const CrashedProcess::Mapping& mapping = iter->second; local
    [all...]
  /external/llvm/include/llvm/Support/
FileSystem.h 655 /// Platform-specific mapping state.
657 void *Mapping;
YAMLTraits.h 32 /// to/from a YAML mapping. For example:
35 /// static void mapping(IO &io, MyStruct &s) {
44 // static void mapping(IO &io, T &fields);
48 // The optional flow flag will cause generated YAML to use a flow mapping
54 /// to/from a YAML scalar where there is a one-to-one mapping between
269 static char test(SameType<Signature_mapping, &U::mapping>*);
709 MappingTraits<T>::mapping(io, Val);
726 MappingTraits<T>::mapping(io, Val);
730 MappingTraits<T>::mapping(io, Val);
861 // Utility for use within MappingTraits<>::mapping() metho
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
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...]
test_descr.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
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...]
test_descr.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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...]
test_descr.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
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...]
test_descr.py     [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 140 /// \brief The level of the diagnostic, after it has been through mapping.
194 /// \brief Mapping information for diagnostics.
196 /// Mapping info is packed into four bits per diagnostic. The low three
197 /// bits are the mapping (an instance of diag::Severity), or zero if unset.
198 /// The high bit is set when the mapping was established as a user mapping.
537 /// have the specified mapping.
565 /// \brief Add the specified mapping to all diagnostics of the specified
775 DiagnosticMapping Mapping =
778 // If this is a pragma mapping, then set the diagnostic mapping flags s
    [all...]
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 163 SkAnonC: an anonymous mapping belonging to C. For these, aspacem
167 SkFileC: a file mapping belonging to C.
171 SkAnonV: an anonymous mapping belonging to V. These cover all V's
175 SkFileV: a file mapping belonging to V. As far as I know these are
188 a fixed mapping in the middle of one, and that's just tough -- we
201 mapping may be extended. This makes dataseg/stack expansion work.
232 advice on where to place the mapping, no commitment has yet been
765 on mapping boundaries will be detected. This is because, if for
819 for when each mapping was created. In order to cope with this we
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 193 // These flags allow to change the shadow mapping.
194 // The shadow mapping looks like
196 static cl::opt<int> ClMappingScale("asan-mapping-scale",
197 cl::desc("scale of asan shadow mapping"),
326 /// This struct defines the shadow mapping using the rule:
350 ShadowMapping Mapping;
356 Mapping.Offset = 0;
358 Mapping.Offset = kMIPS32_ShadowOffset32;
360 Mapping.Offset = kFreeBSD_ShadowOffset32;
362 Mapping.Offset = kIOSShadowOffset32
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]

Completed in 901 milliseconds

12 3