Searched refs:Location (Results 51 - 75 of 116) sorted by relevance

12345

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp494 Optional<DWARFFormValue> Location = find(Attr);
495 if (!Location)
499 if (Optional<uint64_t> Off = Location->getAsSectionOffset()) {
502 if (Location->getForm() == DW_FORM_loclistx) {
512 if (Optional<ArrayRef<uint8_t>> Expr = Location->getAsBlock()) {
520 dwarf::FormEncodingString(Location->getForm()).data());
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h137 /// Use the "Data" and "Location" fields instead.
154 SourceLocation Location; member in class:clang::ento::CallEvent
176 Data(Original.Data), Location(Original.Location) {}
786 Location = Trigger->getEndLoc();
794 SourceRange getSourceRange() const override { return Location; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfo.cpp891 unsigned LLVMDILocationGetLine(LLVMMetadataRef Location) { argument
892 return unwrapDI<DILocation>(Location)->getLine();
895 unsigned LLVMDILocationGetColumn(LLVMMetadataRef Location) { argument
896 return unwrapDI<DILocation>(Location)->getColumn();
899 LLVMMetadataRef LLVMDILocationGetScope(LLVMMetadataRef Location) { argument
900 return wrap(unwrapDI<DILocation>(Location)->getScope());
903 LLVMMetadataRef LLVMDILocationGetInlinedAt(LLVMMetadataRef Location) { argument
904 return wrap(unwrapDI<DILocation>(Location)->getInlinedAt());
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp214 static json::Object createThreadFlowLocation(json::Object &&Location, argument
216 return json::Object{{"location", std::move(Location)},
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h167 void setError(const Twine &Message, Token &Location) const;
562 void setError(const Twine &Message, Token &Location) const;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DMacroInfo.h44 SourceLocation Location; member in class:clang::MacroInfo
123 SourceLocation getDefinitionLoc() const { return Location; }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DPlaceSafepoints.cpp577 if (Instruction *Location = findLocationForEntrySafepoint(F, DT)) {
578 PollsNeeded.push_back(Location);
/freebsd-12-stable/crypto/heimdal/lib/com_err/
H A Dparse.c677 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
818 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMinidump.h122 LocationDescriptor Location; member in struct:llvm::minidump::Directory
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroInfo.cpp32 : Location(DefLoc), IsDefinitionLengthCached(false), IsFunctionLike(false),
H A DPreprocessor.cpp368 SourceLocation Location = Def.getLocation(); local
371 (Location.isValid() &&
372 SourceMgr.isBeforeInTranslationUnit(BestLocation, Location))) {
373 BestLocation = Location;
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSuperDeallocChecker.cpp28 check::PreCall, check::Location> {
H A DArrayBoundCheckerV2.cpp32 public Checker<check::Location> {
H A DDereferenceChecker.cpp30 : public Checker< check::Location,
H A DObjCSelfInitChecker.cpp62 check::Location,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp38 syntax::Token::Token(SourceLocation Location, unsigned Length, argument
40 : Location(Location), Length(Length), Kind(Kind) {
41 assert(Location.isValid());
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.h47 const char *Location() { return Green(); } function in class:__asan::Decorator
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h102 SMLoc Location, bool Create) = 0;
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h1655 bool isPointWithin(SourceLocation Location, SourceLocation Start, argument
1657 return Location == Start || Location == End ||
1658 (isBeforeInTranslationUnit(Start, Location) &&
1659 isBeforeInTranslationUnit(Location, End));
1762 /// \return Location of the top-level macro caller.
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1222 Optional<DbgVariableLocation> Location = local
1224 if (!Location)
1236 if (canUseReferenceType(*Location))
1237 Location->LoadChain.pop_back();
1240 } else if (needsReferenceType(*Location)) {
1250 if (Location->Register == 0 || Location->LoadChain.size() > 1)
1254 DR.CVRegister = TRI->getCodeViewRegNum(Location->Register);
1255 DR.InMemory = !Location->LoadChain.empty();
1257 !Location
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp43 const char *Location() { return Green(); } function in class:__tsan::Decorator
187 Printf("%s", d.Location());
191 Printf(" Location is global '%s' of size %zu at %p (%s+%p)\n\n",
195 Printf(" Location is global '%s' at %p (%s+%p)\n\n", global.name,
202 Printf(" Location is heap block of size %zu at %p allocated by %s:\n",
206 Printf(" Location is %s of size %zu at %p allocated by %s:\n",
212 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
214 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
216 Printf(" Location is file descriptor %d created by %s at:\n",
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h194 class Location { class in namespace:clang::ento::check
554 SVal Location; member in struct:clang::ento::ImplicitNullDerefEvent
/freebsd-12-stable/crypto/heimdal/lib/asn1/
H A Dasn1parse.c1069 # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
1210 # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp140 struct Location { struct
144 std::vector<Location> locations;
168 for (Location loc : locations) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp61 llvm::SMLoc Location,
129 llvm::SMLoc Location,
131 SourceLocation Loc = translateLocation(LSM, Location);
127 LookupInlineAsmLabel(StringRef Identifier, llvm::SourceMgr &LSM, llvm::SMLoc Location, bool Create) argument

Completed in 203 milliseconds

12345