/external/clang/tools/c-arcmt-test/ |
D | c-arcmt-test.c | 13 CXRemapping remap; in print_remappings() local 18 remap = clang_getRemappings(path); in print_remappings() 19 if (!remap) in print_remappings() 22 N = clang_remap_getNumFiles(remap); in print_remappings() 24 clang_remap_getFilenames(remap, i, &origFname, &transFname); in print_remappings() 33 clang_remap_dispose(remap); in print_remappings() 38 CXRemapping remap; in print_remappings_filelist() local 43 remap = clang_getRemappingsFromFileList(files, numFiles); in print_remappings_filelist() 44 if (!remap) in print_remappings_filelist() 47 N = clang_remap_getNumFiles(remap); in print_remappings_filelist() [all …]
|
/external/clang/tools/libclang/ |
D | ARCMigrate.cpp | 59 OwningPtr<Remap> remap(new Remap()); in clang_getRemappings() local 61 bool err = arcmt::getFileRemappings(remap->Vec, migrate_dir_path,&diagBuffer); in clang_getRemappings() 74 return remap.take(); in clang_getRemappings() 81 OwningPtr<Remap> remap(new Remap()); in clang_getRemappingsFromFileList() local 87 return remap.take(); in clang_getRemappingsFromFileList() 102 bool err = arcmt::getFileRemappingsFromFileList(remap->Vec, Files, in clang_getRemappingsFromFileList() 112 return remap.take(); in clang_getRemappingsFromFileList() 115 return remap.take(); in clang_getRemappingsFromFileList()
|
/external/quake/quake/src/WinQuake/ |
D | cd_linux.cpp | 45 static byte remap[100]; variable 111 track = remap[track]; in CDAudio_Play() 241 remap[n] = n; in CD_f() 252 if (remap[n] != n) in CD_f() 253 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 257 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 391 remap[i] = i; in CDAudio_Init()
|
D | cd_win.cpp | 36 static byte remap[100]; variable 119 track = remap[track]; in CDAudio_Play() 275 remap[n] = n; in CD_f() 286 if (remap[n] != n) in CD_f() 287 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 291 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 452 remap[n] = n; in CDAudio_Init()
|
D | cd_audio.cpp | 239 static byte remap[256]; variable 505 track = remap[track]; in CDAudio_Play() 655 remap[n] = n; in CD_f() 667 if (remap[n] != n) in CD_f() 668 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 672 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 863 remap[n] = n; in CDAudio_Init()
|
/external/quake/quake/src/QW/client/ |
D | cd_linux.c | 45 static byte remap[100]; variable 111 track = remap[track]; in CDAudio_Play() 241 remap[n] = n; in CD_f() 252 if (remap[n] != n) in CD_f() 253 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 257 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 393 remap[i] = i; in CDAudio_Init()
|
D | cd_win.c | 36 static byte remap[100]; variable 119 track = remap[track]; in CDAudio_Play() 275 remap[n] = n; in CD_f() 286 if (remap[n] != n) in CD_f() 287 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 291 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 453 remap[n] = n; in CDAudio_Init()
|
D | cd_audio.c | 217 static byte remap[256]; variable 515 track = remap[track]; in CDAudio_Play() 652 remap[n] = n; in CD_f() 664 if (remap[n] != n) in CD_f() 665 Con_Printf(" %u -> %u\n", n, remap[n]); in CD_f() 669 remap[n] = Q_atoi(Cmd_Argv (n+1)); in CD_f() 861 remap[n] = n; in CDAudio_Init()
|
/external/clang/include/clang/ARCMigrate/ |
D | FileRemapper.h | 55 void remap(StringRef filePath, llvm::MemoryBuffer *memBuf); 56 void remap(StringRef filePath, StringRef newPath); 65 void remap(const FileEntry *file, llvm::MemoryBuffer *memBuf); 66 void remap(const FileEntry *file, const FileEntry *newfile);
|
D | ARCMT.h | 75 bool getFileRemappings(std::vector<std::pair<std::string,std::string> > &remap, 84 std::vector<std::pair<std::string,std::string> > &remap,
|
/external/llvm/lib/MC/ |
D | MCAtom.cpp | 22 Parent->remap(this, Begin, End+Size); in addInst() 29 Parent->remap(this, Begin, End+1); in addData() 45 Parent->remap(this, LeftBegin, LeftEnd); in split() 80 Parent->remap(this, Begin, TruncPt); in truncate()
|
D | MCModule.cpp | 31 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) { in remap() function in MCModule
|
/external/clang/lib/ARCMigrate/ |
D | FileRemapper.cpp | 108 remap(pairs[i].first, pairs[i].second); in initFromFile() 163 remap(origFE, newE); in flushToFile() 238 void FileRemapper::remap(StringRef filePath, llvm::MemoryBuffer *memBuf) { in remap() function in FileRemapper 239 remap(getOriginalFile(filePath), memBuf); in remap() 242 void FileRemapper::remap(StringRef filePath, StringRef newPath) { in remap() function in FileRemapper 245 remap(file, newfile); in remap() 248 void FileRemapper::remap(const FileEntry *file, llvm::MemoryBuffer *memBuf) { in remap() function in FileRemapper 255 void FileRemapper::remap(const FileEntry *file, const FileEntry *newfile) { in remap() function in FileRemapper
|
D | ARCMT.cpp | 430 remap, in getFileRemappings() 447 remap = PPOpts.RemappedFiles; in getFileRemappings() 453 std::vector<std::pair<std::string,std::string> > &remap, in getFileRemappingsFromFileList() 483 remap.push_back(*RI); in getFileRemappingsFromFileList() 669 Remapper.remap(filePath.str(), memBuf); in applyTransform()
|
D | ObjCMT.cpp | 202 Remapper.remap(filePath.str(), memBuf); in HandleTranslationUnit()
|
/external/clang/test/PCH/ |
D | chain-remap-types.m | 1 // RUN: %clang_cc1 -emit-pch -x objective-c-header -o %t1 %S/Inputs/chain-remap-types1.h 2 // RUN: %clang_cc1 -emit-pch -x objective-c-header -o %t2 %S/Inputs/chain-remap-types2.h -include-p…
|
/external/llvm/include/llvm/MC/ |
D | MCModule.h | 46 void remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd);
|
/external/clang/include/clang/Driver/ |
D | Types.def | 86 TYPE("remap", Remap, INVALID, "remap", "")
|
/external/valgrind/main/VEX/priv/ |
D | host_generic_reg_alloc2.c | 392 HRegRemap remap; in doRegisterAllocation() local 1191 initHRegRemap(&remap); in doRegisterAllocation() 1284 addToHRegRemap(&remap, vreg, rreg_state[k].rreg); in doRegisterAllocation() 1323 addToHRegRemap(&remap, vreg, rreg_state[k].rreg); in doRegisterAllocation() 1463 addToHRegRemap(&remap, vreg, rreg_state[spillee].rreg); in doRegisterAllocation() 1479 (*mapRegs)( &remap, instrs_in->arr[ii], mode64 ); in doRegisterAllocation()
|
/external/clang/include/clang/Basic/ |
D | DiagnosticFrontendKinds.td | 38 "could not remap file '%0' to the contents of file '%1'">, DefaultFatal; 40 "could not remap from missing file '%0'">, DefaultFatal;
|
/external/linux-tools-perf/util/ |
D | session.c | 1050 remap: in __perf_session__process_events() 1073 goto remap; in __perf_session__process_events()
|
/external/blktrace/doc/ |
D | blktrace.tex | 577 \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/ |
D | ldgeneric.c | 3949 size_t *remap = xmalloc (nsym_dyn * sizeof (size_t)); in create_gnu_hash() local 3958 remap[ndxtosym[cnt]->outdynsymidx] = cnt; in create_gnu_hash() 3968 qsort (remap + 1, nsym_dyn - 1, sizeof (size_t), sortfct_hashval); in create_gnu_hash() 3980 if (! ndxtosym[remap[cnt]]->defined in create_gnu_hash() 3981 || ndxtosym[remap[cnt]]->in_dso) in create_gnu_hash() 3987 Elf32_Word hval = gnuhashcodes[ndxtosym[remap[cnt]]->outdynsymidx]; in create_gnu_hash() 4027 ndxtosym[remap[cnt]]->outdynsymidx = cnt; in create_gnu_hash() 4044 free (remap); in create_gnu_hash()
|
/external/valgrind/main/helgrind/ |
D | libhb_core.c | 2548 VtsID remap; /* used only during pruning */ member 2614 te.remap = VtsID_INVALID; in get_new_VtsID() 2715 new_id = old_te->remap; in remap_VtsID() 2906 tl_assert(old_te->remap == VtsID_INVALID); in vts_tab__do_GC() 2969 new_te.remap = VtsID_INVALID; in vts_tab__do_GC() 2977 old_te->remap = new_vts->id; in vts_tab__do_GC() 3117 tl_assert(te->remap == VtsID_INVALID); /* not relevant */ in vts_tab__do_GC()
|
/external/blktrace/btt/doc/ |
D | btt.tex | 632 \item remap traces 969 Ignore remap traces; older kernels did not implement the full remap PDU.
|