HomeSort by relevance Sort by last modified time
    Searched refs:Location (Results 101 - 125 of 426) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/emma/ant/ant14/com/vladium/emma/ant/
SuppressableTask.java 17 import org.apache.tools.ant.Location;
80 public static BuildException newBuildException (final String msg, final Location location)
86 return new BuildException (prefixedMsg, location);
89 public static BuildException newBuildException (final String msg, final Throwable cause, final Location location)
95 return new BuildException (prefixedMsg, cause, location);
  /external/v8/src/
scanner.h 301 struct Location {
302 Location(int b, int e) : beg_pos(b), end_pos(e) { }
303 Location() : beg_pos(0), end_pos(0) { }
309 static Location invalid() { return Location(-1, -1); }
328 // Returns the location information for the current token
330 Location location() const { return current_.location; } function in class:v8::internal::Scanner
355 Location location = current_.location local
443 Location location; member in struct:v8::internal::Scanner::TokenDesc
    [all...]
variables.h 50 enum Location {
51 // Before and during variable allocation, a variable whose location is
153 Location location() const { return location_; } function in class:v8::internal::Variable
160 void AllocateTo(Location location, int index) {
161 location_ = location;
172 Location location_;
  /external/valgrind/main/memcheck/tests/
varinfo3.stderr.exp 5 Location 0x........ is 0 bytes inside static_global_def[1],
12 Location 0x........ is 0 bytes inside nonstatic_global_def[2],
19 Location 0x........ is 0 bytes inside static_global_undef[3],
26 Location 0x........ is 0 bytes inside nonstatic_global_undef[4],
41 Location 0x........ is 0 bytes inside nonstatic_local_def[6],
56 Location 0x........ is 0 bytes inside nonstatic_local_undef[8],
dw4.stderr.exp 11 Location 0x........ is 0 bytes inside S2[0].i,
17 Location 0x........ is 0 bytes inside local.i,
  /external/chromium/base/
tracked_objects.h 41 // created. That data is used to create a transient Location instance
50 // BirthOnThread) references to the static data provided in a Location instance,
52 // Hence there is at most one Births instance for each Location on each thread.
54 // instances born at the same location. Statistics currently include only the
67 // out its location of birth, and thread of birth, without using any locks, as
74 // instance at a Location. In many cases, instances (such as Tasks) are only
80 // collection of DeathData instances. For each birth place Location that is
95 // STL maps, which are indexed by Location. As noted earlier, we can compare
120 // For a given birth location, information about births are spread across data
123 // birth thread, death thread, and location, along with the count of suc
164 const Location location() const { return location_; } function in class:tracked_objects::BirthOnThread
263 const Location location() const { return birth_->location(); } function in class:tracked_objects::Snapshot
    [all...]
  /external/chromium/chrome/browser/sync/glue/
bookmark_data_type_controller.h 45 const tracked_objects::Location& from_here,
password_data_type_controller.h 53 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
62 void OnUnrecoverableErrorImpl(const tracked_objects::Location& from_here,
  /external/llvm/include/llvm/Analysis/
LibCallSemantics.h 23 /// are accessed by libcalls. Identification of a location is doing with a
27 /// standard libm functions. The location that they may be interested in is
28 /// an abstract location that represents errno for the current target. In
29 /// this case, a location for errno is anything such that the predicate
34 /// it is possible to define a location that returns true iff it is passed
43 /// location for the specified call site. This returns "Yes" if we can tell
44 /// that the pointer *does definitely* refer to the location, "No" if we can
45 /// tell that the location *definitely does not* refer to the location, and
51 const AliasAnalysis::Location &Loc)
    [all...]
  /external/mockito/src/org/mockito/internal/progress/
MockingProgressImpl.java 16 import org.mockito.invocation.Location;
27 private Location stubbingInProgress = null;
73 Location temp = stubbingInProgress;
85 Location location = verificationMode.getLocation(); local
87 reporter.unfinishedVerificationException(location);
  /frameworks/base/services/java/com/android/server/location/
MockProvider.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.ILocationManager;
21 import android.location.Location;
22 import android.location.LocationProvider;
33 import com.android.internal.location.ProviderProperties;
34 import com.android.internal.location.ProviderRequest;
37 * A mock location provider used by LocationManagerService to implement test providers.
46 private final Location mLocation
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 21 import android.location.Location;
25 * Class that holds a tracker entry. An entry can be either a valid location, or
37 private Location mLocation;
65 // location extra keys used to retrieve debug info
87 private TrackerEntry(Location loc) {
89 mLocation = new Location(loc);
93 * Creates a TrackerEntry from a Location
95 static TrackerEntry createEntry(Location loc, float distFromNetLocation) {
131 private void setLocation(Location location)
215 Location location = new Location(tag); local
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
LocationStatsAggregator.java 25 import android.location.Criteria;
26 import android.location.Location;
27 import android.location.LocationListener;
28 import android.location.LocationManager;
29 import android.location.LocationProvider;
46 public static final String CURRENT_LOCATION = "Current Location";
48 public static final String UNKNOWN_LOCATION = "Unknown Location";
56 // record time when the location provider is set
73 // Fake location, used for testing
128 String location = mClusterManager.getSemanticLocation(); local
161 Location location = mLocationManager.getLastKnownLocation(provider); local
187 Location location = getLastKnownLocation(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParser.cs 149 dbg.Location( 50, -1 );
160 dbg.Location( 50, 6 );
194 dbg.Location( 50, 8 );
238 dbg.Location(51, 4);
299 dbg.Location( 53, -1 );
332 dbg.Location( 53, 8 );
339 dbg.Location( 53, 13 );
359 dbg.Location( 53, 43 );
374 dbg.Location( 54, 8 );
378 dbg.Location( 54, 11 )
    [all...]
ProfileGrammarParser.cs 153 dbg.Location( 50, -1 );
164 dbg.Location( 50, 6 );
198 dbg.Location( 50, 8 );
242 dbg.Location(51, 4);
303 dbg.Location( 53, -1 );
336 dbg.Location( 53, 8 );
343 dbg.Location( 53, 13 );
363 dbg.Location( 53, 43 );
378 dbg.Location( 54, 8 );
382 dbg.Location( 54, 11 )
    [all...]
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 26 import android.location.Criteria;
27 import android.location.GpsStatus;
28 import android.location.GpsStatus.Listener;
29 import android.location.Location;
30 import android.location.LocationListener;
31 import android.location.LocationManager;
32 import android.location.LocationProvider;
141 final Location location = mManager.getLastKnownLocation(providerName) local
163 Location location = listener.getLocation(); local
273 Location location = new Location(providerName); local
    [all...]
  /external/chromium/chrome/browser/sync/
test_profile_sync_service.h 43 MOCK_METHOD1(RequestNudge, void(const tracked_objects::Location&));
52 const tracked_objects::Location&);
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 24 Location __ubsan::getCallerLocation(uptr CallerLoc) {
26 return Location();
32 return Location(Loc);
69 static void renderLocation(Location Loc) {
71 case Location::LK_Source: {
82 case Location::LK_Module:
86 case Location::LK_Memory:
89 case Location::LK_Null:
157 /// Render a snippet of the address space near a location.
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 143 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,
214 const Location &LocB) {
233 bool TypeBasedAliasAnalysis::pointsToConstantMemory(const Location &Loc,
273 const Location &Loc) {
  /external/mockito/src/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsInOrderChecker.java 16 import org.mockito.invocation.Location;
35 Location lastLocation = finder.getLastLocation(chunk);
NonGreedyNumberOfInvocationsInOrderChecker.java 15 import org.mockito.invocation.Location;
37 Location lastLocation = null;
  /external/valgrind/main/drd/tests/
atomic_var.stderr.exp 6 Location 0x........ is 0 bytes inside local var "s_y"
sem_as_mutex3.stderr.exp 4 Location 0x........ is 0 bytes inside local var "s_d3"
sem_open3.stderr.exp 4 Location 0x........ is 0 bytes inside local var "s_d3"
  /frameworks/base/location/java/android/location/
ILocationManager.aidl 17 package android.location;
20 import android.location.Address;
21 import android.location.Criteria;
22 import android.location.GeocoderParams;
23 import android.location.Geofence;
24 import android.location.IGeocodeProvider;
25 import android.location.IGpsStatusListener;
26 import android.location.ILocationListener;
27 import android.location.Location;
    [all...]

Completed in 2540 milliseconds

1 2 3 45 6 7 8 91011>>