Searched defs:Locations (Results 1 - 8 of 8) sorted by relevance

/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h45 LocationLists Locations; member in class:llvm::DWARFDebugLoc
73 LocationLists Locations; member in class:llvm::DWARFDebugLocDWO
/external/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.h49 auto I = Locations.find(Val);
50 if (I == Locations.end())
56 assert(!Locations.count(Val) &&
58 Locations[Val] = Location;
102 DenseMap<SDValue, SDValue> Locations; member in class:llvm::StatepointLoweringState
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLibCallSemantics.h33 /// Locations can also be defined in a constant-sensitive way. For example,
130 mutable const LibCallLocationInfo *Locations; member in class:llvm::LibCallInfo
133 LibCallInfo() : Impl(0), Locations(0), NumLocations(0) {}
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h199 LocationVec Locations; member in struct:llvm::StackMaps::CallsiteInfo
203 LocationVec &&Locations, LiveOutVec &&LiveOuts)
204 : CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(std::move(Locations)),
202 CallsiteInfo(const MCExpr *CSOffsetExpr, uint64_t ID, LocationVec &&Locations, LiveOutVec &&LiveOuts) argument
/external/llvm/lib/CodeGen/
H A DStackMaps.cpp164 const LocationVec &CSLocs = CSI.Locations;
291 LocationVec Locations; local
296 parseOperand(MI.operands_begin(), std::next(MI.operands_begin()), Locations,
302 MOI = parseOperand(MOI, MOE, Locations, LiveOuts);
306 for (auto &Loc : Locations) {
332 CSInfos.emplace_back(CSOffsetExpr, ID, std::move(Locations),
364 auto &Locations = CSInfos.back().Locations; local
368 assert(Locations[i].Type == Location::Register &&
473 const LocationVec &CSLocs = CSI.Locations;
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp235 SmallVector<SourceLocation, 4> Locations; local
251 Locations.push_back(Unexpanded[I].second);
259 for (unsigned I = 0, N = Locations.size(); I != N; ++I)
260 DB << SourceRange(Locations[I]);
/external/clang/include/clang/Sema/
H A DInitialization.h477 SourceLocation Locations[3]; member in class:clang::InitializationKind
483 Locations[0] = Loc1;
484 Locations[1] = Loc2;
485 Locations[2] = Loc3;
582 SourceLocation getLocation() const { return Locations[0]; }
586 return SourceRange(Locations[0], Locations[2]);
593 return Locations[1];
615 return SourceRange(Locations[1], Locations[
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c2301 CursorSourceLocation *Locations = 0; local
2312 Locations = (CursorSourceLocation *)malloc(
2316 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
2317 &Locations[Loc].line,
2318 &Locations[Loc].column, 0, 0)))
2362 CXFile file = clang_getFile(TU, Locations[Loc].filename);
2367 clang_getLocation(TU, file, Locations[Loc].line,
2368 Locations[Loc].column));
2375 free(Locations[Loc].filename);
2383 free(Locations);
2585 CursorSourceLocation *Locations = 0; local
[all...]

Completed in 3156 milliseconds