/external/llvm-project/mlir/include/mlir/IR/ |
D | Location.h | 50 class Location { 52 Location(LocationAttr loc) : impl(loc) { in Location() function 55 Location(const LocationAttr::ImplType *impl) : impl(impl) { in Location() function 72 bool operator==(Location rhs) const { return impl == rhs.impl; } 73 bool operator!=(Location rhs) const { return !(*this == rhs); } 79 friend ::llvm::hash_code hash_value(Location arg); 83 static Location getFromOpaquePointer(const void *pointer) { in getFromOpaquePointer() 92 inline raw_ostream &operator<<(raw_ostream &os, const Location &loc) { 108 static Location get(Location callee, Location caller); 113 static Location get(Location name, ArrayRef<Location> frames); [all …]
|
/external/openscreen/platform/base/ |
D | location.cc | 13 Location::Location() = default; 14 Location::Location(const Location&) = default; 15 Location::Location(Location&&) noexcept = default; 17 Location::Location(const void* program_counter) in Location() function in openscreen::Location 20 Location& Location::operator=(const Location& other) = default; 21 Location& Location::operator=(Location&& other) = default; 23 std::string Location::ToString() const { in ToString() 41 OSP_NOINLINE Location Location::CreateFromHere() { in CreateFromHere() 42 return Location(RETURN_ADDRESS()); in CreateFromHere()
|
D | location.h | 21 class Location { 23 Location(); 24 Location(const Location&); 25 Location(Location&&) noexcept; 28 explicit Location(const void* program_counter); 30 Location& operator=(const Location& other); 31 Location& operator=(Location&& other); 35 bool operator==(const Location& other) const { 48 static Location CreateFromHere(); 56 #define CURRENT_LOCATION ::openscreen::Location::CreateFromHere()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | DebugTreeGrammar.cs | 108 dbg.Location( 53, -1 ); in prog() 117 dbg.Location( 53, 8 ); in prog() 151 dbg.Location( 53, 8 ); in prog() 187 dbg.Location(54, 4); in prog() 221 dbg.Location( 56, -1 ); in stat() 277 dbg.Location( 56, 8 ); in stat() 283 dbg.Location( 56, 35 ); in stat() 295 dbg.Location( 59, 8 ); in stat() 296 dbg.Location( 59, 10 ); in stat() 300 dbg.Location( 59, 14 ); in stat() [all …]
|
D | ProfileTreeGrammar.cs | 113 dbg.Location( 53, -1 ); in prog() 122 dbg.Location( 53, 8 ); in prog() 156 dbg.Location( 53, 8 ); in prog() 192 dbg.Location(54, 4); in prog() 226 dbg.Location( 56, -1 ); in stat() 282 dbg.Location( 56, 8 ); in stat() 288 dbg.Location( 56, 35 ); in stat() 300 dbg.Location( 59, 8 ); in stat() 301 dbg.Location( 59, 10 ); in stat() 305 dbg.Location( 59, 14 ); in stat() [all …]
|
D | ProfileGrammarParser.cs | 153 dbg.Location( 50, -1 ); in prog() 164 dbg.Location( 50, 6 ); in prog() 198 dbg.Location( 50, 8 ); in prog() 242 dbg.Location(51, 4); in prog() 303 dbg.Location( 53, -1 ); in stat() 336 dbg.Location( 53, 8 ); in stat() 343 dbg.Location( 53, 13 ); in stat() 363 dbg.Location( 53, 43 ); in stat() 378 dbg.Location( 54, 8 ); in stat() 382 dbg.Location( 54, 11 ); in stat() [all …]
|
D | DebugGrammarParser.cs | 149 dbg.Location( 50, -1 ); in prog() 160 dbg.Location( 50, 6 ); in prog() 194 dbg.Location( 50, 8 ); in prog() 238 dbg.Location(51, 4); in prog() 299 dbg.Location( 53, -1 ); in stat() 332 dbg.Location( 53, 8 ); in stat() 339 dbg.Location( 53, 13 ); in stat() 359 dbg.Location( 53, 43 ); in stat() 374 dbg.Location( 54, 8 ); in stat() 378 dbg.Location( 54, 11 ); in stat() [all …]
|
/external/libchrome/base/ |
D | location.cc | 18 Location::Location() = default; 19 Location::Location(const Location& other) = default; 21 Location::Location(const char* file_name, const void* program_counter) in Location() function in base::Location 24 Location::Location(const char* function_name, in Location() function in base::Location 43 std::string Location::ToString() const { in ToString() 61 NOINLINE Location Location::CreateFromHere(const char* file_name) { in CreateFromHere() 62 return Location(file_name, RETURN_ADDRESS()); in CreateFromHere() 66 NOINLINE Location Location::CreateFromHere(const char* function_name, in CreateFromHere() 69 return Location(function_name, file_name, line_number, RETURN_ADDRESS()); in CreateFromHere()
|
D | location.h | 21 class BASE_EXPORT Location { 23 Location(); 24 Location(const Location& other); 29 Location(const char* file_name, const void* program_counter); 34 Location(const char* function_name, 41 bool operator==(const Location& other) const { 71 static Location CreateFromHere(const char* file_name); 72 static Location CreateFromHere(const char* function_name, 91 ::base::Location::CreateFromHere(function_name, __FILE__, __LINE__) 96 #define FROM_HERE ::base::Location::CreateFromHere(__FILE__) [all …]
|
/external/swiftshader/src/Vulkan/Debug/ |
D | Location.hpp | 26 struct Location struct 28 Location() = default; 29 inline Location(const std::shared_ptr<File> &file, int line, int column = 0); 31 inline bool operator==(const Location &o) const; 32 inline bool operator!=(const Location &o) const; 33 inline bool operator<(const Location &o) const; 40 Location::Location(const std::shared_ptr<File> &file, int line, int column /* = 0 */) in Location() function in vk::dbg::Location 46 bool Location::operator==(const Location &o) const in operator ==() 51 bool Location::operator!=(const Location &o) const in operator !=() 56 bool Location::operator<(const Location &o) const in operator <() [all …]
|
/external/llvm-project/mlir/lib/IR/ |
D | Location.cpp | 30 Location CallSiteLoc::get(Location callee, Location caller) { in get() 34 Location CallSiteLoc::get(Location name, ArrayRef<Location> frames) { in get() 36 Location caller = frames.back(); in get() 42 Location CallSiteLoc::getCallee() const { return getImpl()->callee; } in getCallee() 44 Location CallSiteLoc::getCaller() const { return getImpl()->caller; } in getCaller() 50 Location FileLineColLoc::get(Identifier filename, unsigned line, in get() 55 Location FileLineColLoc::get(StringRef filename, unsigned line, unsigned column, in get() 69 Location FusedLoc::get(ArrayRef<Location> locs, Attribute metadata, in get() 72 llvm::SmallSetVector<Location, 4> decomposedLocs; in get() 99 ArrayRef<Location> FusedLoc::getLocations() const { in getLocations() [all …]
|
D | LocationDetail.h | 26 CallSiteLocationStorage(Location callee, Location caller) in CallSiteLocationStorage() 30 using KeyTy = std::pair<Location, Location>; 42 Location callee, caller; 70 public llvm::TrailingObjects<FusedLocationStorage, Location> { 74 ArrayRef<Location> getLocations() const { in getLocations() 75 return ArrayRef<Location>(getTrailingObjects<Location>(), numLocs); in getLocations() 79 using KeyTy = std::pair<ArrayRef<Location>, Attribute>; 87 ArrayRef<Location> locs = key.first; in construct() 89 auto byteSize = totalSizeToAlloc<Location>(locs.size()); in construct() 94 result->getTrailingObjects<Location>()); in construct() [all …]
|
/external/llvm-project/mlir/include/mlir/Conversion/StandardToLLVM/ |
D | ConvertStandardToLLVM.h | 94 Location loc, ArrayRef<Type> stdTypes, 109 SmallVector<Value, 4> promoteOperands(Location loc, ValueRange opOperands, 116 Value promoteOneMemRefDescriptor(Location loc, Value operand, 223 static StructBuilder undef(OpBuilder &builder, Location loc, 236 Value extractPtr(OpBuilder &builder, Location loc, unsigned pos); 238 void setPtr(OpBuilder &builder, Location loc, unsigned pos, Value ptr); 246 static ComplexStructBuilder undef(OpBuilder &builder, Location loc, 250 Value real(OpBuilder &builder, Location loc); 252 void setReal(OpBuilder &builder, Location loc, Value real); 255 Value imaginary(OpBuilder &builder, Location loc); [all …]
|
/external/jsoncpp/include/json/ |
D | reader.h | 40 using Location = const Char*; variable 179 Location start_; 180 Location end_; 187 Location extra_; 209 bool decodeUnicodeCodePoint(Token& token, Location& current, Location end, 211 bool decodeUnicodeEscapeSequence(Token& token, Location& current, 212 Location end, unsigned int& unicode); 213 bool addError(const String& message, Token& token, Location extra = nullptr); 220 void getLocationLineAndColumn(Location location, int& line, 222 String getLocationLineAndColumn(Location location) const; [all …]
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ConcreteMethodImpl.java | 51 final Map<Integer, List<Location>> lineMapper; // Maps line number to location(s) 52 final List<Location> lineLocations; // List of locations ordered by code index 63 …SoftLocationXRefs(String stratumID, Map<Integer, List<Location>> lineMapper, List<Location> lineLo… in SoftLocationXRefs() 74 private Location location = null; 94 public Location location() { in location() 101 List<Location> sourceNameFilter(List<Location> list, in sourceNameFilter() 109 List<Location> locs = new ArrayList<Location>(); in sourceNameFilter() 110 for (Location loc : list) { in sourceNameFilter() 119 List<Location> allLineLocations(SDE.Stratum stratum, in allLineLocations() 122 List<Location> lineLocations = getLocations(stratum).lineLocations; in allLineLocations() [all …]
|
D | NonConcreteMethodImpl.java | 44 private Location location = null; 57 public Location location() { in location() 67 public List<Location> allLineLocations(String stratumID, in allLineLocations() 69 return new ArrayList<Location>(0); in allLineLocations() 72 public List<Location> allLineLocations(SDE.Stratum stratum, in allLineLocations() 74 return new ArrayList<Location>(0); in allLineLocations() 77 public List<Location> locationsOfLine(String stratumID, in locationsOfLine() 80 return new ArrayList<Location>(0); in locationsOfLine() 83 public List<Location> locationsOfLine(SDE.Stratum stratum, in locationsOfLine() 86 return new ArrayList<Location>(0); in locationsOfLine() [all …]
|
/external/vixl/src/aarch32/ |
D | location-aarch32.h | 52 class Location : public LocationBase<int32_t> { 60 Location() in Location() function 66 ~Location() VIXL_NEGATIVE_TESTING_ALLOW_EXCEPTION { in ~Location() 90 Location::Offset /*pc*/, in Encode() 91 const Location* /*label*/) const { in Encode() argument 112 ForwardRef(const Location::EmitOperator* op, 125 const Location::EmitOperator* op() const { return op_; } in op() 142 const Location::EmitOperator* op_; 172 explicit ForwardRefListIterator(Location* location) in ForwardRefListIterator() 213 const Location::EmitOperator* encoder); [all …]
|
/external/llvm-project/lldb/test/API/lang/objc/direct-dispatch-step/ |
D | stepping-tests.m | 94 [obj release]; // Stop Location 2 96 obj = [OverridesALot allocWithZone: NULL]; // Stop Location 3 97 [obj release]; // Stop Location 4 99 obj = [OverridesALot new]; // Stop Location 5 100 [obj release]; // Stop Location 6 102 obj = [[OverridesALot alloc] init]; // Stop Location 7 103 [obj self]; // Stop Location 8 104 [obj isKindOfClass: [OverridesALot class]]; // Stop Location 9 105 [obj respondsToSelector: @selector(hello)]; // Stop Location 10 106 [obj retain]; // Stop Location 11 [all …]
|
/external/llvm-project/flang/include/flang/Lower/ |
D | FIRBuilder.h | 63 mlir::Value convertWithSemantics(mlir::Location loc, mlir::Type toTy, 74 mlir::Value createNullConstant(mlir::Location loc); 77 mlir::Value createIntegerConstant(mlir::Location loc, mlir::Type integerType, 80 mlir::Value createRealConstant(mlir::Location loc, mlir::Type realType, 83 mlir::Value createRealZeroConstant(mlir::Location loc, mlir::Type realType); 87 mlir::Value allocateLocal(mlir::Location loc, mlir::Type ty, 95 mlir::Value createTemporary(mlir::Location loc, mlir::Type type, 100 mlir::Value createTemporary(mlir::Location loc, mlir::Type type, in createTemporary() 106 fir::GlobalOp createGlobal(mlir::Location loc, mlir::Type type, 111 fir::GlobalOp createGlobal(mlir::Location loc, mlir::Type type, [all …]
|
/external/llvm-project/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 245 static bool isKind(const ProgramPoint &Location) { in isKind() argument 246 return Location.getKind() == BlockEntranceKind; in isKind() 266 static bool isKind(const ProgramPoint &Location) { in isKind() argument 267 return Location.getKind() == BlockExitKind; in isKind() 288 static bool isKind(const ProgramPoint &Location) { in isKind() argument 289 unsigned k = Location.getKind(); in isKind() 306 static bool isKind(const ProgramPoint &Location) { in isKind() argument 307 return Location.getKind() == PreStmtKind; in isKind() 329 static bool isKind(const ProgramPoint &Location) { in isKind() argument 330 unsigned k = Location.getKind(); in isKind() [all …]
|
/external/clang/tools/libclang/ |
D | CXLoadedDiagnostic.cpp | 93 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) { in makeLocation() 173 const Location &Loc = *((Location*)V); in decodeLocation() 208 std::error_code readRange(const serialized_diags::Location &SDStart, 209 const serialized_diags::Location &SDEnd, 212 std::error_code readLocation(const serialized_diags::Location &SDLoc, 213 CXLoadedDiagnostic::Location &LoadedLoc); 224 unsigned Severity, const serialized_diags::Location &Location, 231 std::error_code visitFixitRecord(const serialized_diags::Location &Start, 232 const serialized_diags::Location &End, 236 visitSourceRangeRecord(const serialized_diags::Location &Start, [all …]
|
/external/llvm-project/clang/tools/libclang/ |
D | CXLoadedDiagnostic.cpp | 90 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) { in makeLocation() 170 const Location &Loc = *((Location*)V); in decodeLocation() 205 std::error_code readRange(const serialized_diags::Location &SDStart, 206 const serialized_diags::Location &SDEnd, 209 std::error_code readLocation(const serialized_diags::Location &SDLoc, 210 CXLoadedDiagnostic::Location &LoadedLoc); 221 unsigned Severity, const serialized_diags::Location &Location, 228 std::error_code visitFixitRecord(const serialized_diags::Location &Start, 229 const serialized_diags::Location &End, 233 visitSourceRangeRecord(const serialized_diags::Location &Start, [all …]
|
/external/libchrome/base/debug/ |
D | task_annotator_unittest.cc | 73 const Location& posted_from, in VerifyTraceAndPost() 74 const Location& next_from_here, in VerifyTraceAndPost() 96 const Location& posted_from, in VerifyTraceAndPostWithBlocker() 97 const Location& next_from_here, in VerifyTraceAndPostWithBlocker() 129 Location last_posted_from_ = {}; 138 const Location location0 = FROM_HERE; in TEST_F() 139 const Location location1 = FROM_HERE; in TEST_F() 140 const Location location2 = FROM_HERE; in TEST_F() 141 const Location location3 = FROM_HERE; in TEST_F() 142 const Location location4 = FROM_HERE; in TEST_F() [all …]
|
/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 236 static bool isKind(const ProgramPoint &Location) { in isKind() argument 237 return Location.getKind() == BlockEntranceKind; in isKind() 257 static bool isKind(const ProgramPoint &Location) { in isKind() argument 258 return Location.getKind() == BlockExitKind; in isKind() 279 static bool isKind(const ProgramPoint &Location) { in isKind() argument 280 unsigned k = Location.getKind(); in isKind() 297 static bool isKind(const ProgramPoint &Location) { in isKind() argument 298 return Location.getKind() == PreStmtKind; in isKind() 320 static bool isKind(const ProgramPoint &Location) { in isKind() argument 321 unsigned k = Location.getKind(); in isKind() [all …]
|
/external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/ |
D | AnnotationProcessingUtilsTest.java | 79 assertEquals(Location.Class, retrievedAnnotation.value()); in testGetTargetAnnotation_OnClassButNotOnMethod() 90 assertEquals(Location.Method, retrievedAnnotation.value()); in testGetTargetAnnotation_OnClassAndMethod() 101 assertEquals(Location.Rule, retrievedAnnotation.value()); in testGetTargetAnnotation_OnRuleButNotOnMethod() 112 assertEquals(Location.Method, retrievedAnnotation.value()); in testGetTargetAnnotation_OnRuleAndMethod() 133 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations() 134 assertEquals(Location.Method, retrievedAnnotations.get(1).value()); in testGetAllTargetAnnotations() 145 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations_OnParentClass() 156 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations_OnDerivedMethodAndParentClass() 157 assertEquals(Location.DerivedMethod, retrievedAnnotations.get(1).value()); in testGetAllTargetAnnotations_OnDerivedMethodAndParentClass() 170 assertEquals(Location.Class, retrievedAnnotations.get(0).value()); in testGetAllTargetAnnotations_OnDerivedMethodAndParentClassAndMethod() [all …]
|