HomeSort by relevance Sort by last modified time
    Searched defs:mapping (Results 51 - 75 of 772) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Tooling/
DiagnosticsYaml.h 55 static void mapping(IO &Io, clang::tooling::Diagnostic &D) { function in struct:llvm::yaml::MappingTraits
86 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { function in struct:llvm::yaml::MappingTraits
ReplacementsYaml.h 52 static void mapping(IO &Io, clang::tooling::Replacement &R) { function in struct:llvm::yaml::MappingTraits
65 static void mapping(IO &Io, function in struct:llvm::yaml::MappingTraits
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Tooling/
DiagnosticsYaml.h 55 static void mapping(IO &Io, clang::tooling::Diagnostic &D) { function in struct:llvm::yaml::MappingTraits
86 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { function in struct:llvm::yaml::MappingTraits
ReplacementsYaml.h 52 static void mapping(IO &Io, clang::tooling::Replacement &R) { function in struct:llvm::yaml::MappingTraits
65 static void mapping(IO &Io, function in struct:llvm::yaml::MappingTraits
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/Tooling/
DiagnosticsYaml.h 55 static void mapping(IO &Io, clang::tooling::Diagnostic &D) { function in struct:llvm::yaml::MappingTraits
86 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { function in struct:llvm::yaml::MappingTraits
ReplacementsYaml.h 52 static void mapping(IO &Io, clang::tooling::Replacement &R) { function in struct:llvm::yaml::MappingTraits
65 static void mapping(IO &Io, function in struct:llvm::yaml::MappingTraits
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Tooling/
DiagnosticsYaml.h 55 static void mapping(IO &Io, clang::tooling::Diagnostic &D) { function in struct:llvm::yaml::MappingTraits
86 static void mapping(IO &Io, clang::tooling::TranslationUnitDiagnostics &Doc) { function in struct:llvm::yaml::MappingTraits
ReplacementsYaml.h 52 static void mapping(IO &Io, clang::tooling::Replacement &R) { function in struct:llvm::yaml::MappingTraits
65 static void mapping(IO &Io, function in struct:llvm::yaml::MappingTraits
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 8 MAPPING = {'StringIO': 'io',
65 def build_pattern(mapping=MAPPING):
66 mod_list = ' | '.join(["module_name='%s'" % key for key in mapping])
67 bare_names = alternates(mapping.keys())
90 mapping = MAPPING variable in class:FixImports
97 return "|".join(build_pattern(self.mapping))
100 # We override this, so MAPPING can be pragmatically altered and the
126 new_name = unicode(self.mapping[mod_name]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_imports.py 8 MAPPING = {'StringIO': 'io',
65 def build_pattern(mapping=MAPPING):
66 mod_list = ' | '.join(["module_name='%s'" % key for key in mapping])
67 bare_names = alternates(mapping.keys())
90 mapping = MAPPING variable in class:FixImports
97 return "|".join(build_pattern(self.mapping))
100 # We override this, so MAPPING can be pragmatically altered and the
126 new_name = unicode(self.mapping[mod_name]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 8 MAPPING = {'StringIO': 'io',
65 def build_pattern(mapping=MAPPING):
66 mod_list = ' | '.join(["module_name='%s'" % key for key in mapping])
67 bare_names = alternates(mapping.keys())
90 mapping = MAPPING variable in class:FixImports
97 return "|".join(build_pattern(self.mapping))
100 # We override this, so MAPPING can be pragmatically altered and the
126 new_name = unicode(self.mapping[mod_name]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_imports.py 8 MAPPING = {'StringIO': 'io',
65 def build_pattern(mapping=MAPPING):
66 mod_list = ' | '.join(["module_name='%s'" % key for key in mapping])
67 bare_names = alternates(mapping.keys())
90 mapping = MAPPING variable in class:FixImports
97 return "|".join(build_pattern(self.mapping))
100 # We override this, so MAPPING can be pragmatically altered and the
126 new_name = unicode(self.mapping[mod_name]
    [all...]
  /system/core/libunwindstack/tests/
MemoryRemoteTest.cpp 112 char* mapping = static_cast<char*>( local
114 ASSERT_NE(MAP_FAILED, mapping);
115 memset(mapping, 0x4c, 4 * getpagesize());
116 ASSERT_EQ(0, mprotect(mapping + getpagesize(), getpagesize(), PROT_NONE));
117 ASSERT_EQ(0, munmap(mapping + 3 * getpagesize(), getpagesize()));
129 ASSERT_EQ(0, munmap(mapping, 3 * getpagesize()));
137 remote.Read(reinterpret_cast<uint64_t>(mapping + getpagesize() - 1024), dst.data(), 4096);
146 remote.Read(reinterpret_cast<uint64_t>(mapping + 3 * getpagesize() - 1024), dst.data(), 4096);
237 void* mapping = local
239 ASSERT_NE(MAP_FAILED, mapping);
270 void* mapping = local
306 void* mapping = local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
resource.cpp 76 erase_if([&](const mapping &m) {
189 mapping::mapping(command_queue &q, resource &r, function in class:mapping
209 mapping::mapping(mapping &&m) : function in class:mapping
217 mapping::~mapping() {
224 mapping &
225 mapping::operator=(mapping m)
    [all...]
resource.hpp 34 class mapping;
62 friend class mapping;
79 std::list<mapping> maps;
104 /// Class that represents a mapping of some resource into the CPU
107 class mapping { class in namespace:clover
109 mapping(command_queue &q, resource &r, cl_map_flags flags,
112 mapping(mapping &&m);
113 ~mapping();
115 mapping
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 36 Properties mapping; field in class:PropertyBoxParserImpl
41 mapping = new Properties();
43 mapping.load(is);
50 mapping.load(customIS);
56 mapping.load(new BufferedInputStream(getClass().getResourceAsStream(customProperty)));
71 public PropertyBoxParserImpl(Properties mapping) {
72 this.mapping = mapping;
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
172 constructor = mapping.getProperty("uuid[" + Hex.encodeHex(userType).toUpperCase() + "]")
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
MethodOptimizer.java 45 private NameMapping mapping; field in class:MethodOptimizer
47 public MethodOptimizer(final MethodVisitor mv, final NameMapping mapping) {
49 this.mapping = mapping;
70 ? mapping.fix(desc)
71 : mapping.map(desc));
80 mv.visitFieldInsn(opcode, mapping.map(owner), mapping.map(owner + "."
81 + name), mapping.fix(desc));
90 mv.visitMethodInsn(opcode, mapping.map(owner), mapping.map(owner + ".
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stacktrace_test.cc 32 void *mapping; member in class:__sanitizer::FastUnwindTest
47 mapping = MmapOrDie(2 * ps, "FastUnwindTest");
48 MprotectNoAccess((uptr)mapping, ps);
51 fake_stack = (uhwptr *)((uptr)mapping + ps + sizeof(uhwptr));
65 fake_bottom = (uhwptr)mapping;
71 UnmapOrDie(mapping, 2 * ps);
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer_unittest.cc 76 // Push some extra mapping to check the MappingList logic.
91 MappingEntry mapping; local
92 mapping.first = info;
93 memcpy(mapping.second, kModuleGUID, sizeof(MDGUID));
94 mappings.push_back(mapping);
  /external/libmojo/mojo/edk/system/
shared_buffer_dispatcher_unittest.cc 191 std::unique_ptr<PlatformSharedBufferMapping> mapping; local
193 0, 100, MOJO_MAP_BUFFER_FLAG_NONE, &mapping));
194 static_cast<char*>(mapping->GetBase())[0] = 'x';
195 mapping.reset();
208 0, 100, MOJO_MAP_BUFFER_FLAG_NONE, &mapping));
209 EXPECT_EQ('x', static_cast<char*>(mapping->GetBase())[0]);
233 std::unique_ptr<PlatformSharedBufferMapping> mapping; local
234 EXPECT_EQ(MOJO_RESULT_OK, dispatcher2->MapBuffer(0, 100, 0, &mapping));
294 std::unique_ptr<PlatformSharedBufferMapping> mapping; local
296 dispatcher->MapBuffer(0, 101, MOJO_MAP_BUFFER_FLAG_NONE, &mapping));
    [all...]
  /external/libopus/tests/
opus_encode_regressions.c 51 unsigned char mapping[1]; local
54 &coupled_streams, mapping, OPUS_APPLICATION_VOIP, &err);
296 static const unsigned char mapping[255] = local
315 enc = opus_multistream_encoder_create(8000, 255, 254, 1, mapping,
349 static const unsigned char mapping[192] = local
365 enc = opus_multistream_encoder_create(8000, 192, 189, 3, mapping,
401 unsigned char mapping[3]; local
404 &coupled_streams, mapping, OPUS_APPLICATION_AUDIO, &err);
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/incall/impl/
MappedButtonConfig.java 36 * Determines logical button slot and ordering based on a provided mapping.
38 * <p>The provided mapping is declared with the following pieces of information: key, the {@link
39 * InCallButtonIds} for which the mapping applies; {@link MappingInfo#getSlot()}, the arbitrarily
49 @NonNull private final Map<Integer, MappingInfo> mapping; field in class:MappedButtonConfig
53 * Creates this MappedButtonConfig with the given mapping of {@link InCallButtonIds} to their
56 * @param mapping the mapping.
58 public MappedButtonConfig(@NonNull Map<Integer, MappingInfo> mapping) {
59 this.mapping = new ArrayMap<>();
60 this.mapping.putAll(Assert.isNotNull(mapping))
    [all...]
  /system/sepolicy/tools/
version_policy.c 19 printf(" -m, --mapping generate cil version mapping from base policy\n");
86 bool mapping = false; local
98 {"mapping", no_argument, 0, 'm'},
115 mapping = true;
137 if (num == NULL || base == NULL || (mapping == false && tgt_policy == NULL)) {
142 /* policy language doesn't like '.', so replace them with '_' in mapping version */
149 if (mapping && tgt_policy) {
150 fprintf(stderr, "Please select only one mode between --mapping and --tgt_policy\n");
163 if (mapping) {
    [all...]
  /tools/tradefederation/core/prod-tests/tests/src/com/android/build/tests/
ImageStatsTest.java 134 Map<Pattern, String> mapping = new HashMap<>(); local
135 mapping.put(Pattern.compile("^.+\\.(.+)"), "ext-\\1"); // aggregate by extension
136 mapping.put(Pattern.compile("^/system/(.+?)/.+$"), "folder-\\1"); // aggregate by folder
137 Map<String, String> ret = mImageStats.performAggregation(PARSED_TEST_DATA, mapping);
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java 95 // Calculate the mapping (i.e. transform) between current low res rect
96 // and full res image rect, and apply the mapping on current visible rect
99 Matrix mapping = new Matrix(); local
100 mapping.setRectToRect(endRect, fullResRect, Matrix.ScaleToFit.CENTER);
102 mapping.mapRect(visibleAfterRotation, visibleRect);

Completed in 518 milliseconds

1 23 4 5 6 7 8 91011>>