Searched refs:FM (Results 1 - 20 of 20) sorted by relevance

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderMap.h48 static const HeaderMap *Create(const FileEntry *FE, FileManager &FM);
56 const FileEntry *LookupFile(StringRef Filename, FileManager &FM) const;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DPlistReporter.cpp47 SourceLocation L, const FIDMap &FM,
62 << GetFID(FM, SM, Loc) << "</integer>\n";
68 CharSourceRange R, const FIDMap &FM,
71 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1);
72 EmitLocation(o, SM, LangOpts, R.getEnd(), FM, indent+1, R.isTokenRange());
102 FIDMap FM; local
109 AddFID(FM, Fids, SM, D.getLocation());
113 AddFID(FM, Fids, SM, RI->getBegin());
114 AddFID(FM, Fids, SM, RI->getEnd());
174 EmitLocation(o, SM, LangOpts, D.getLocation(), FM,
45 EmitLocation(raw_ostream& o, const SourceManager &SM, const LangOptions &LangOpts, SourceLocation L, const FIDMap &FM, unsigned indent, bool extend = false) argument
66 EmitRange(raw_ostream& o, const SourceManager &SM, const LangOptions &LangOpts, CharSourceRange R, const FIDMap &FM, unsigned indent) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp108 SourceLocation L, const FIDMap &FM,
123 << GetFID(FM, SM, Loc) << "</integer>\n";
129 const PathDiagnosticLocation &L, const FIDMap& FM,
131 EmitLocation(o, SM, LangOpts, L.asLocation(), FM, indent, extend);
136 PathDiagnosticRange R, const FIDMap &FM,
139 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1);
140 EmitLocation(o, SM, LangOpts, R.getEnd(), FM, indent+1, !R.isPoint);
163 const FIDMap& FM,
188 EmitRange(o, SM, LangOpts, SourceRange(StartEdge, StartEdge), FM, indent+1);
192 EmitRange(o, SM, LangOpts, SourceRange(EndEdge, EndEdge), FM, inden
106 EmitLocation(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, SourceLocation L, const FIDMap &FM, unsigned indent, bool extend = false) argument
127 EmitLocation(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, const PathDiagnosticLocation &L, const FIDMap& FM, unsigned indent, bool extend = false) argument
134 EmitRange(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, PathDiagnosticRange R, const FIDMap &FM, unsigned indent) argument
161 ReportControlFlow(raw_ostream &o, const PathDiagnosticControlFlowPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent) argument
212 ReportEvent(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool isKeyEvent = false) argument
280 ReportCall(raw_ostream &o, const PathDiagnosticCallPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
315 ReportMacro(raw_ostream &o, const PathDiagnosticMacroPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
328 ReportDiag(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts) argument
334 ReportPiece(raw_ostream &o, const PathDiagnosticPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool includeControlFlow, bool isKeyEvent) argument
368 FIDMap FM; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DHeaderMap.cpp79 const HeaderMap *HeaderMap::Create(const FileEntry *FE, FileManager &FM) { argument
84 OwningPtr<const llvm::MemoryBuffer> FileBuffer(FM.getBufferForFile(FE));
203 StringRef Filename, FileManager &FM) const {
226 return FM.getFile(DestPath.str());
H A DPPLexerChange.cpp211 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, argument
219 if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp845 FactID addLock(FactManager& FM, const SExpr& M, const LockData& L) { argument
846 FactID F = FM.newLock(M, L);
851 bool removeLock(FactManager& FM, const SExpr& M) { argument
857 if (FM[FactIDs[i]].MutID.matches(M)) {
863 if (FM[FactIDs[n-1]].MutID.matches(M)) {
871 iterator findLockIter(FactManager &FM, const SExpr &M) { argument
873 const SExpr &Exp = FM[*I].MutID;
880 LockData* findLock(FactManager &FM, const SExpr &M) const { argument
882 const SExpr &Exp = FM[*I].MutID;
884 return &FM[*
889 findLockUniv(FactManager &FM, const SExpr &M) const argument
898 findPartialMatch(FactManager &FM, const SExpr &M) const argument
[all...]
/freebsd-9.3-release/contrib/mtree/
H A Dspecspec.c52 #define FM(a, b, c, d) \ macro
166 if (FM(n1, n2, F_TIME, st_mtimespec))
/freebsd-9.3-release/usr.sbin/mtree/
H A Dspecspec.c43 #define FM(a, b, c, d) \ macro
153 if (FM(n1, n2, F_TIME, st_mtimespec))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DInitHeaderSearch.cpp141 FileManager &FM = Headers.getFileMgr(); local
156 if (const DirectoryEntry *DE = FM.getDirectory(MappedPathStr)) {
165 if (const FileEntry *FE = FM.getFile(MappedPathStr)) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp905 FallthroughMapper FM(S);
906 FM.TraverseStmt(AC.getBody());
908 if (!FM.foundSwitchStatements())
911 if (PerFunction && FM.getFallthroughStmts().empty())
919 FM.fillReachableBlocks(Cfg);
930 if (!FM.checkFallThroughIntoBlock(*B, AnnotatedCnt))
971 const FallthroughMapper::AttrStmts &Fallthroughs = FM.getFallthroughStmts();
/freebsd-9.3-release/sys/pci/
H A Dncrreg.h153 #define FM 0x02 /* mod: fetch pin mode */ macro
/freebsd-9.3-release/sys/powerpc/powerpc/
H A Ddb_disasm.c648 u_int FM; local
649 FM = extract_field(instr, 31 - 10, 8);
650 pstr += sprintf(pstr, "%d, ", FM);
/freebsd-9.3-release/usr.bin/calendar/calendars/
H A Dcalendar.history16 01/05 The FCC hears the first demonstration of FM radio, 1940
/freebsd-9.3-release/sys/dev/sym/
H A Dsym_defs.h370 #define FM 0x02 /* mod: fetch pin mode */ macro
/freebsd-9.3-release/contrib/ncurses/include/
H A DCaps.osf1r5555 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
1006 #key_f32 kf32 str FM - - ----- F32 function key
H A DCaps.uwin533 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
822 #key_f32 kf32 str FM - - ----- F32 function key
H A DCaps565 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
996 #key_f32 kf32 str FM - - ----- F32 function key
H A DCaps.aix4585 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
1098 #key_f32 kf32 str FM - - ----- F32 function key
H A DCaps.hpux11504 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
1010 #key_f32 kf32 str FM - - ----- F32 function key
H A DCaps.keys567 key_f32 kf32 str FM KEY_F(32) - ----E F32 function key
1086 #key_f32 kf32 str FM - - ----- F32 function key

Completed in 140 milliseconds