HomeSort by relevance Sort by last modified time
    Searched full:fileid (Results 26 - 50 of 157) sorted by null

12 3 4 5 6 7

  /external/clang/include/clang/Lex/
PreprocessorLexer.h 32 /// The SourceManager FileID corresponding to the file being lexed.
33 const FileID FID;
76 PreprocessorLexer(Preprocessor *pp, FileID fid);
153 FileID getFileID() const {
164 /// getFileEntry - Return the FileEntry corresponding to this FileID. Like
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 132 std::map<FileID, RewriteBuffer> RewriteBuffers;
151 typedef std::map<FileID, RewriteBuffer>::iterator buffer_iterator;
271 /// FileID's buffer.
272 RewriteBuffer &getEditBuffer(FileID FID);
274 /// getRewriteBufferFor - Return the rewrite buffer for the specified FileID.
276 const RewriteBuffer *getRewriteBufferFor(FileID FID) const {
277 std::map<FileID, RewriteBuffer>::const_iterator I =
294 unsigned getLocationOffsetAndFileID(SourceLocation Loc, FileID &FID) const;
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 50 // If the macro's spelling has no FileID, then it's actually a token paste
62 std::pair<FileID, unsigned> ExpansionInfo = SM.getDecomposedLoc(Loc);
316 // iff the FileID is the same.
322 FileID CaretLocFileID = SM->getFileID(CaretLoc);
330 FileID BeginFileID = SM->getFileID(Begin);
331 FileID EndFileID = SM->getFileID(End);
336 llvm::SmallDenseMap<FileID, SourceLocation> BeginLocsMap;
454 // Map the ranges into the FileID of the diagnostic location.
HeaderIncludeGen.cpp 44 FileID PrevFID);
78 FileID PrevFID) {
LogDiagnosticPrinter.cpp 130 FileID FID = SM.getMainFileID();
157 FileID FID = SM.getFileID(Info.getLocation());
VerifyDiagnosticConsumer.cpp 65 FileID PrevFID) {
131 FileID FID = SrcManager->getFileID(Loc);
540 static bool findDirectives(SourceManager &SM, FileID FID,
716 FileID FID,
728 // Move the FileID from the unparsed set to the parsed set.
732 // Add the FileID to the unparsed set if we haven't seen it before.
741 // Add the FileID to the unparsed set.
  /external/clang/tools/libclang/
CIndexHigh.cpp 48 FileID FID;
56 FindFileIdRefVisitData(CXTranslationUnit TU, FileID FID,
198 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
221 FileID FID = SM.translateFile(File);
293 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
319 FileID FID = SM.translateFile(File);
365 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(Loc);
391 FileID FID = SM.translateFile(File);
CXSourceLocation.cpp 234 // Check that the FileID is invalid on the expansion location.
236 FileID fileID = SM.getFileID(ExpansionLoc);
238 const SrcMgr::SLocEntry &sloc = SM.getSLocEntry(fileID, &Invalid);
314 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellLoc);
315 FileID FID = LocInfo.first;
351 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(FileLoc);
352 FileID FID = LocInfo.first;
SimpleFormatContext.h 48 FileID createInMemoryFile(StringRef Name, StringRef Content) {
58 std::string getRewrittenText(FileID ID) {
CursorVisitor.h 119 bool visitDeclsFromFileRegion(FileID File, unsigned Offset, unsigned Length);
193 FileID FID = FileID());
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_database.h 63 // by FileID.
64 // One FileTracker is created for every different {parent tracker, FileID} pair,
66 // associated to one FileID when the file has multiple parents. Multiple
255 // Maps FileID to trackers. The active tracker must be unique per FileID.
  /external/clang/lib/Tooling/
Refactoring.cpp 55 FileID ID;
96 const std::pair<FileID, unsigned> DecomposedLocation =
110 std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin);
111 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
153 FileID ID =
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 73 FileID mainFileID = SourceMgr.createMainFileIDForMemBuffer(buf);
125 FileID MainFileID = SourceMgr.createMainFileIDForMemBuffer(Buf);
156 SourceMgr.getColumnNumber(FileID(), 0, &Invalid);
160 SourceMgr.getColumnNumber(FileID(), 1, &Invalid);
184 FileID mainFileID = SourceMgr.createMainFileIDForMemBuffer(mainBuf);
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 232 typedef llvm::DenseMap<FileID, const FileEntry *> ParsedFilesMap;
233 typedef llvm::DenseMap<FileID, UnparsedFileStatus> UnparsedFilesMap;
263 void UpdateParsedFileStatus(SourceManager &SM, FileID FID, ParsedStatus PS);
  /external/clang/include/clang/AST/
ASTImporter.h 69 llvm::DenseMap<FileID, FileID> ImportedFileIDs;
201 FileID Import(FileID);
  /external/clang/lib/Edit/
Commit.cpp 238 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
273 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(loc);
311 std::pair<FileID, unsigned> beginInfo = SM.getDecomposedLoc(range.getBegin());
312 std::pair<FileID, unsigned> endInfo = SM.getDecomposedLoc(range.getEnd());
  /external/libmtp/examples/
delfile.c 39 printf("Usage: delfile [-n] <fileid/trackid> | -f <filename>\n");
getfile.c 38 fprintf(stderr, "getfile <fileid/trackid> <filename>\n");
newplaylist.c 31 printf("Usage: newplaylist -i <fileid/trackid> -n <playlistname>\n");
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 92 bool IsModified(FileID ID) const {
103 bool WriteFixedFile(FileID ID, raw_ostream &OS);
  /external/clang/lib/Lex/
MacroInfo.cpp 51 std::pair<FileID, unsigned>
53 std::pair<FileID, unsigned>
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 37 FileID FID = SM.getFileID(B);
106 void html::EscapeText(Rewriter &R, FileID FID,
226 void html::AddLineNumbers(Rewriter& R, FileID FID) {
270 void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
353 /// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
357 void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
376 // FileID.
446 void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
  /external/llvm/test/DebugInfo/X86/
line-info.ll 4 ; CHECK: [[FILEID:[0-9]+]]]{{.*}}list0.h
5 ; CHECK: [[FILEID]] 0 1 0 is_stmt{{$}}
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java 423 final long fileId = intent.getLongExtra(DownloadManager.EXTRA_DOWNLOAD_ID, NOT_AN_ID);
424 PrivateLog.log("Download finished with id " + fileId);
425 DebugLogUtils.l("DownloadFinished with id", fileId);
426 if (NOT_AN_ID == fileId) return; // Spurious wake-up: ignore
430 final CompletedDownloadInfo downloadInfo = getCompletedDownloadInfo(manager, fileId);
435 DebugLogUtils.l("Received result for download ", fileId);
447 downloadSuccessful = handleDownloadedFile(context, record, manager, fileId);
454 publishUpdateWordListCompleted(context, downloadSuccessful, fileId,
460 manager.remove(fileId);
488 final boolean downloadSuccessful, final long fileId,
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 253 unsigned FileID = DD->getOrCreateSourceID(V.getContext().getFilename(),
256 assert(FileID && "Invalid file id");
257 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
271 unsigned FileID = DD->getOrCreateSourceID(G.getFilename(), G.getDirectory(),
273 assert(FileID && "Invalid file id");
274 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
290 unsigned FileID = DD->getOrCreateSourceID(SP.getFilename(),
292 assert(FileID && "Invalid file id");
293 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
307 unsigned FileID = DD->getOrCreateSourceID(Ty.getFilename()
    [all...]

Completed in 565 milliseconds

12 3 4 5 6 7