HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 176 - 200 of 4231) sorted by null

1 2 3 4 5 6 78 91011>>

  /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...]
  /packages/apps/Gallery/src/com/android/camera/
ReverseGeocoderTask.java 19 import android.location.Address;
20 import android.location.Geocoder;
32 public void onComplete(String location);
71 protected void onPostExecute(String location) {
72 mCallback.onComplete(location);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkManager.java 41 String location = getNdkLocation(); local
42 if (location.length() == 0)
45 return isValidNdkLocation(location);
48 public static boolean isValidNdkLocation(String location) {
49 File dir = new File(location);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/
location_info_mixin.js 9 //NOTE: add location info builder method
11 token.location = {
17 //NOTE: patch token creation methods and attach location objects
43 //NOTE: patch token emission methods to determine end location
45 //NOTE: if we have pending character token make it's end location equal to the
46 //current token's start location.
48 this.currentCharacterToken.location.end = this.currentToken.location.start;
50 this.currentToken.location.end = this.preprocessor.pos + 1;
55 //NOTE: if we have character token and it's location wasn't set in the _emitCurrentToken()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 255 const LocationRecorder* location) {
264 if (location != NULL) {
265 location->AttachComments(&leading, &trailing);
274 const LocationRecorder* location) {
275 if (TryConsumeEndOfDeclaration(text, location)) {
359 DescriptorPool::ErrorCollector::ErrorLocation location) {
362 descriptor, location, location_->span(0), location_->span(1));
495 LocationRecorder location(root_location,
497 return ParseMessageDefinition(file->add_message_type(), location, file);
499 LocationRecorder location(root_location
    [all...]
  /art/compiler/optimizing/
common_arm64.h 55 static inline vixl::Register XRegisterFrom(Location location) {
56 DCHECK(location.IsRegister()) << location;
57 return vixl::Register::XRegFromCode(VIXLRegCodeFromART(location.reg()));
60 static inline vixl::Register WRegisterFrom(Location location) {
61 DCHECK(location.IsRegister()) << location;
62 return vixl::Register::WRegFromCode(VIXLRegCodeFromART(location.reg()))
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
StaggeredGridDefault.java 38 Location loc = getLocation(i);
46 Location loc = getLocation(mLastVisibleIndex);
71 Location loc = getLocation(mLastVisibleIndex);
88 Location loc = getLocation(i);
106 Location loc = getLocation(indexLimit);
158 Location loc = getLocation(indexLimit);
286 int location = mReversedFlow ? getRowMin(rowIndex) : getRowMax(rowIndex); local
287 if (location == Integer.MAX_VALUE || location == Integer.MIN_VALUE) {
290 location = mReversedFlow ? getRowMin(mNumRows - 1) : getRowMax(mNumRows - 1)
387 int location = mReversedFlow ? getRowMax(rowIndex) : getRowMin(rowIndex); local
    [all...]
  /external/clang/test/PCH/
stmts.h 78 void *location = &&start; local
81 location = &&done;
86 goto *location;
  /external/google-breakpad/src/tools/linux/md2core/
minidump_memory_range.h 66 // |location|, or an empty range if the subrange is out of bounds.
67 MinidumpMemoryRange Subrange(const MDLocationDescriptor& location) const {
68 return MinidumpMemoryRange::Subrange(location.rva, location.data_size);
  /external/libchrome/crypto/
openssl_util.h 10 #include "base/location.h"
65 // cases you should pass FROM_HERE as the |location|.
67 const tracked_objects::Location& location);
73 // Pass FROM_HERE as |location|, to help track the source of OpenSSL error
74 // messages. Note any diagnostic emitted will be tagged with the location of
76 explicit OpenSSLErrStackTracer(const tracked_objects::Location& location)
77 : location_(location) {
85 const tracked_objects::Location location_
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderInstruction.java 45 @Nullable MethodLocation location; field in class:BuilderInstruction
64 if (location == null) {
65 throw new IllegalStateException("Cannot get the location of an instruction that hasn't been added to a " +
68 return location;
  /frameworks/base/core/java/android/webkit/
PluginList.java 83 int location = mPlugins.indexOf(plugin); local
84 if (location != -1) {
85 mPlugins.remove(location);
  /frameworks/base/location/lib/java/com/android/location/provider/
ActivityRecognitionProviderClient.java 17 package com.android.location.provider;
20 import android.hardware.location.IActivityRecognitionHardware;
21 import android.hardware.location.IActivityRecognitionHardwareClient;
ProviderRequestUnbundled.java 17 package com.android.location.provider;
22 import android.location.LocationRequest;
24 import com.android.internal.location.ProviderRequest;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackViewState.java 54 * The location this view is currently rendered at.
58 public int location; field in class:StackViewState
78 location = svs.location;
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
TwilightManager.java 21 import android.location.Location;
22 import android.location.LocationManager;
81 // Else, we will try and grab the last known location
82 final Location location = getLastKnownLocation(); local
83 if (location != null) {
84 updateState(location);
88 Log.i(TAG, "Could not get last known location. This is probably because the app does not"
89 + " have any location permissions. Falling back to hardcoded
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorImpl.java 30 private final DOMLocator location; field in class:DOMErrorImpl
42 this.location = new DOMLocatorImpl(src.getLocation());
66 return location;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CountryMonitor.java 20 import android.location.Country;
21 import android.location.CountryDetector;
22 import android.location.CountryListener;
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
dylib.py 13 (?P<location>^.*)(?:^|/)
25 Location/Name.SomeVersion_Suffix.dylib
26 Location/Name.SomeVersion.dylib
27 Location/Name_Suffix.dylib
28 Location/Name.dylib
32 location='Location',
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
51 location=location,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
dylib.py 13 (?P<location>^.*)(?:^|/)
25 Location/Name.SomeVersion_Suffix.dylib
26 Location/Name.SomeVersion.dylib
27 Location/Name_Suffix.dylib
28 Location/Name.dylib
32 location='Location',
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
51 location=location,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 13 (?P<location>^.*)(?:^|/)
25 Location/Name.SomeVersion_Suffix.dylib
26 Location/Name.SomeVersion.dylib
27 Location/Name_Suffix.dylib
28 Location/Name.dylib
32 location='Location',
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
51 location=location,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 13 (?P<location>^.*)(?:^|/)
25 Location/Name.SomeVersion_Suffix.dylib
26 Location/Name.SomeVersion.dylib
27 Location/Name_Suffix.dylib
28 Location/Name.dylib
32 location='Location',
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
51 location=location,
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 15 return msie.getDoc().location.hash;
21 d.location.hash = hash;
26 var hash = msie.iframe ? msie.getHash() : location.hash;
30 location.hash = currentHash;
43 location.hash = currentHash = hash;
71 currentHash = location.hash;
  /external/bison/src/
muscle-tab.h 26 # include "location.h"
88 in addition, issue a synchronization line for the location LOC. */
90 void muscle_code_grow (const char *key, const char *value, location loc);
104 location loc);
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
135 a Bison error. Otherwise, return its definition location in a form
139 location muscle_percent_define_get_loc (char const *variable);
143 that's a Bison error. Otherwise, return its definition location as a
186 void muscle_percent_code_grow (char const *qualifier, location qualifier_loc,
187 char const *code, location code_loc)
    [all...]
  /external/doclava/res/assets/templates/assets/
jquery-history.js 15 return msie.getDoc().location.hash;
21 d.location.hash = hash;
26 var hash = msie.iframe ? msie.getHash() : location.hash;
30 location.hash = currentHash;
43 location.hash = currentHash = hash;
71 currentHash = location.hash;

Completed in 1630 milliseconds

1 2 3 4 5 6 78 91011>>