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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
Vector.java 124 * Adds the specified object into this vector at the specified location. The
126 * increasing their index by 1. If the location is equal to the size of this
129 * @param location
134 * if {@code location < 0 || location > size()}.
139 public void add(int location, E object) {
140 insertElementAt(object, location);
161 * Inserts the objects in the specified collection at the specified location
164 * or higher than {@code location} have their index increased by the size of
167 * @param location
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
PassiveProvider.java 17 package com.android.server.location;
22 import com.android.internal.location.ProviderProperties;
23 import com.android.internal.location.ProviderRequest;
25 import android.location.Criteria;
26 import android.location.ILocationManager;
27 import android.location.Location;
28 import android.location.LocationManager;
29 import android.location.LocationProvider;
37 * A passive location provider reports locations received from other provider
    [all...]
CountryDetectorBase.java 17 package com.android.server.location;
20 import android.location.Country;
21 import android.location.CountryListener;
LocationProviderInterface.java 17 package com.android.server.location;
22 import com.android.internal.location.ProviderProperties;
23 import com.android.internal.location.ProviderRequest;
30 * Location Manager's interface for location providers.
LocationBasedCountryDetector.java 17 package com.android.server.location;
20 import android.location.Address;
21 import android.location.Country;
22 import android.location.Geocoder;
23 import android.location.Location;
24 import android.location.LocationListener;
25 import android.location.LocationManager;
37 * location providers and the GeoCoder
39 * Use {@link #detectCountry} to start querying. If the location can not b
    [all...]
  /external/lldb/examples/python/
diagnose_nsstring.py 8 def read_memory(process,location,size):
12 byte = process.ReadUnsignedFromMemory(x+location,1,error)
137 print >>result,"Explicit length location is at 0x%x - read value is %d\n" % (explicit_length_offset,explicit_length)
140 location = 2 * ptr_size + nsstring_address
141 location = process.ReadPointerFromMemory(location,error)
143 location = 3 * ptr_size + nsstring_address
145 location = 2 * ptr_size + nsstring_address
150 location += ptr_size
152 location = process.ReadPointerFromMemory(location,error
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
misspelling.cc 7 // |location|, and |length| instead of only misspelled text, because the
35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {
39 size_t location,
44 location(location),
60 result->SetInteger("misspelledStart", location);
71 if (location > context.length())
73 return context.substr(location, length);
  /external/chromium_org/third_party/angle/src/compiler/translator/
ValidateOutputs.cpp 33 const int location = type.getLayoutQualifier().location; local
39 else if (location == -1)
45 OutputMap::iterator mapEntry = mOutputMap.find(location);
49 if (location + elementCount > mMaxDrawBuffers)
51 error(symbol->getLine(), "output location must be < MAX_DRAW_BUFFERS", name.c_str());
56 const int offsetLocation = location + elementIndex;
75 mSink.location(loc);
  /external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsSmartNulls.java 13 import org.mockito.invocation.Location;
49 final Location location = new LocationImpl(); local
50 return Mockito.mock(type, new ThrowsSmartNullPointer(invocation, location));
57 private final Location location; field in class:ReturnsSmartNulls.ThrowsSmartNullPointer
59 public ThrowsSmartNullPointer(InvocationOnMock unstubbedInvocation, Location location) {
61 this.location = location;
70 new Reporter().smartNullPointerException(unstubbedInvocation.toString(), location); local
    [all...]
  /external/chromium_org/chrome/browser/mac/
mac_startup_profiler.h 28 enum Location {
38 // Record timestamp for the given location event.
39 void Profile(Location location);
47 // Returns the name of the histogram for the given location.
48 const std::string HistogramName(Location location);
50 // Records UMA metrics for a specific location.
51 void RecordHistogram(Location location, const base::TimeDelta& delta)
    [all...]
  /external/chromium_org/chrome/common/media_galleries/
iphoto_library.cc 15 const base::FilePath& location,
18 location(location),
  /external/chromium_org/crypto/
openssl_util.h 9 #include "base/location.h"
63 // cases you should pass FROM_HERE as the |location|.
65 const tracked_objects::Location& location);
71 // Pass FROM_HERE as |location|, to help track the source of OpenSSL error
72 // messages. Note any diagnostic emitted will be tagged with the location of
74 explicit OpenSSLErrStackTracer(const tracked_objects::Location& location)
75 : location_(location) {
83 const tracked_objects::Location location_
    [all...]
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 39 String location = getHeader(LOCATION); local
40 if (location != null) {
41 into.put(LOCATION, location);
47 /** The name of a dump entry whose value is the response Location header. */
48 public static final String LOCATION = "Location";
  /libcore/luni/src/main/java/java/text/
StringCharacterIterator.java 51 * @param location
54 * if {@code location} is negative or greater than the length
57 public StringCharacterIterator(String value, int location) {
61 if (location < 0 || location > end) {
64 offset = location;
77 * @param location
80 * if {@code start < 0}, {@code start > end}, {@code location <
81 * start}, {@code location > end} or if {@code end} is greater
84 public StringCharacterIterator(String value, int start, int end, int location) {
    [all...]
  /external/chromium_org/sync/api/
sync_error_unittest.cc 9 #include "base/location.h"
26 tracked_objects::Location location = FROM_HERE; local
29 SyncError error(location, SyncError::DATATYPE_ERROR, msg, type);
31 EXPECT_EQ(location.line_number(), error.location().line_number());
39 tracked_objects::Location location = FROM_HERE; local
42 SyncError error(location, SyncError::DATATYPE_POLICY_ERROR, msg, type);
44 EXPECT_EQ(location.line_number(), error.location().line_number())
53 tracked_objects::Location location = FROM_HERE; local
77 tracked_objects::Location location = FROM_HERE; local
105 tracked_objects::Location location = FROM_HERE; local
132 tracked_objects::Location location = FROM_HERE; local
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-sourceinfo.js 108 var location = script.locationFromPosition(p);
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
123 // Remember the location.
266 var location; variable
    [all...]
  /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.IGpsMeasurementsListener;
25 import android.location.IGpsNavigationMessageListener;
26 import android.location.IGpsStatusListener;
27 import android.location.ILocationListener;
28 import android.location.Location
    [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES31.spec 20 void glProgramUniform1i ( GLuint program, GLint location, GLint v0 )
21 void glProgramUniform2i ( GLuint program, GLint location, GLint v0, GLint v1 )
22 void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 )
23 void glProgramUniform4i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3 )
24 void glProgramUniform1ui ( GLuint program, GLint location, GLuint v0 )
25 void glProgramUniform2ui ( GLuint program, GLint location, GLuint v0, GLuint v1 )
26 void glProgramUniform3ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2 )
27 void glProgramUniform4ui ( GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3 )
28 void glProgramUniform1f ( GLuint program, GLint location, GLfloat v0 )
29 void glProgramUniform2f ( GLuint program, GLint location, GLfloat v0, GLfloat v1
    [all...]
  /art/compiler/dex/
reg_location.h 43 RegLocationType location:3; member in struct:art::RegLocation
51 unsigned home:1; // Does this represent the home location?
  /cts/tests/tests/location/src/android/location/cts/
GpsStatusTest.java 17 package android.location.cts;
21 import android.location.GpsSatellite;
22 import android.location.GpsStatus;
23 import android.location.LocationManager;
  /cts/tools/signature-tools/src/signature/io/
IApiDeltaExternalizer.java 24 void externalize(String location, IApiDelta delta) throws IOException;
  /external/bison/src/
scan-gram.h 35 # define GRAM_LEX_DECL int gram_lex (GRAM_STYPE *val, location *loc)
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.h 36 virtual PP_Bool GetLocation(PP_Rect* location) OVERRIDE;
37 virtual void SetLocation(const PP_Rect* location) OVERRIDE;
49 virtual void SetLocationInternal(const PP_Rect* location) = 0;
51 PP_Rect location() const { return location_; } function in class:content::PPB_Widget_Impl
  /external/chromium_org/net/url_request/
data_protocol_handler.cc 19 bool DataProtocolHandler::IsSafeRedirectTarget(const GURL& location) const {
  /external/chromium_org/ppapi/c/dev/
ppb_widget_dev.h 55 * Get the location of the widget.
57 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location);
59 * Set the location of the widget.
61 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);
76 PP_Bool (*GetLocation)(PP_Resource widget, struct PP_Rect* location);
77 void (*SetLocation)(PP_Resource widget, const struct PP_Rect* location);

Completed in 696 milliseconds

1 2 3 45 6 7 8 91011>>