HomeSort by relevance Sort by last modified time
    Searched refs:Loc (Results 26 - 50 of 431) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/TableGen/
Error.h 23 void PrintWarning(const char *Loc, const Twine &Msg);
27 void PrintError(const char *Loc, const Twine &Msg);
SetTheory.h 77 ArrayRef<SMLoc> Loc) =0;
124 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
128 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) {
130 evaluate(*begin++, Elts, Loc);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 88 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
91 return AliasAnalysis::pointsToConstantMemory(Loc, OrLocal);
95 const Value *S = StripPointerCastsAndObjCCalls(Loc.Ptr);
96 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
133 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc) {
135 return AliasAnalysis::getModRefInfo(CS, Loc);
154 return AliasAnalysis::getModRefInfo(CS, Loc);
  /external/clang/lib/AST/
TypeLoc.cpp 111 SourceLocation Loc) {
118 TLCasted.initializeLocal(Context, Loc); \
222 /// \brief Determines if the given type loc corresponds to a
316 SourceLocation Loc) {
317 setElaboratedKeywordLoc(Loc);
319 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
324 SourceLocation Loc) {
325 setElaboratedKeywordLoc(Loc);
327 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
329 setNameLoc(Loc);
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 52 Location(SourceLocation Loc) :
53 Kind(LK_Source), SourceLoc(Loc) {}
54 Location(ModuleLocation Loc) :
55 Kind(LK_Module), ModuleLoc(Loc) {}
56 Location(MemoryLocation Loc) :
57 Kind(LK_Memory), MemoryLoc(Loc) {}
87 Location getFunctionLocation(uptr Loc, const char **FName);
124 Location Loc;
193 Diag(Location Loc, DiagLevel Level, const char *Message)
194 : Loc(Loc), Level(Level), Message(Message), NumArgs(0), NumRanges(0) {
    [all...]
ubsan_handlers_cxx.cc 36 SourceLocation Loc = Data->Loc.acquire();
37 if (Loc.isDisabled())
40 Diag(Loc, DL_Error,
ubsan_handlers_cxx.h 22 SourceLocation Loc;
  /external/clang/include/clang/Lex/
MultipleIncludeOpt.h 79 void SetDefinedMacro(IdentifierInfo *M, SourceLocation Loc) {
81 DefinedLoc = Loc;
123 void EnterTopLevelIfndef(const IdentifierInfo *M, SourceLocation Loc) {
139 MacroLoc = Loc;
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 91 StringRef CheckerContext::getMacroNameOrSpelling(SourceLocation &Loc) {
92 if (Loc.isMacroID())
93 return Lexer::getImmediateMacroName(Loc, getSourceManager(),
96 return Lexer::getSpelling(Loc, buf, getSourceManager(), getLangOpts());
  /external/clang/lib/Basic/
SourceManager.cpp 86 SourceLocation Loc,
125 Diag.Report(Loc, diag::err_cannot_open_file)
141 Diag.Report(Loc, diag::err_file_modified)
167 Diag.Report(Loc, diag::err_unsupported_bom)
246 // Get the include loc of the last entries' include loc as our include loc.
294 /// specified by Loc. If FilenameID is -1, it is considered to be
296 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
298 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 41 Value(const MDNode *Var, MachineLocation Loc)
42 : Variable(Var), EntryKind(E_Location), Loc(Loc) {
60 MachineLocation Loc;
68 return Loc == other.Loc;
86 MachineLocation getLoc() const { return Loc; }
106 /// share the same Loc/Constant and if Next immediately follows this
  /external/clang/lib/Sema/
DeclSpec.cpp 34 static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc,
36 return D.Report(Loc, DiagID);
179 I.Loc = LocalRangeBegin;
469 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc,
507 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID, Policy);
525 StorageClassSpecLoc = Loc;
530 bool DeclSpec::SetStorageClassSpecThread(TSCS TSC, SourceLocation Loc,
537 ThreadStorageClassSpecLoc = Loc;
544 bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc,
551 TSWLoc = Loc;
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 97 std::list<clang::Stmt*> &StmtList, clang::SourceLocation Loc) {
112 C, llvm::makeArrayRef(CompoundStmtList, CompoundStmtCount), Loc, Loc);
354 clang::SourceLocation Loc) {
383 Loc);
413 Loc);
433 clang::SourceLocation Loc);
440 clang::SourceLocation Loc) {
484 Loc,
492 StmtArray[StmtCtr++] = new(C) clang::DeclStmt(DGR, Loc, Loc)
1500 clang::SourceLocation loc; local
    [all...]
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 165 static bool isRewritable(SourceLocation Loc) {
166 return Loc.isFileID();
189 /// using the indentation of the source line in position \p Loc.
190 bool InsertText(SourceLocation Loc, StringRef Str,
198 bool InsertTextAfter(SourceLocation Loc, StringRef Str) {
199 return InsertText(Loc, Str);
204 bool InsertTextAfterToken(SourceLocation Loc, StringRef Str);
211 bool InsertTextBefore(SourceLocation Loc, StringRef Str) {
212 return InsertText(Loc, Str, false);
295 unsigned getLocationOffsetAndFileID(SourceLocation Loc, FileID &FID) const
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; }
56 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
103 void setAtCatchLoc(SourceLocation Loc) { AtCatchLoc = Loc; }
105 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
141 void setAtFinallyLoc(SourceLocation Loc) { AtFinallyLoc = Loc; }
    [all...]
  /external/clang/tools/libclang/
CXSourceLocation.cpp 212 const SourceLocation Loc =
214 if (Loc.isInvalid())
219 return SM.isInSystemHeader(Loc);
223 const SourceLocation Loc =
225 if (Loc.isInvalid())
230 return SM.isWrittenInMainFile(Loc);
244 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data);
246 if (!location.ptr_data[0] || Loc.isInvalid()) {
253 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc);
287 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data)
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 43 /// \param Loc the location of the type.
44 ParsedTemplateArgument(KindType Kind, void *Arg, SourceLocation Loc)
45 : Kind(Kind), Arg(Arg), Loc(Loc) { }
61 SS(SS), Loc(TemplateLoc), EllipsisLoc() { }
88 SourceLocation getLocation() const { return Loc; }
126 SourceLocation Loc;
SemaFixItUtils.h 38 SourceLocation Loc,
55 SourceLocation Loc,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
compare.hpp 56 \param Loc locales used for comparison
58 is_iequal( const std::locale& Loc=std::locale() ) :
59 m_Loc( Loc ) {}
109 \param Loc locales used for comparison
111 is_iless( const std::locale& Loc=std::locale() ) :
112 m_Loc( Loc ) {}
162 \param Loc locales used for comparison
164 is_not_igreater( const std::locale& Loc=std::locale() ) :
165 m_Loc( Loc ) {}
  /external/llvm/include/llvm/Support/
SourceMgr.h 138 unsigned FindBufferContainingLoc(SMLoc Loc) const;
142 unsigned FindLineNumber(SMLoc Loc, unsigned BufferID = 0) const {
143 return getLineAndColumn(Loc, BufferID).first;
148 std::pair<unsigned, unsigned> getLineAndColumn(SMLoc Loc,
155 void PrintMessage(raw_ostream &OS, SMLoc Loc, DiagKind Kind,
162 void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
179 SMDiagnostic GetMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
201 SMFixIt(SMLoc Loc, const Twine &Insertion)
202 : Range(Loc, Loc), Text(Insertion.str())
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 17 class Loc;
74 typedef Loc AskDomain_t;
117 struct DomainTraits<Loc>
121 typedef Loc Domain_t;
122 typedef Loc AskDomain_t;
123 typedef Loc MultResult_t;
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 17 class Loc;
74 typedef Loc AskDomain_t;
117 struct DomainTraits<Loc>
121 typedef Loc Domain_t;
122 typedef Loc AskDomain_t;
123 typedef Loc MultResult_t;
145 class Loc : public Domain<DomainTraits<Loc> >
148 explicit Loc(const int &a) : Domain<DomainTraits<Loc> >() {
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 142 /// getLocation - Fill in Loc with information about the memory reference by
216 virtual bool pointsToConstantMemory(const Location &Loc,
362 const Location &Loc) {
364 case Instruction::VAArg: return getModRefInfo((const VAArgInst*)I, Loc);
365 case Instruction::Load: return getModRefInfo((const LoadInst*)I, Loc);
366 case Instruction::Store: return getModRefInfo((const StoreInst*)I, Loc);
367 case Instruction::Fence: return getModRefInfo((const FenceInst*)I, Loc);
369 return getModRefInfo((const AtomicCmpXchgInst*)I, Loc);
371 return getModRefInfo((const AtomicRMWInst*)I, Loc);
372 case Instruction::Call: return getModRefInfo((const CallInst*)I, Loc);
    [all...]
LibCallAliasAnalysis.h 41 const Location &Loc) override;
69 const Location &Loc);
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 127 void FileChanged(SourceLocation Loc, FileChangeReason Reason,
135 void Ident(SourceLocation Loc, const std::string &str) override;
136 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
138 void PragmaDebug(SourceLocation Loc, StringRef DebugType) override;
139 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override;
140 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override;
141 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
143 void PragmaWarning(SourceLocation Loc, StringRef WarningSpec,
145 void PragmaWarningPush(SourceLocation Loc, int Level) override;
146 void PragmaWarningPop(SourceLocation Loc) override
    [all...]

Completed in 675 milliseconds

12 3 4 5 6 7 8 91011>>