Searched refs:remap (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/tools/c-arcmt-test/
H A Dc-arcmt-test.c13 CXRemapping remap; local
18 remap = clang_getRemappings(path);
19 if (!remap)
22 N = clang_remap_getNumFiles(remap);
24 clang_remap_getFilenames(remap, i, &origFname, &transFname);
33 clang_remap_dispose(remap);
38 CXRemapping remap; local
43 remap = clang_getRemappingsFromFileList(files, numFiles);
44 if (!remap)
47 N = clang_remap_getNumFiles(remap);
[all...]
/external/clang/tools/libclang/
H A DARCMigrate.cpp60 std::unique_ptr<Remap> remap(new Remap());
62 bool err = arcmt::getFileRemappings(remap->Vec, migrate_dir_path,&diagBuffer);
75 return remap.release();
87 std::unique_ptr<Remap> remap(new Remap());
93 return remap.release();
108 bool err = arcmt::getFileRemappingsFromFileList(remap->Vec, Files,
118 return remap.release();
121 return remap.release();
/external/clang/include/clang/ARCMigrate/
H A DFileRemapper.h55 void remap(StringRef filePath, std::unique_ptr<llvm::MemoryBuffer> memBuf);
62 void remap(const FileEntry *file, std::unique_ptr<llvm::MemoryBuffer> memBuf);
63 void remap(const FileEntry *file, const FileEntry *newfile);
H A DARCMT.h76 bool getFileRemappings(std::vector<std::pair<std::string,std::string> > &remap,
85 std::vector<std::pair<std::string,std::string> > &remap,
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldTransformer.java181 Type remap = remap(type);
182 return new Signature("read" + callbackName(remap),
183 remap,
186 remap });
190 Type remap = remap(type);
191 return new Signature("write" + callbackName(remap),
192 remap,
195 remap,
199 private static Type remap(Type type) { method in class:InterceptFieldTransformer
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocalVariablesSorter.java95 mv.visitVarInsn(opcode, remap(var, size));
99 mv.visitIincInsn(remap(var, 1), increment);
114 mv.visitLocalVariable(name, desc, signature, start, end, remap(index));
125 private int remap(final int var, final int size) { method in class:LocalVariablesSorter
145 private int remap(final int var) { method in class:LocalVariablesSorter
/external/mesa3d/src/mesa/main/
H A Dremap.c28 * \file remap.c
35 * remap table is in charge of mapping a static entry in mesa core to
43 #include "remap.h"
150 _mesa_warning(NULL, "failed to remap %s", name);
183 * Initialize the remap table. This is called in one_time_init().
184 * The remap table needs to be initialized before calling the
190 const struct gl_function_pool_remap *remap)
199 /* initialize the remap table */
205 ASSERT(i == remap[i].remap_index);
206 spec = _mesa_function_pool + remap[
188 _mesa_do_init_remap_table(const char *pool, int size, const struct gl_function_pool_remap *remap) argument
[all...]
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp46 llvm::sys::path::append(InfoFile, "remap");
59 "initFromDisk should be called before any remap calls");
105 remap(pairs[i].first, pairs[i].second);
157 remap(origFE, newE);
206 void FileRemapper::remap(StringRef filePath, function in class:FileRemapper
208 remap(getOriginalFile(filePath), std::move(memBuf));
211 void FileRemapper::remap(const FileEntry *file, function in class:FileRemapper
219 void FileRemapper::remap(const FileEntry *file, const FileEntry *newfile) { function in class:FileRemapper
H A DARCMT.cpp398 remap,
416 remap = PPOpts.RemappedFiles;
605 Remapper.remap(filePath.str(), std::move(memBuf));
397 getFileRemappings(std::vector<std::pair<std::string,std::string> > & remap, StringRef outputDir, DiagnosticConsumer *DiagClient) argument
H A DObjCMT.cpp1995 Remapper.remap(filePath.str(), std::move(memBuf));
2241 std::vector<std::pair<std::string,std::string> > &remap,
2290 remap.push_back(std::make_pair(I->first->getName(), TempFile));
2240 getFileRemappingsFromFileList( std::vector<std::pair<std::string,std::string> > &remap, ArrayRef<StringRef> remapFiles, DiagnosticConsumer *DiagClient) argument
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodePropertySource.java76 String value = filter.remap(getPropertyValue(matchIterator.codepoint));
88 String value = filter.remap(getPropertyValue(matchIterator.codepoint));
100 String value = filter.remap(getPropertyValue(matchIterator.codepoint));
124 public String remap(String original) { method in class:UnicodePropertySource.StringFilter
138 public String remap(String original) { method in class:UnicodePropertySource.MapFilter
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_branches.c282 struct remap_output_data remap; local
285 remap.Output = inst->U.I.DstReg.Index;
286 remap.Temporary = rc_find_free_temporary(s->C);
291 rc_remap_registers(inst, &remap_output_function, &remap);
297 inst_mov->U.I.DstReg.Index = remap.Output;
300 inst_mov->U.I.SrcReg[0].Index = remap.Temporary;
/external/libvncserver/x11vnc/
H A Dkeyboard.c635 * The following is for an experimental -remap option to allow the user
636 * to remap keystrokes. It is currently confusing wrt modifiers...
653 keyremap_t *remap; local
657 rfbLog("remap: invalid line: %s\n", line);
678 rfbLog("warning: skipping invalid remap line: %s", line);
682 remap = (keyremap_t *) malloc((size_t) sizeof(keyremap_t));
683 remap->before = ksym1;
684 remap->after = ksym2;
685 remap->isbutton = isbtn;
686 remap
2836 keyremap_t *remap = keyremaps; local
[all...]
H A Dpointer.c119 rfbLog("remap button %d using \"%s\"\n", from, list);
229 rfbLog("skipping invalid remap button \"%d\" for button"
233 rfbLog("remap button %d using \"%s\"\n", from, str);
294 char *p, *q, *remap = strdup(pointer_remap); local
297 if ((p = strchr(remap, '=')) != NULL) {
309 if ((q = strchr(remap, '-')) != NULL) {
318 rfbLog(" \"%s\"\n", remap);
320 p = remap;
331 free(remap);
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp93 // Otherwise, we have some other constant to remap. Start by checking to see
103 // See if the type mapper wants to remap the type as well.
186 /// Insert \c NewNode in the value map, and then remap \c OldNode's operands.
190 static bool remap(const MDNode *OldNode, MDNode *NewNode, function
229 remap(Node, NewMD, Cycles, VM, Flags, TypeMapper, Materializer);
252 if (!remap(Node, ClonedMD.get(), Cycles, VM, Flags, TypeMapper, Materializer))
/external/valgrind/VEX/priv/
H A Dhost_generic_reg_alloc2.c441 HRegRemap remap; local
1261 initHRegRemap(&remap);
1351 addToHRegRemap(&remap, vreg, univ->regs[n]);
1391 addToHRegRemap(&remap, vreg, univ->regs[k]);
1533 addToHRegRemap(&remap, vreg, univ->regs[spillee]);
1549 (*mapRegs)( &remap, instrs_in->arr[ii], mode64 );
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DUnicodeProperty.java1023 return filter.remap(property.getValue(codepoint));
1033 String mappedItem = filter.remap(item);
1065 public abstract String remap(String original); method in class:UnicodeProperty.StringFilter
1072 UnicodeProperty.addUnique(remap((String) it.next()), result);
1090 public String remap(String original) { method in class:UnicodeProperty.MapFilter
/external/fonttools/Lib/fontTools/
H A Dsubset.py63 def remap(self, coverage_map): function
83 def subset(self, glyphs, remap=False):
91 if remap:
92 self.remap(indices)
96 def remap(self, class_map): function
126 self.Coverage.remap(indices)
185 self.Coverage.remap(indices)
223 self.Coverage.remap(indices)
228 class1_map = self.ClassDef1.subset(s.glyphs, remap=True)
229 class2_map = self.ClassDef2.subset(s.glyphs, remap
[all...]
/external/fonttools/Tools/fontTools/
H A Dsubset.py63 def remap(self, coverage_map): function
83 def subset(self, glyphs, remap=False):
91 if remap:
92 self.remap(indices)
96 def remap(self, class_map): function
126 self.Coverage.remap(indices)
185 self.Coverage.remap(indices)
223 self.Coverage.remap(indices)
228 class1_map = self.ClassDef1.subset(s.glyphs, remap=True)
229 class2_map = self.ClassDef2.subset(s.glyphs, remap
[all...]
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/mesa3d/src/mesa/
H A Dsources.mak75 $(SRCDIR)main/remap.c \
/external/blktrace/doc/
H A Dblktrace.tex577 \item[A -- remap] For stacked devices, incoming io is remapped to device
578 below it in the io stack. The remap action details what exactly is
726 \item[A -- remap] Sector and length is output, along with the original
804 Adds a trace with a remap event. \emph{dev} and \emph{sector} denote
/external/elfutils/src/src/
H A Dldgeneric.c3939 size_t *remap = xmalloc (nsym_dyn * sizeof (size_t)); local
3948 remap[ndxtosym[cnt]->outdynsymidx] = cnt;
3958 qsort (remap + 1, nsym_dyn - 1, sizeof (size_t), sortfct_hashval);
3970 if (! ndxtosym[remap[cnt]]->defined
3971 || ndxtosym[remap[cnt]]->in_dso)
3977 Elf32_Word hval = gnuhashcodes[ndxtosym[remap[cnt]]->outdynsymidx];
4017 ndxtosym[remap[cnt]]->outdynsymidx = cnt;
4034 free (remap);
/external/linux-tools-perf/src/tools/perf/util/
H A Dsession.c1338 remap:
1361 goto remap;

Completed in 4745 milliseconds

12