Home
last modified time | relevance | path

Searched refs:Location (Results 1 – 25 of 1317) sorted by relevance

12345678910>>...53

/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DAliasAnalysis.h98 struct Location { struct
111 explicit Location(const Value *P = 0, uint64_t S = UnknownSize, argument
115 Location getWithNewPtr(const Value *NewPtr) const { in getWithNewPtr() argument
116 Location Copy(*this); in getWithNewPtr()
121 Location getWithNewSize(uint64_t NewSize) const { in getWithNewSize() argument
122 Location Copy(*this); in getWithNewSize()
127 Location getWithoutTBAATag() const { in getWithoutTBAATag() argument
128 Location Copy(*this); in getWithoutTBAATag()
136 Location getLocation(const LoadInst *LI);
137 Location getLocation(const StoreInst *SI);
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DDebugTreeGrammar.cs108 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 …]
DProfileTreeGrammar.cs113 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 …]
DDebugGrammarParser.cs149 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 …]
DProfileGrammarParser.cs153 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 …]
/external/libchrome/base/
Dlocation.cc18 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()
Dlocation.h21 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/jsoncpp/include/json/
Dreader.h34 typedef const Char* Location; typedef
177 Location start_;
178 Location end_;
185 Location extra_;
193 bool match(Location pattern, int patternLength);
209 Location& current,
210 Location end,
213 Location& current,
214 Location end,
216 bool addError(const std::string& message, Token& token, Location extra = 0);
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DAliasAnalysis.cpp47 AliasAnalysis::alias(const Location &LocA, const Location &LocB) { in alias()
52 bool AliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory()
76 const Location &Loc) { in getModRefInfo()
96 Location CSLoc(Arg, UnknownSize, CSTag); in getModRefInfo()
154 Location CS2Loc(Arg, UnknownSize, CS2Tag); in getModRefInfo()
174 Location CS1Loc(Arg, UnknownSize, CS1Tag); in getModRefInfo()
222 AliasAnalysis::Location AliasAnalysis::getLocation(const LoadInst *LI) { in getLocation()
223 return Location(LI->getPointerOperand(), in getLocation()
228 AliasAnalysis::Location AliasAnalysis::getLocation(const StoreInst *SI) { in getLocation()
229 return Location(SI->getPointerOperand(), in getLocation()
[all …]
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DConcreteMethodImpl.java51 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 …]
DNonConcreteMethodImpl.java44 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/
Dlocation-aarch32.h52 class Location : public LocationBase<int32_t> {
60 Location() in Location() function
66 ~Location() { 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/clang/tools/libclang/
DCXLoadedDiagnostic.cpp93 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/libchrome/base/debug/
Dtask_annotator_unittest.cc73 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/
DProgramPoint.h236 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/
DAnnotationProcessingUtilsTest.java79 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 …]
/external/autotest/apache/
Dapache-conf2 <Location />
4 </Location>
7 <Location />
10 </Location>
14 <Location /server-status>
16 </Location>
19 <Location /server-status>
24 </Location>
/external/u-boot/doc/
DREADME.mpc85xx48 Location : Label "_start_e500"
54 Location : Label "create_init_ram_area"
60 Location : Lable "create_init_ram_area"
66 Location : cpu_init_early_f
72 Location : cpu_init_early_f
76 Location : cpu_init_early_f --> init_tlbs()
81 Location : cpu_init_f --> disable_tlb()
85 Location : Board_init_r
94 Location : Label "_start_e500"
105 Location : Label "create_init_ram_area"
[all …]
/external/clang/unittests/Tooling/
DTestVisitor.h149 void Match(StringRef Name, SourceLocation Location) { in Match() argument
150 const FullSourceLoc FullLocation = this->Context->getFullLoc(Location); in Match()
177 bool Matches(StringRef Name, FullSourceLoc const &Location) const { in Matches()
178 return MatchesName(Name) && MatchesLocation(Location); in Matches()
181 bool PartiallyMatches(StringRef Name, FullSourceLoc const &Location) const { in PartiallyMatches()
182 return MatchesName(Name) || MatchesLocation(Location); in PartiallyMatches()
189 bool MatchesLocation(FullSourceLoc const &Location) const { in MatchesLocation()
190 return Location.isValid() && in MatchesLocation()
191 Location.getSpellingLineNumber() == LineNumber && in MatchesLocation()
192 Location.getSpellingColumnNumber() == ColumnNumber; in MatchesLocation()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkBuilderUtil.hpp130 class Location class in vk::DescriptorSetUpdateBuilder
133 static inline Location binding (deUint32 binding_) in binding()
135 return Location(binding_, 0u); in binding()
137 static inline Location bindingArrayElement (deUint32 binding_, deUint32 arrayElement) in bindingArrayElement()
139 return Location(binding_, arrayElement); in bindingArrayElement()
144 inline Location (deUint32 binding_, deUint32 arrayElement) in Location() function in vk::DescriptorSetUpdateBuilder::Location
183 const Location& destLocation, in writeSingle()
191 const Location& destLocation, in writeSingle()
199 const Location& destLocation, in writeSingle()
207 const Location& destLocation, in writeArray()
[all …]
/external/libchrome/base/timer/
Dtimer.h96 Timer(const Location& posted_from,
100 Timer(const Location& posted_from,
123 virtual void Start(const Location& posted_from,
131 void Start(const Location& posted_from, in Start()
166 const Location& posted_from() const { return posted_from_; } in posted_from()
202 Location posted_from_;
258 RepeatingTimer(const Location& posted_from, in RepeatingTimer()
262 RepeatingTimer(const Location& posted_from, in RepeatingTimer()
278 RetainingOneShotTimer(const Location& posted_from, in RetainingOneShotTimer()
282 RetainingOneShotTimer(const Location& posted_from, in RetainingOneShotTimer()
[all …]
/external/v8/src/ast/
Dmodules.h38 const Scanner::Location loc,
39 const Scanner::Location specifier_loc, Zone* zone);
44 const Scanner::Location loc,
45 const Scanner::Location specifier_loc, Zone* zone);
51 const Scanner::Location specifier_loc);
60 const Scanner::Location loc, Zone* zone);
67 const Scanner::Location loc,
68 const Scanner::Location specifier_loc, Zone* zone);
72 const Scanner::Location loc,
73 const Scanner::Location specifier_loc, Zone* zone);
[all …]
/external/libchrome/base/task_scheduler/
Dpost_task.h73 BASE_EXPORT void PostTask(const Location& from_here, OnceClosure task);
81 BASE_EXPORT void PostDelayedTask(const Location& from_here,
90 BASE_EXPORT void PostTaskAndReply(const Location& from_here,
100 void PostTaskAndReplyWithResult(const Location& from_here, in PostTaskAndReplyWithResult()
113 void PostTaskAndReplyWithResult(const Location& from_here, in PostTaskAndReplyWithResult()
122 BASE_EXPORT void PostTaskWithTraits(const Location& from_here,
131 BASE_EXPORT void PostDelayedTaskWithTraits(const Location& from_here,
140 BASE_EXPORT void PostTaskWithTraitsAndReply(const Location& from_here,
151 const Location& from_here, in PostTaskWithTraitsAndReplyWithResult()
170 void PostTaskWithTraitsAndReplyWithResult(const Location& from_here, in PostTaskWithTraitsAndReplyWithResult()
/external/compiler-rt/lib/ubsan/
Dubsan_diag.h55 class Location {
67 Location() : Kind(LK_Null) {} in Location() function
68 Location(SourceLocation Loc) : in Location() function
70 Location(MemoryLocation Loc) : in Location() function
73 Location(const SymbolizedStackHolder &Stack) : in Location() function
104 Location Start, End;
111 Location getStart() const { return Start; } in getStart()
112 Location getEnd() const { return End; } in getEnd()
131 Location Loc;
200 Diag(Location Loc, DiagLevel Level, const char *Message) in Diag()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DLocationFacade.java23 import android.location.Location;
84 private final Map<String, Location> mLocationUpdates;
90 public synchronized void onLocationChanged(Location location) {
92 Map<String, Location> copy = Maps.newHashMap();
93 for (Entry<String, Location> entry : mLocationUpdates.entrySet()) {
118 mLocationUpdates = new HashMap<String, Location>(); in LocationFacade()
149 public Map<String, Location> readLocation() { in readLocation()
161 public Map<String, Location> getLastKnownLocation() { in getLastKnownLocation()
162 Map<String, Location> location = new HashMap<String, Location>(); in getLastKnownLocation()

12345678910>>...53