Searched refs:SM (Results 151 - 175 of 243) sorted by relevance

12345678910

/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp314 ProgramStateManager &SM = getStateManager();
315 SValBuilder &svalBuilder = SM.getSValBuilder();
346 ConstraintManager &CM = SM.getConstraintManager();
H A DBugReporterVisitors.cpp1578 SourceManager &SM = BRC.getSourceManager(); local
1579 FullSourceLoc Loc = BR.getLocation(SM).asLocation();
1582 if (SM.getFilename(Loc).endswith("sys/queue.h")) {
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp33 ErrorInfo = SM.GetMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
38 SM.PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
166 : CurBuf(StartBuf), ErrorInfo(Err), SM(sm), Context(C), APFloatVal(0.0) {
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp630 std::unique_ptr<Modifier> SM(new StoreModifier(BB, &PT, &R));
639 Modifiers.push_back(SM.get());
658 SM->ActN(5); // Throw in a few stores.
/external/clang/lib/Sema/
H A DSemaChecking.cpp4126 SourceManager &SM = getSourceManager(); local
4128 if (SM.isMacroArgExpansion(SL)) {
4129 ReadableName = Lexer::getImmediateMacroName(SL, SM, LangOpts);
4130 SL = SM.getSpellingLoc(SL);
4131 DSR = SourceRange(SM.getSpellingLoc(DSR.getBegin()),
4132 SM.getSpellingLoc(DSR.getEnd()));
4133 SSR = SourceRange(SM.getSpellingLoc(SSR.getBegin()),
4134 SM.getSpellingLoc(SSR.getEnd()));
4380 SourceManager &SM = getSourceManager(); local
4383 if (SM
[all...]
H A DSemaExprObjC.cpp2001 SourceManager &SM = S.SourceMgr;
2002 edit::Commit ECommit(SM, S.LangOpts);
2021 Edit.getInsertFromRange(SM),
2025 Builder.AddFixItHint(FixItHint::CreateRemoval(Edit.getFileRange(SM)));
3064 SourceManager &SM = S.getSourceManager(); local
3065 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
3082 SourceManager &SM = S.getSourceManager(); local
3083 char PrevChar = *SM.getCharacterData(range.getBegin().getLocWithOffset(-1));
H A DSemaObjCProperty.cpp279 SourceManager &SM = Context.getSourceManager();
280 std::pair<FileID, unsigned> locInfo = SM.getDecomposedLoc(LParenLoc);
283 StringRef file = SM.getBufferData(locInfo.first, &invalidTemp);
289 Lexer lexer(SM.getLocForStartOfFile(locInfo.first),
/external/clang/include/clang/Lex/
H A DPreprocessingRecord.h367 explicit PreprocessingRecord(SourceManager &SM);
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h265 virtual PathDiagnosticLocation getLocation(const SourceManager &SM) const;
/external/clang/lib/Lex/
H A DPPDirectives.cpp1003 SourceManager &SM = PP.getSourceManager(); local
1007 SM.getDecomposedExpansionLoc(FlagTok.getLocation()).first;
1008 PresumedLoc PLoc = SM.getPresumedLoc(FlagTok.getLocation());
1016 SM.getDecomposedExpansionLoc(IncLoc).first != CurFileID) {
/external/llvm/lib/Support/
H A DSourceMgr.cpp244 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
/external/clang/include/clang/AST/
H A DDeclBase.h993 SourceManager &SM; member in class:clang::PrettyStackTraceDecl
998 : TheDecl(theDecl), Loc(L), SM(sm), Message(Msg) {}
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h216 const SourceManager &SM = local
218 return SM.isInSystemHeader(D->getLocation());
H A DProgramState.h678 StoreManager &SM = *getStateManager().StoreMgr; local
680 Base = SM.getLValueField(cast<FieldDecl>(I), Base);
/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp840 SourceManager &SM = CGM.getContext().getSourceManager(); local
841 loadRegionCounts(PGOReader, SM.isInMainFile(D->getLocation()));
H A DCodeGenModule.cpp1109 SourceManager &SM = getContext().getSourceManager(); local
1110 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
1113 return EmitAnnotationString(SM.getBufferName(Loc));
1117 SourceManager &SM = getContext().getSourceManager(); local
1118 PresumedLoc PLoc = SM.getPresumedLoc(L);
1120 SM.getExpansionLineNumber(L);
/external/clang/lib/AST/
H A DExpr.cpp968 getLocationOfByte(unsigned ByteNo, const SourceManager &SM, argument
983 SourceLocation StrTokSpellingLoc = SM.getSpellingLoc(StrTokLoc);
986 std::pair<FileID, unsigned> LocInfo =SM.getDecomposedLoc(StrTokSpellingLoc);
988 StringRef Buffer = SM.getBufferData(LocInfo.first, &Invalid);
995 Lexer TheLexer(SM.getLocForStartOfFile(LocInfo.first), Features,
1001 StringLiteralParser SLP(TheTok, SM, Features, Target);
1011 return Lexer::AdvanceToTokenCharacter(StrTokLoc, Offset, SM, Features);
/external/clang/lib/Parse/
H A DParseExpr.cpp280 const SourceManager &SM = PP.getSourceManager(); local
285 SM.getCharacterData(FILoc.getLocWithOffset(-1), &IsInvalid);
288 SM.getCharacterData(FILoc.getLocWithOffset(-2), &IsInvalid);
H A DParseExprCXX.cpp44 SourceManager &SM = PP.getSourceManager(); local
45 SourceLocation FirstLoc = SM.getSpellingLoc(First.getLocation());
47 return FirstEnd == SM.getSpellingLoc(Second.getLocation());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp1782 PathDiagnosticLocation getLocation(const SourceManager &SM) const override {
2247 SourceManager& SM = BRC.getSourceManager(); local
2253 PathDiagnosticLocation L = PathDiagnosticLocation::createEndOfPath(LeakN, SM);
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp644 SM.serializeToStackMapSection();
/external/clang/lib/Serialization/
H A DASTWriter.cpp1237 SourceManager &SM = Context.getSourceManager(); local
1238 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
1254 Record.push_back(SM.getMainFileID().getOpaqueValue());
1259 Record.push_back(SM.getMainFileID().getOpaqueValue());
4904 SourceManager &SM = Context->getSourceManager();
4905 SourceLocation FileLoc = SM.getFileLoc(Loc);
4906 assert(SM.isLocalSourceLocation(FileLoc));
4909 std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);
4912 assert(SM
[all...]
/external/llvm/lib/CodeGen/
H A DSplitKit.cpp341 void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) { argument
343 SpillMode = SM;
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfGraphicsStateDictionary_autogen.cpp381 double SkPdfGraphicsStateDictionary::SM(SkPdfNativeDoc* doc) { function in class:SkPdfGraphicsStateDictionary
382 SkPdfNativeObject* ret = get("SM", "");
390 return get("SM", "") != NULL;
H A DSkPdfGraphicsStateDictionary_autogen.h593 double SM(SkPdfNativeDoc* doc);

Completed in 1002 milliseconds

12345678910