Home
last modified time | relevance | path

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

12345678910>>...12

/external/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/qemu/
Dqemu-error.h16 typedef struct Location { struct
21 struct Location *prev; argument
22 } Location; typedef
24 Location *loc_push_restore(Location *loc);
25 Location *loc_push_none(Location *loc);
26 Location *loc_pop(Location *loc);
27 Location *loc_save(Location *loc);
28 void loc_restore(Location *loc);
Dqemu-error.c54 static Location std_loc = {
57 static Location *cur_loc = &std_loc;
64 Location *loc_push_restore(Location *loc) in loc_push_restore()
78 Location *loc_push_none(Location *loc) in loc_push_none()
89 Location *loc_pop(Location *loc) in loc_pop()
100 Location *loc_save(Location *loc) in loc_save()
110 void loc_restore(Location *loc) in loc_restore()
112 Location *prev = cur_loc->prev; in loc_restore()
/external/webkit/Source/WebCore/page/
DLocation.cpp40 Location::Location(Frame* frame) in Location() function in WebCore::Location
45 void Location::disconnectFrame() in disconnectFrame()
50 inline const KURL& Location::url() const in url()
61 String Location::href() const in href()
70 String Location::protocol() const in protocol()
78 String Location::host() const in host()
89 String Location::hostname() const in hostname()
97 String Location::port() const in port()
106 String Location::pathname() const in pathname()
115 String Location::search() const in search()
[all …]
DLocation.h44 class Location : public RefCounted<Location> {
46 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); } in create()
79 Location(Frame*);
/external/chromium/base/
Dtracked.cc16 Location::Location(const char* function_name, const char* file_name, in Location() function in tracked_objects::Location
23 Location::Location() in Location() function in tracked_objects::Location
29 void Location::Write(bool display_filename, bool display_function_name, in Write()
41 void Location::WriteFunctionName(std::string* output) const { in WriteFunctionName()
67 void Tracked::SetBirthPlace(const Location& from_here) {} in SetBirthPlace()
68 const Location Tracked::GetBirthPlace() const { in GetBirthPlace()
69 static Location kNone("NoFunctionName", "NeedToSetBirthPlace", -1); in GetBirthPlace()
82 SetBirthPlace(Location("NoFunctionName", "NeedToSetBirthPlace", -1)); in Tracked()
92 void Tracked::SetBirthPlace(const Location& from_here) { in SetBirthPlace()
103 const Location Tracked::GetBirthPlace() const { in GetBirthPlace()
Dtracked.h39 class BASE_API Location {
44 Location(const char* function_name, const char* file_name, int line_number);
47 Location();
55 bool operator < (const Location& other) const {
83 #define FROM_HERE tracked_objects::Location(__FUNCTION__, __FILE__, __LINE__)
97 void SetBirthPlace(const Location& from_here);
98 const Location GetBirthPlace() const;
Dmessage_loop_proxy.h34 virtual bool PostTask(const tracked_objects::Location& from_here,
36 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
38 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
41 const tracked_objects::Location& from_here,
49 bool DeleteSoon(const tracked_objects::Location& from_here, in DeleteSoon()
54 bool ReleaseSoon(const tracked_objects::Location& from_here, in ReleaseSoon()
Dmessage_loop_proxy_impl.h25 virtual bool PostTask(const tracked_objects::Location& from_here,
27 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
29 virtual bool PostNonNestableTask(const tracked_objects::Location& from_here,
32 const tracked_objects::Location& from_here,
47 bool PostTaskHelper(const tracked_objects::Location& from_here,
Dmessage_loop_proxy_impl.cc21 bool MessageLoopProxyImpl::PostTask(const tracked_objects::Location& from_here, in PostTask()
27 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) { in PostDelayedTask()
32 const tracked_objects::Location& from_here, Task* task) { in PostNonNestableTask()
37 const tracked_objects::Location& from_here, in PostNonNestableDelayedTask()
85 const tracked_objects::Location& from_here, Task* task, int64 delay_ms, in PostTaskHelper()
Dtracked_objects.h162 explicit BirthOnThread(const Location& location);
164 const Location location() const { return location_; } in location()
171 const Location location_;
185 explicit Births(const Location& location);
263 const Location location() const { return birth_->location(); } in location()
343 void AddBirthPlace(const Location& location);
350 std::map<Location, int> locations_;
470 typedef std::map<Location, Births*> BirthMap;
493 Births* TallyABirth(const Location& location);
/external/clang/include/clang/Analysis/
DProgramPoint.h130 static bool classof(const ProgramPoint* Location) { in classof() argument
131 return Location->getKind() == BlockEntranceKind; in classof()
148 static bool classof(const ProgramPoint* Location) { in classof() argument
149 return Location->getKind() == BlockExitKind; in classof()
164 static bool classof(const ProgramPoint* Location) { in classof() argument
165 unsigned k = Location->getKind(); in classof()
179 static bool classof(const ProgramPoint* Location) { in classof() argument
180 return Location->getKind() == PreStmtKind; in classof()
198 static bool classof(const ProgramPoint* Location) { in classof() argument
199 unsigned k = Location->getKind(); in classof()
[all …]
/external/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 …]
DTypeBasedAliasAnalysis.cpp143 virtual AliasResult alias(const Location &LocA, const Location &LocB);
144 virtual bool pointsToConstantMemory(const Location &Loc, bool OrLocal);
148 const Location &Loc);
213 TypeBasedAliasAnalysis::alias(const Location &LocA, in alias()
214 const Location &LocB) { in alias()
233 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory()
273 const Location &Loc) { in getModRefInfo()
DAliasAnalysisCounter.cpp101 bool pointsToConstantMemory(const Location &Loc, bool OrLocal) { in pointsToConstantMemory()
107 AliasResult alias(const Location &LocA, const Location &LocB);
110 const Location &Loc);
127 AliasAnalysisCounter::alias(const Location &LocA, const Location &LocB) { in alias()
154 const Location &Loc) { in getModRefInfo()
DNoAliasAnalysis.cpp42 virtual AliasResult alias(const Location &LocA, const Location &LocB) { in alias()
53 virtual bool pointsToConstantMemory(const Location &Loc, in pointsToConstantMemory()
58 const Location &Loc) { in getModRefInfo()
DScalarEvolutionAliasAnalysis.cpp55 virtual AliasResult alias(const Location &LocA, const Location &LocB);
109 ScalarEvolutionAliasAnalysis::alias(const Location &LocA, in alias()
110 const Location &LocB) { in alias()
163 if (alias(Location(AO ? AO : LocA.Ptr, in alias()
166 Location(BO ? BO : LocB.Ptr, in alias()
/external/valgrind/main/memcheck/tests/
Dvarinfo5.stderr.exp17 Location 0x........ is 0 bytes inside global var "global_u1"
25 Location 0x........ is 0 bytes inside global var "global_i1"
33 Location 0x........ is 0 bytes inside global_u2[3],
41 Location 0x........ is 0 bytes inside global_i2[7],
49 Location 0x........ is 0 bytes inside local var "local"
58 Location 0x........ is 0 bytes inside var[7],
67 Location 0x........ is 2 bytes inside var.bar,
76 Location 0x........ is 1 byte inside local var "var"
85 Location 0x........ is 0 bytes inside static_global_def[1],
94 Location 0x........ is 0 bytes inside nonstatic_global_def[2],
[all …]
Dvarinfo5.stderr.exp-ppc6417 Location 0x........ is 0 bytes inside global var "global_u1"
25 Location 0x........ is 0 bytes inside global var "global_i1"
33 Location 0x........ is 0 bytes inside global_u2[3],
41 Location 0x........ is 0 bytes inside global_i2[7],
49 Location 0x........ is 0 bytes inside local var "local"
58 Location 0x........ is 0 bytes inside var[7],
67 Location 0x........ is 2 bytes inside var.bar,
76 Location 0x........ is 1 byte inside local var "var"
85 Location 0x........ is 0 bytes inside static_global_def[1],
94 Location 0x........ is 0 bytes inside nonstatic_global_def[2],
[all …]
Dvarinfo1.stderr.exp11 Location 0x........ is 0 bytes inside global var "global_u1"
17 Location 0x........ is 0 bytes inside global var "global_i1"
23 Location 0x........ is 0 bytes inside global_u2[3],
29 Location 0x........ is 0 bytes inside global_i2[7],
35 Location 0x........ is 0 bytes inside local var "local"
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8LocationCustom.cpp54 Location* impl = V8Location::toNative(info.Holder()); in hashAccessorSetter()
66 Location* impl = V8Location::toNative(info.Holder()); in hostAccessorSetter()
78 Location* impl = V8Location::toNative(info.Holder()); in hostnameAccessorSetter()
90 Location* impl = V8Location::toNative(info.Holder()); in hrefAccessorSetter()
102 Location* impl = V8Location::toNative(info.Holder()); in pathnameAccessorSetter()
114 Location* impl = V8Location::toNative(info.Holder()); in portAccessorSetter()
126 Location* impl = V8Location::toNative(info.Holder()); in protocolAccessorSetter()
141 Location* impl = V8Location::toNative(info.Holder()); in searchAccessorSetter()
160 Location* imp = V8Location::toNative(holder); in reloadAccessorGetter()
178 Location* imp = V8Location::toNative(holder); in replaceAccessorGetter()
[all …]
/external/llvm/lib/Transforms/Scalar/
DDeadStoreElimination.cpp70 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
162 static AliasAnalysis::Location
169 AliasAnalysis::Location Loc = AA.getLocationForDest(MI); in getLocForWrite()
174 return AliasAnalysis::Location(); in getLocForWrite()
179 if (II == 0) return AliasAnalysis::Location(); in getLocForWrite()
182 default: return AliasAnalysis::Location(); // Unhandled intrinsic. in getLocForWrite()
187 if (AA.getTargetData() == 0) return AliasAnalysis::Location(); in getLocForWrite()
191 return AliasAnalysis::Location(II->getArgOperand(0)); in getLocForWrite()
194 return AliasAnalysis::Location(II->getArgOperand(1), Len); in getLocForWrite()
201 static AliasAnalysis::Location
[all …]
/external/chromium/chrome/browser/extensions/
Dexternal_extension_provider_impl.h37 Extension::Location crx_location,
38 Extension::Location download_location);
58 Extension::Location* location,
74 const Extension::Location crx_location_;
78 const Extension::Location download_location_;
/external/clang/lib/Frontend/
DVerifyDiagnosticsClient.cpp73 static Directive* Create(bool RegexKind, const SourceLocation &Location,
76 SourceLocation Location; member in __anon6150ab3a0111::Directive
90 Directive(const SourceLocation &Location, const std::string &Text, in Directive() argument
92 : Location(Location), Text(Text), Count(Count) { } in Directive()
103 StandardDirective(const SourceLocation &Location, const std::string &Text, in StandardDirective() argument
105 : Directive(Location, Text, Count) { } in StandardDirective()
122 RegexDirective(const SourceLocation &Location, const std::string &Text, in RegexDirective() argument
124 : Directive(Location, Text, Count), Regex(Text) { } in RegexDirective()
391 if (D.Location.isInvalid() || !SourceMgr) in PrintProblem()
394 OS << "\n Line " << SourceMgr->getPresumedLineNumber(D.Location); in PrintProblem()
[all …]
/external/chromium/chrome/browser/sync/glue/
Dfrontend_data_type_controller_mock.h27 MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&,
35 const tracked_objects::Location& from_here));
37 const tracked_objects::Location& from_here));
39 MOCK_METHOD2(RecordUnrecoverableError, void(const tracked_objects::Location&,

12345678910>>...12