HomeSort by relevance Sort by last modified time
    Searched refs:Location (Results 76 - 100 of 887) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/mockito/src/org/mockito/internal/invocation/
StubInfoImpl.java 8 import org.mockito.invocation.Location;
21 public Location stubbedAt() {
  /external/chromium_org/base/
location.h 15 // Location provides basic info where of an object was constructed, or was
17 class BASE_EXPORT Location {
22 Location(const char* function_name,
28 Location();
36 bool operator < (const Location& other) const {
68 // A "snapshotted" representation of the Location class that can safely be
73 explicit LocationSnapshot(const tracked_objects::Location& location);
83 // Define a macro to record the current source location.
87 ::tracked_objects::Location(function_name,
    [all...]
  /external/chromium_org/sync/api/
sync_error.h 16 class Location;
45 // from the specified location. IsSet() will return true afterward. Will
47 SyncError(const tracked_objects::Location& location,
62 void Reset(const tracked_objects::Location& location,
70 const tracked_objects::Location& location() const;
87 void Init(const tracked_objects::Location& location,
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 55 ObjCARCAliasAnalysis::alias(const Location &LocA, const Location &LocB) {
64 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
65 Location(SB, LocB.Size, LocB.TBAATag));
74 Result = AliasAnalysis::alias(Location(UA), Location(UB));
87 ObjCARCAliasAnalysis::pointsToConstantMemory(const Location &Loc,
95 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
103 return AliasAnalysis::pointsToConstantMemory(Location(U), OrLocal);
132 ObjCARCAliasAnalysis::getModRefInfo(ImmutableCallSite CS, const Location &Loc)
    [all...]
  /external/clang/unittests/Tooling/
TestVisitor.h 132 void Match(StringRef Name, SourceLocation Location) {
133 const FullSourceLoc FullLocation = this->Context->getFullLoc(Location);
160 bool Matches(StringRef Name, FullSourceLoc const &Location) const {
161 return MatchesName(Name) && MatchesLocation(Location);
164 bool PartiallyMatches(StringRef Name, FullSourceLoc const &Location) const {
165 return MatchesName(Name) || MatchesLocation(Location);
172 bool MatchesLocation(FullSourceLoc const &Location) const {
173 return Location.isValid() &&
174 Location.getSpellingLineNumber() == LineNumber &&
175 Location.getSpellingColumnNumber() == ColumnNumber
    [all...]
  /external/chromium_org/base/threading/
sequenced_worker_pool.h 19 class Location;
223 bool PostWorkerTask(const tracked_objects::Location& from_here,
235 bool PostDelayedWorkerTask(const tracked_objects::Location& from_here,
241 const tracked_objects::Location& from_here,
257 const tracked_objects::Location& from_here,
263 const tracked_objects::Location& from_here,
277 const tracked_objects::Location& from_here,
285 const tracked_objects::Location& from_here,
290 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
post_task_and_reply_impl.cc 8 #include "base/location.h"
26 PostTaskAndReplyRelay(const tracked_objects::Location& from_here,
63 tracked_objects::Location from_here_;
74 const tracked_objects::Location& from_here,
worker_pool.cc 25 virtual bool PostTask(const tracked_objects::Location& from_here,
43 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
54 const tracked_objects::Location& from_here,
71 const tracked_objects::Location& from_here,
82 const tracked_objects::Location& from_here,
103 bool WorkerPool::PostTaskAndReply(const tracked_objects::Location& from_here,
  /external/chromium_org/chrome/browser/extensions/
external_provider_impl.h 33 // to |service|, that will deal with the installation. The location
42 Manifest::Location crx_location,
43 Manifest::Location download_location,
64 Manifest::Location* location,
82 // Location for external extensions that are provided by this provider from
84 const Manifest::Location crx_location_;
86 // Location for external extensions that are provided by this provider from
88 const Manifest::Location download_location_;
external_provider_interface.h 35 // location.
40 Manifest::Location location,
46 // location.
50 Manifest::Location location) = 0;
83 Manifest::Location* location,
pending_extension_info.h 36 Manifest::Location install_source);
59 Manifest::Location install_source() const { return install_source_; }
81 Manifest::Location install_source_;
default_apps.h 40 // from the chrome::DIR_DEFAULT_APPS location based on a preference in the
47 extensions::Manifest::Location crx_location,
48 extensions::Manifest::Location download_location,
  /external/chromium_org/third_party/WebKit/Source/core/page/
Location.h 46 class Location : public ScriptWrappable, public RefCounted<Location>, public DOMWindowProperty {
48 static PassRefPtr<Location> create(Frame* frame) { return adoptRef(new Location(frame)); }
78 explicit Location(Frame*);
  /external/chromium/chrome/browser/sync/glue/
data_type_manager.h 47 // In case of an error the location is filled with the location the
48 // error originated from. In case of a success the error location value
55 scoped_ptr<tracked_objects::Location> location; member in struct:browser_sync::DataTypeManager::ConfigureResultWithErrorLocation
59 const tracked_objects::Location& location,
63 this->location.reset(new tracked_objects::Location(
64 location.function_name()
    [all...]
  /external/chromium_org/chrome/common/
cancelable_task_tracker.h 49 class Location;
66 const tracked_objects::Location& from_here,
70 const tracked_objects::Location& from_here,
  /external/chromium_org/chrome_frame/
task_marshaller.h 21 class Location;
38 virtual void PostTask(const tracked_objects::Location& from_here,
40 virtual void PostDelayedTask(const tracked_objects::Location& source,
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 34 /// \brief Return the location of the diagnostic.
67 static void decodeLocation(CXSourceLocation location,
73 struct Location {
79 Location() : line(0), column(0), offset(0) {}
82 Location DiagLoc;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LocationTest.java 3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in class:LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER);
22 location.setTime(1);
23 location.setLatitude(2);
24 location.setLongitude(3)
    [all...]
  /external/chromium_org/base/timer/
timer.h 56 #include "base/location.h"
77 Timer(const tracked_objects::Location& posted_from,
96 void Start(const tracked_objects::Location& posted_from,
114 void SetTaskInfo(const tracked_objects::Location& posted_from,
143 // Location in user code.
144 tracked_objects::Location posted_from_;
198 void Start(const tracked_objects::Location& posted_from,
233 DelayTimer(const tracked_objects::Location& posted_from,
  /external/chromium_org/content/browser/dom_storage/
dom_storage_task_runner.h 40 const tracked_objects::Location& from_here,
46 const tracked_objects::Location& from_here,
80 const tracked_objects::Location& from_here,
85 const tracked_objects::Location& from_here,
115 const tracked_objects::Location& from_here,
120 const tracked_objects::Location& from_here,
  /external/chromium_org/base/mac/
libdispatch_task_runner.h 41 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
48 const tracked_objects::Location& from_here,
  /external/chromium_org/base/message_loop/
message_loop_proxy_impl.h 28 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
32 const tracked_objects::Location& from_here,
  /external/chromium_org/base/test/
test_simple_task_runner.h 50 virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
54 const tracked_objects::Location& from_here,
  /external/chromium_org/chrome/browser/sync/glue/
shared_change_processor_mock.h 27 syncer::SyncError(const tracked_objects::Location&,
40 MOCK_METHOD2(OnUnrecoverableError, void(const tracked_objects::Location&,
  /external/chromium_org/remoting/base/
auto_thread_task_runner.h 29 const tracked_objects::Location& from_here,
33 const tracked_objects::Location& from_here,

Completed in 609 milliseconds

1 2 34 5 6 7 8 91011>>