Home
last modified time | relevance | path

Searched defs:Loc (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/external/clang/include/clang/Lex/
DPPCallbacks.h156 virtual void Ident(SourceLocation Loc, const std::string &str) { in Ident()
160 virtual void PragmaDirective(SourceLocation Loc, in PragmaDirective()
165 virtual void PragmaComment(SourceLocation Loc, const IdentifierInfo *Kind, in PragmaComment()
171 virtual void PragmaDetectMismatch(SourceLocation Loc, in PragmaDetectMismatch()
179 virtual void PragmaDebug(SourceLocation Loc, StringRef DebugType) { in PragmaDebug()
199 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace, in PragmaMessage()
205 virtual void PragmaDiagnosticPush(SourceLocation Loc, in PragmaDiagnosticPush()
211 virtual void PragmaDiagnosticPop(SourceLocation Loc, in PragmaDiagnosticPop()
216 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, in PragmaDiagnostic()
227 virtual void PragmaWarning(SourceLocation Loc, StringRef WarningSpec, in PragmaWarning()
[all …]
DPPConditionalDirectiveRecord.h32 SourceLocation Loc; variable
36 CondDirectiveLoc(SourceLocation Loc, SourceLocation RegionLoc) in CondDirectiveLoc()
/external/clang/include/clang/AST/
DTypeLoc.h159 void initialize(ASTContext &Context, SourceLocation Loc) const { in initialize()
248 void initializeLocal(ASTContext &Context, SourceLocation Loc) { in initializeLocal()
279 if (QualifiedTypeLoc Loc = getAs<QualifiedTypeLoc>()) in getUnqualifiedLoc() local
463 void setNameLoc(SourceLocation Loc) { in setNameLoc()
469 void initializeLocal(ASTContext &Context, SourceLocation Loc) { in initializeLocal()
492 void setBuiltinLoc(SourceLocation Loc) { in setBuiltinLoc()
573 void initializeLocal(ASTContext &Context, SourceLocation Loc) { in initializeLocal()
826 void setLAngleLoc(SourceLocation Loc) { in setLAngleLoc()
833 void setRAngleLoc(SourceLocation Loc) { in setRAngleLoc()
845 void setProtocolLoc(unsigned i, SourceLocation Loc) { in setProtocolLoc()
[all …]
DStmtObjC.h54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; } in setForLoc()
56 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; } in setRParenLoc()
103 void setAtCatchLoc(SourceLocation Loc) { AtCatchLoc = Loc; } in setAtCatchLoc()
105 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; } in setRParenLoc()
142 void setAtFinallyLoc(SourceLocation Loc) { AtFinallyLoc = Loc; } in setAtFinallyLoc()
194 void setAtTryLoc(SourceLocation Loc) { AtTryLoc = Loc; } in setAtTryLoc()
280 void setAtSynchronizedLoc(SourceLocation Loc) { AtSynchronizedLoc = Loc; } in setAtSynchronizedLoc()
330 void setThrowLoc(SourceLocation Loc) { AtThrowLoc = Loc; } in setThrowLoc()
364 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; } in setAtLoc()
/external/compiler-rt/lib/ubsan/
Dubsan_handlers.h21 SourceLocation Loc; member
43 SourceLocation Loc; member
64 SourceLocation Loc; member
75 SourceLocation Loc; member
84 SourceLocation Loc; member
93 SourceLocation Loc; member
110 SourceLocation Loc; member
118 SourceLocation Loc; member
127 SourceLocation Loc; member
135 SourceLocation Loc; member
Dubsan_handlers.cc43 Location Loc = Data->Loc.acquire(); in handleTypeMismatchImpl() local
89 SourceLocation Loc = Data->Loc.acquire(); in handleIntegerOverflowImpl() local
118 SourceLocation Loc = Data->Loc.acquire(); in handleNegateOverflowImpl() local
149 SourceLocation Loc = Data->Loc.acquire(); in handleDivremOverflowImpl() local
181 SourceLocation Loc = Data->Loc.acquire(); in handleShiftOutOfBoundsImpl() local
220 SourceLocation Loc = Data->Loc.acquire(); in handleOutOfBoundsImpl() local
270 SourceLocation Loc = Data->Loc.acquire(); in handleVLABoundNotPositive() local
297 Location Loc = CallerLoc; in handleFloatCastOverflow() local
320 SourceLocation Loc = Data->Loc.acquire(); in handleLoadInvalidValue() local
378 SourceLocation Loc = Data->Loc.acquire(); in handleNonNullReturn() local
[all …]
/external/clang/lib/Lex/
DPPConditionalDirectiveRecord.cpp78 void PPConditionalDirectiveRecord::If(SourceLocation Loc, in If()
85 void PPConditionalDirectiveRecord::Ifdef(SourceLocation Loc, in Ifdef()
92 void PPConditionalDirectiveRecord::Ifndef(SourceLocation Loc, in Ifndef()
99 void PPConditionalDirectiveRecord::Elif(SourceLocation Loc, in Elif()
107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, in Else()
113 void PPConditionalDirectiveRecord::Endif(SourceLocation Loc, in Endif()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafety.h82 virtual void handleInvalidLockExp(StringRef Kind, SourceLocation Loc) {} in handleInvalidLockExp()
91 SourceLocation Loc) {} in handleUnmatchedUnlock()
104 SourceLocation Loc) {} in handleIncorrectUnlockKind()
112 SourceLocation Loc) {} in handleDoubleLock()
152 SourceLocation Loc) {} in handleNoMutexHeld()
176 SourceLocation Loc) {} in handleNegativeNotHeld()
186 Name LockName, SourceLocation Loc) {} in handleFunExcludesLock()
191 Name L2Name, SourceLocation Loc) {} in handleLockAcquiredBefore()
194 virtual void handleBeforeAfterCycle(Name L1Name, SourceLocation Loc) {} in handleBeforeAfterCycle()
DConsumed.h59 virtual void warnLoopStateMismatch(SourceLocation Loc, in warnLoopStateMismatch()
71 virtual void warnParamReturnTypestateMismatch(SourceLocation Loc, in warnParamReturnTypestateMismatch()
88 virtual void warnReturnTypestateForUnconsumableType(SourceLocation Loc, in warnReturnTypestateForUnconsumableType()
100 virtual void warnReturnTypestateMismatch(SourceLocation Loc, in warnReturnTypestateMismatch()
113 SourceLocation Loc) {} in warnUseOfTempInInvalidState()
128 SourceLocation Loc) {} in warnUseInInvalidState()
/external/clang/lib/Sema/
DDeclSpec.cpp35 static DiagnosticBuilder Diag(DiagnosticsEngine &D, SourceLocation Loc, in Diag()
494 bool DeclSpec::SetStorageClassSpec(Sema &S, SCS SC, SourceLocation Loc, in SetStorageClassSpec()
555 bool DeclSpec::SetStorageClassSpecThread(TSCS TSC, SourceLocation Loc, in SetStorageClassSpecThread()
569 bool DeclSpec::SetTypeSpecWidth(TSW W, SourceLocation Loc, in SetTypeSpecWidth()
584 bool DeclSpec::SetTypeSpecComplex(TSC C, SourceLocation Loc, in SetTypeSpecComplex()
594 bool DeclSpec::SetTypeSpecSign(TSS S, SourceLocation Loc, in SetTypeSpecSign()
604 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType()
633 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType()
653 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType()
683 bool DeclSpec::SetTypeSpecType(TST T, SourceLocation Loc, in SetTypeSpecType()
[all …]
DSemaFixItUtils.cpp26 SourceLocation Loc, in compareTypesSimple()
163 static bool isMacroDefined(const Sema &S, SourceLocation Loc, StringRef Name) { in isMacroDefined()
172 const Type &T, SourceLocation Loc, const Sema &S) { in getScalarZeroExpressionForType()
/external/clang/include/clang/Sema/
DTemplateDeduction.h38 SourceLocation Loc; variable
51 TemplateDeductionInfo(SourceLocation Loc) in TemplateDeductionInfo()
89 void addSFINAEDiagnostic(SourceLocation Loc, PartialDiagnostic PD) { in addSFINAEDiagnostic()
99 void addSuppressedDiagnostic(SourceLocation Loc, in addSuppressedDiagnostic()
248 SourceLocation Loc; variable
257 TemplateSpecCandidateSet(SourceLocation Loc) : Loc(Loc) {} in TemplateSpecCandidateSet()
282 void NoteCandidates(Sema &S, SourceLocation Loc) const { in NoteCandidates()
DPrettyDeclStackTrace.h34 SourceLocation Loc; variable
38 PrettyDeclStackTraceEntry(Sema &S, Decl *D, SourceLocation Loc, in PrettyDeclStackTraceEntry()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLoc.cpp30 for (unsigned char Loc : E.Loc) { in dump() local
42 LocationList &Loc = Locations.back(); in parse() local
82 LocationList &Loc = Locations.back(); in parse() local
121 for (unsigned char Loc : E.Loc) in dump() local
/external/clang/lib/Frontend/
DDiagnosticRenderer.cpp42 static StringRef getImmediateMacroName(SourceLocation Loc, in getImmediateMacroName()
123 void DiagnosticRenderer::emitDiagnostic(SourceLocation Loc, in emitDiagnostic()
210 void DiagnosticRenderer::emitIncludeStack(SourceLocation Loc, in emitIncludeStack()
235 void DiagnosticRenderer::emitIncludeStackRecursively(SourceLocation Loc, in emitIncludeStackRecursively()
264 void DiagnosticRenderer::emitImportStack(SourceLocation Loc, in emitImportStack()
278 void DiagnosticRenderer::emitImportStackRecursively(SourceLocation Loc, in emitImportStackRecursively()
387 void DiagnosticRenderer::emitCaret(SourceLocation Loc, in emitCaret()
409 void DiagnosticRenderer::emitMacroExpansions(SourceLocation Loc, in emitMacroExpansions()
477 void DiagnosticNoteRenderer::emitIncludeLocation(SourceLocation Loc, in emitIncludeLocation()
488 void DiagnosticNoteRenderer::emitImportLocation(SourceLocation Loc, in emitImportLocation()
[all …]
DPrintPreprocessedOutput.cpp150 bool MoveToLine(SourceLocation Loc) { in MoveToLine()
249 void PrintPPOutputPPCallbacks::FileChanged(SourceLocation Loc, in FileChanged()
341 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, const std::string &S) { in Ident()
387 void PrintPPOutputPPCallbacks::PragmaMessage(SourceLocation Loc, in PragmaMessage()
415 void PrintPPOutputPPCallbacks::PragmaDebug(SourceLocation Loc, in PragmaDebug()
427 PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) { in PragmaDiagnosticPush()
435 PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) { in PragmaDiagnosticPop()
442 void PrintPPOutputPPCallbacks::PragmaDiagnostic(SourceLocation Loc, in PragmaDiagnostic()
470 void PrintPPOutputPPCallbacks::PragmaWarning(SourceLocation Loc, in PragmaWarning()
482 void PrintPPOutputPPCallbacks::PragmaWarningPush(SourceLocation Loc, in PragmaWarningPush()
[all …]
/external/llvm/lib/Analysis/
DAliasAnalysis.cpp57 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory()
105 const Location &Loc) { in getModRefInfo()
343 AliasAnalysis::getModRefInfo(const LoadInst *L, const Location &Loc) { in getModRefInfo()
358 AliasAnalysis::getModRefInfo(const StoreInst *S, const Location &Loc) { in getModRefInfo()
381 AliasAnalysis::getModRefInfo(const VAArgInst *V, const Location &Loc) { in getModRefInfo()
397 AliasAnalysis::getModRefInfo(const AtomicCmpXchgInst *CX, const Location &Loc) { in getModRefInfo()
410 AliasAnalysis::getModRefInfo(const AtomicRMWInst *RMW, const Location &Loc) { in getModRefInfo()
510 const Location &Loc) { in canBasicBlockModify()
521 const Location &Loc, in canInstructionRangeModRef()
/external/clang/lib/Parse/
DParseOpenMP.cpp68 SourceLocation Loc = ConsumeToken(); in ParseOpenMPDeclarativeDirective() local
144 SourceLocation Loc = ConsumeToken(), EndLoc; in ParseOpenMPDeclarativeOrExecutableDirective() local
487 SourceLocation Loc = ConsumeToken(); in ParseOpenMPSingleExprClause() local
516 SourceLocation Loc = Tok.getLocation(); in ParseOpenMPSimpleClause() local
556 SourceLocation Loc = Tok.getLocation(); in ParseOpenMPClause() local
570 SourceLocation Loc = ConsumeToken(); in ParseOpenMPSingleExprWithArgClause() local
674 SourceLocation Loc = Tok.getLocation(); in ParseOpenMPVarListClause() local
/external/llvm/lib/TableGen/
DError.cpp25 static void PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind, in PrintMessage()
45 void PrintWarning(const char *Loc, const Twine &Msg) { in PrintWarning()
57 void PrintError(const char *Loc, const Twine &Msg) { in PrintError()
/external/llvm/lib/AsmParser/
DLLParser.h59 LLLexer::LocTy Loc; member
102 SMLoc Loc; member
200 bool ParseUInt32(unsigned &Val, LocTy &Loc) { in ParseUInt32()
205 bool ParseUInt64(uint64_t &Val, LocTy &Loc) { in ParseUInt64()
347 bool ParseValue(Type *Ty, Value *&V, LocTy &Loc, in ParseValue()
357 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { in ParseTypeAndValue()
364 LocTy Loc; in ParseTypeAndBasicBlock() local
370 LocTy Loc; member
412 LocTy Loc; member
/external/clang/lib/AST/
DTypeLoc.cpp111 SourceLocation Loc) { in initializeImpl()
316 SourceLocation Loc) { in initializeLocal()
324 SourceLocation Loc) { in initializeLocal()
332 SourceLocation Loc) { in initializeLocal()
342 SourceLocation Loc) { in initializeLocal()
364 SourceLocation Loc) { in initializeArgLocs()
/external/llvm/tools/llvm-mcmarkup/
Dllvm-mcmarkup.cpp61 MarkupTag(StringRef n, StringRef m, SMLoc Loc) in MarkupTag()
83 void MarkupParser::FatalError(SMLoc Loc, StringRef Msg) { in FatalError()
126 SMLoc Loc = SMLoc::getFromPointer(Start - 1); in parseTag() local
176 SMLoc Loc = SMLoc::getFromPointer(Lex.getPosition() - 1); in parseMCMarkup() local
/external/clang/tools/libclang/
DCXSourceLocation.cpp212 const SourceLocation Loc = in clang_Location_isInSystemHeader() local
223 const SourceLocation Loc = in clang_Location_isFromMainFile() local
244 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getExpansionLocation() local
287 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getPresumedLocation() local
328 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getSpellingLocation() local
366 SourceLocation Loc = SourceLocation::getFromRawEncoding(location.int_data); in clang_getFileLocation() local
DCXSourceLocation.h31 SourceLocation Loc) { in translateSourceLocation()
42 SourceLocation Loc) { in translateSourceLocation()
/external/clang/include/clang/Rewrite/Core/
DRewriter.h69 static bool isRewritable(SourceLocation Loc) { in isRewritable()
102 bool InsertTextAfter(SourceLocation Loc, StringRef Str) { in InsertTextAfter()
115 bool InsertTextBefore(SourceLocation Loc, StringRef Str) { in InsertTextBefore()

12345678910>>...14