Searched defs:FM (Results 1 - 11 of 11) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp43 FIDMap FM; local
50 AddFID(FM, Fids, SM, D.getLocation());
54 AddFID(FM, Fids, SM, RI->getBegin());
55 AddFID(FM, Fids, SM, RI->getEnd());
103 EmitLocation(o, SM, D.getLocation(), FM, 2);
113 FM, 4);
/external/clang/test/Index/
H A Dcomplete-macro-args.c22 #define FM(x) x macro
24 FM(p->x, a);
/external/clang/include/clang/Basic/
H A DPlistSupport.h91 SourceLocation L, const FIDMap &FM, unsigned indent) {
102 EmitInteger(o, GetFID(FM, SM, Loc)) << '\n';
107 CharSourceRange R, const FIDMap &FM, unsigned indent) {
112 EmitLocation(o, SM, R.getBegin(), FM, indent + 1);
113 EmitLocation(o, SM, R.getEnd(), FM, indent + 1);
90 EmitLocation(raw_ostream &o, const SourceManager &SM, SourceLocation L, const FIDMap &FM, unsigned indent) argument
106 EmitRange(raw_ostream &o, const SourceManager &SM, CharSourceRange R, const FIDMap &FM, unsigned indent) argument
/external/clang/lib/Analysis/
H A DThreadSafety.cpp190 FactID addLock(FactManager &FM, std::unique_ptr<FactEntry> Entry) { argument
191 FactID F = FM.newFact(std::move(Entry));
196 bool removeLock(FactManager& FM, const CapabilityExpr &CapE) { argument
202 if (FM[FactIDs[i]].matches(CapE)) {
208 if (FM[FactIDs[n-1]].matches(CapE)) {
215 iterator findLockIter(FactManager &FM, const CapabilityExpr &CapE) { argument
217 return FM[ID].matches(CapE);
221 FactEntry *findLock(FactManager &FM, const CapabilityExpr &CapE) const { argument
223 return FM[ID].matches(CapE);
225 return I != end() ? &FM[*
228 findLockUniv(FactManager &FM, const CapabilityExpr &CapE) const argument
235 findPartialMatch(FactManager &FM, const CapabilityExpr &CapE) const argument
243 containsMutexDecl(FactManager &FM, const ValueDecl* Vd) const argument
[all...]
/external/clang/lib/Lex/
H A DHeaderMap.cpp79 const HeaderMap *HeaderMap::Create(const FileEntry *FE, FileManager &FM) { argument
84 auto FileBuffer = FM.getBufferForFile(FE);
199 StringRef Filename, FileManager &FM) const {
206 return FM.getFile(Dest);
H A DPPLexerChange.cpp232 static void computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, argument
240 if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) {
/external/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp85 const FIDMap& FM,
111 EmitRange(o, SM, Lexer::getAsCharRange(StartEdge, SM, LangOpts), FM,
116 EmitRange(o, SM, Lexer::getAsCharRange(EndEdge, SM, LangOpts), FM,
138 const FIDMap& FM,
158 EmitLocation(o, SM, L, FM, indent);
170 FM, indent + 1);
198 const FIDMap& FM, const SourceManager &SM,
207 const FIDMap& FM, const SourceManager &SM,
216 ReportPiece(o, *callEnter, FM, SM, LangOpts, indent, depth, true,
225 ReportPiece(o, *callEnterWithinCaller, FM, S
83 ReportControlFlow(raw_ostream &o, const PathDiagnosticControlFlowPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent) argument
137 ReportEvent(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth, bool isKeyEvent = false) argument
205 ReportCall(raw_ostream &o, const PathDiagnosticCallPiece &P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
240 ReportMacro(raw_ostream &o, const PathDiagnosticMacroPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts, unsigned indent, unsigned depth) argument
253 ReportDiag(raw_ostream &o, const PathDiagnosticPiece& P, const FIDMap& FM, const SourceManager &SM, const LangOptions &LangOpts) argument
259 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
293 FIDMap FM; local
[all...]
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp140 FileManager &FM = Headers.getFileMgr(); local
155 if (const DirectoryEntry *DE = FM.getDirectory(MappedPathStr)) {
164 if (const FileEntry *FE = FM.getFile(MappedPathStr)) {
/external/llvm/lib/IR/
H A DInstructions.cpp1954 FastMathFlags FM = getFastMathFlags(); local
1955 FM &= FP->getFastMathFlags();
1956 copyFastMathFlags(FM);
/external/valgrind/VEX/priv/
H A Dhost_ppc_defs.c3229 static UChar* mkFormXFL ( UChar* p, UInt FM, UInt freg, UInt dfp_rm, argument
3233 vassert(FM < 0x100);
3235 theInstr = ((63<<26) | (FM<<17) | (dfp_rm<<16) | (freg<<11) | (711<<1));
H A Dguest_ppc_toIR.c9437 UChar FM = toUChar( IFIELD(theInstr, 17, 8) ); local
9463 DIP("mtfsf%s %d,fr%u (L=1)\n", flag_rC ? ".":"", FM, frB_addr);
9467 DIP("mtfsf%s %d,fr%u\n", flag_rC ? ".":"", FM, frB_addr);
9468 // Build 32bit mask from FM:
9471 if ((FM & (1<<(7-i))) == 1) {

Completed in 3524 milliseconds