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

/freebsd-10.0-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;
H A DHeaderSearch.h225 FileManager &FM, DiagnosticsEngine &Diags,
/freebsd-10.0-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-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp109 SourceLocation L, const FIDMap &FM,
124 << GetFID(FM, SM, Loc) << "</integer>\n";
130 const PathDiagnosticLocation &L, const FIDMap& FM,
132 EmitLocation(o, SM, LangOpts, L.asLocation(), FM, indent, extend);
137 PathDiagnosticRange R, const FIDMap &FM,
140 EmitLocation(o, SM, LangOpts, R.getBegin(), FM, indent+1);
141 EmitLocation(o, SM, LangOpts, R.getEnd(), FM, indent+1, !R.isPoint);
164 const FIDMap& FM,
189 EmitRange(o, SM, LangOpts, SourceRange(StartEdge, StartEdge), FM, indent+1);
193 EmitRange(o, SM, LangOpts, SourceRange(EndEdge, EndEdge), FM, inden
107 EmitLocation(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, SourceLocation L, const FIDMap &FM, unsigned indent, bool extend = false) argument
128 EmitLocation(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, const PathDiagnosticLocation &L, const FIDMap& FM, unsigned indent, bool extend = false) argument
135 EmitRange(raw_ostream &o, const SourceManager &SM, const LangOptions &LangOpts, PathDiagnosticRange R, const FIDMap &FM, unsigned indent) argument
162 ReportControlFlow(raw_ostream &o, const PathDiagnosticControlFlowPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent) argument
213 ReportEvent(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
275 ReportCall(raw_ostream &o, const PathDiagnosticCallPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
309 ReportMacro(raw_ostream &o, const PathDiagnosticMacroPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
322 ReportDiag(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts) argument
328 ReportPiece(raw_ostream &o, const PathDiagnosticPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool includeControlFlow) argument
361 FIDMap FM; local
[all...]
/freebsd-10.0-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)) {
H A DHeaderSearch.cpp46 FileManager &FM, DiagnosticsEngine &Diags,
49 : HSOpts(HSOpts), FileMgr(FM), FrameworkMap(64),
45 HeaderSearch(IntrusiveRefCntPtr<HeaderSearchOptions> HSOpts, FileManager &FM, DiagnosticsEngine &Diags, const LangOptions &LangOpts, const TargetInfo *Target) argument
/freebsd-10.0-release/contrib/mtree/
H A Dspecspec.c52 #define FM(a, b, c, d) \ macro
166 if (FM(n1, n2, F_TIME, st_mtimespec))
/freebsd-10.0-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-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp842 FactID addLock(FactManager& FM, const SExpr& M, const LockData& L) { argument
843 FactID F = FM.newLock(M, L);
848 bool removeLock(FactManager& FM, const SExpr& M) { argument
854 if (FM[FactIDs[i]].MutID.matches(M)) {
860 if (FM[FactIDs[n-1]].MutID.matches(M)) {
867 LockData* findLock(FactManager &FM, const SExpr &M) const { argument
869 const SExpr &Exp = FM[*I].MutID;
871 return &FM[*I].LDat;
876 LockData* findLockUniv(FactManager &FM, const SExpr &M) const { argument
878 const SExpr &Exp = FM[*
885 findPartialMatch(FactManager &FM, const SExpr &M) const argument
[all...]
/freebsd-10.0-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-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp874 FallthroughMapper FM(S);
875 FM.TraverseStmt(AC.getBody());
877 if (!FM.foundSwitchStatements())
880 if (PerFunction && FM.getFallthroughStmts().empty())
888 FM.fillReachableBlocks(Cfg);
899 if (!FM.checkFallThroughIntoBlock(*B, AnnotatedCnt))
940 const FallthroughMapper::AttrStmts &Fallthroughs = FM.getFallthroughStmts();
/freebsd-10.0-release/sys/pci/
H A Dncrreg.h153 #define FM 0x02 /* mod: fetch pin mode */ macro
/freebsd-10.0-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-10.0-release/usr.bin/calendar/calendars/
H A Dcalendar.history16 01/05 The FCC hears the first demonstration of FM radio, 1940
/freebsd-10.0-release/sys/dev/sym/
H A Dsym_defs.h370 #define FM 0x02 /* mod: fetch pin mode */ macro
/freebsd-10.0-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
/freebsd-10.0-release/sys/dev/cxgbe/firmware/
H A Dt5fw-1.9.12.0.bin.uu6660 gPTxTBAAEBgwADAECgsb/wIAAgB2ftCxM/RNQCXYAjjgG/FM+vFKHYAEOqBbjzQU8HMd8Ur8HFAg

Completed in 245 milliseconds