HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 151 - 175 of 3960) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareMonitorEvent.java 17 package android.hardware.location;
20 import android.location.Location;
34 private final Location mLocation;
40 Location location) {
44 mLocation = location;
69 * Returns the last known location according to the monitoring system.
71 public Location getLocation() {
83 Location location = source.readParcelable(classLoader)
    [all...]
IFusedLocationHardware.aidl 17 package android.hardware.location;
19 import android.hardware.location.IFusedLocationHardwareSink;
20 import android.location.FusedBatchOptions;
23 * Fused Location hardware interface.
25 * modules that offer Location batching capabilities.
31 * Registers a sink with the Location Hardware object.
38 * Unregisters a sink with the Location Hardware object.
  /external/clang/tools/libclang/
CXSourceLocation.cpp 33 // pointer, or the CXSourceLocation is a null location.
211 int clang_Location_isInSystemHeader(CXSourceLocation location) {
213 SourceLocation::getFromRawEncoding(location.int_data);
218 *static_cast<const SourceManager*>(location.ptr_data[0]);
222 int clang_Location_isFromMainFile(CXSourceLocation location) {
224 SourceLocation::getFromRawEncoding(location.int_data);
229 *static_cast<const SourceManager*>(location.ptr_data[0]);
233 void clang_getExpansionLocation(CXSourceLocation location,
239 if (!isASTUnitSourceLocation(location)) {
240 CXLoadedDiagnostic::decodeLocation(location, file, line, column, offset)
    [all...]
  /external/chromium-trace/catapult/dashboard/dashboard/
report_test.py 122 location = response.headers.get('location')
123 self.assertIn('sid=', location)
125 state_id = location.split('sid=')[1]
136 location = response.headers.get('location')
137 self.assertIsNone(location)
162 location = response.headers.get('location')
163 self.assertIn('sid=', location)
    [all...]
  /external/v8/test/cctest/
test-global-handles.cc 106 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
107 Object** g2_objects[] = { g2s1.location(), g2s2.location() };
116 skippable_objects.Add(*g1s1.location());
117 skippable_objects.Add(*g1s2.location());
118 skippable_objects.Add(*g2s1.location());
119 skippable_objects.Add(*g2s2.location());
125 CHECK(can_skip_called_objects.Contains(*g1s1.location()));
126 CHECK(can_skip_called_objects.Contains(*g1s2.location()));
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
FlpHardwareProvider.java 17 package com.android.server.location;
20 import android.hardware.location.GeofenceHardware;
21 import android.hardware.location.GeofenceHardwareImpl;
22 import android.hardware.location.GeofenceHardwareRequestParcelable;
23 import android.hardware.location.IFusedLocationHardware;
24 import android.hardware.location.IFusedLocationHardwareSink;
25 import android.location.FusedBatchOptions;
26 import android.location.IFusedGeofenceHardware;
27 import android.location.Location;
    [all...]
  /external/libbrillo/brillo/streams/
stream_utils.h 8 #include <base/location.h>
17 const tracked_objects::Location& location, ErrorPtr* error);
21 const tracked_objects::Location& location, ErrorPtr* error);
25 const tracked_objects::Location& location, ErrorPtr* error);
29 const tracked_objects::Location& location, ErrorPtr* error);
37 // The |location| parameter will be used to report the origin of the erro
    [all...]
  /external/libweave/include/weave/
error.h 13 #include <base/location.h>
43 static ErrorPtr Create(const tracked_objects::Location& location,
46 static ErrorPtr Create(const tracked_objects::Location& location,
54 const tracked_objects::Location& location,
60 const tracked_objects::Location& location,
72 // Returns the location of the error in the source code
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 214 * @param location an instruction <i>of this list</i>.
221 public void set(final AbstractInsnNode location, final AbstractInsnNode insn) {
222 if (check && !(contains(location) && insn.index == -1)) {
225 AbstractInsnNode next = location.next;
232 AbstractInsnNode prev = location.prev;
240 int index = location.index;
246 location.index = -1; // i no longer belongs to an InsnList
247 location.prev = null;
248 location.next = null;
360 * @param location an instruction <i>of this list</i> after which insn must be
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES31.java 407 // C function void glProgramUniform1i ( GLuint program, GLint location, GLint v0 )
411 int location,
415 // C function void glProgramUniform2i ( GLuint program, GLint location, GLint v0, GLint v1 )
419 int location,
424 // C function void glProgramUniform3i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2 )
428 int location,
434 // C function void glProgramUniform4i ( GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3 )
438 int location,
445 // C function void glProgramUniform1ui ( GLuint program, GLint location, GLuint v0 )
449 int location,
    [all...]
  /external/mesa3d/src/mesa/main/
uniforms.c 93 * \param data Location to dump the data.
131 _mesa_Uniform1fARB(GLint location, GLfloat v0)
134 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, &v0, GL_FLOAT);
138 _mesa_Uniform2fARB(GLint location, GLfloat v0, GLfloat v1)
144 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC2);
148 _mesa_Uniform3fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2)
155 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC3);
159 _mesa_Uniform4fARB(GLint location, GLfloat v0, GLfloat v1, GLfloat v2,
168 _mesa_uniform(ctx, ctx->Shader.ActiveProgram, location, 1, v, GL_FLOAT_VEC4);
172 _mesa_Uniform1iARB(GLint location, GLint v0
    [all...]
uniforms.h 90 _mesa_Uniform1ui(GLint location, GLuint v0);
93 _mesa_Uniform2ui(GLint location, GLuint v0, GLuint v1);
96 _mesa_Uniform3ui(GLint location, GLuint v0, GLuint v1, GLuint v2);
99 _mesa_Uniform4ui(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3);
102 _mesa_Uniform1uiv(GLint location, GLsizei count, const GLuint *value);
105 _mesa_Uniform2uiv(GLint location, GLsizei count, const GLuint *value);
108 _mesa_Uniform3uiv(GLint location, GLsizei count, const GLuint *value);
111 _mesa_Uniform4uiv(GLint location, GLsizei count, const GLuint *value);
124 _mesa_UniformMatrix2x3fv(GLint location, GLsizei count, GLboolean transpose,
128 _mesa_UniformMatrix3x2fv(GLint location, GLsizei count, GLboolean transpose
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [all...]
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
GlShader.java 87 int location = GLES20.glGetAttribLocation(program, label); local
88 if (location < 0) {
91 return location;
102 int location = getAttribLocation(label); local
103 GLES20.glEnableVertexAttribArray(location);
104 GLES20.glVertexAttribPointer(location, dimension, GLES20.GL_FLOAT, false, 0, buffer);
112 int location = GLES20.glGetUniformLocation(program, label); local
113 if (location < 0) {
116 return location;
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 17 package com.android.location.provider;
24 import android.location.ILocationManager;
25 import android.location.Location;
26 import android.location.LocationManager;
34 import com.android.internal.location.ILocationProvider;
35 import com.android.internal.location.ProviderProperties;
36 import com.android.internal.location.ProviderRequest;
40 * Base class for location providers implemented as unbundled services.
42 * <p>The network location provider must export a service with actio
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
GnssMeasurementsEventTest.java 17 package android.location.cts;
19 import android.location.GnssClock;
20 import android.location.GnssMeasurement;
21 import android.location.GnssMeasurementsEvent;
22 import android.location.GnssStatus;
  /development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/gps/
GpsLocationTest.java 19 import android.location.Location;
20 import android.location.LocationListener;
21 import android.location.LocationManager;
29 * GPS Location Test
31 * Test the GPS API by verifying the previously set location
36 private Location mLocation;
38 * Prior to running this test the GPS location must be set to the following
53 * verify that the last location equals to the location se
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/data/
mergeTask.java 40 + ": no valid input data files have been specified", location).fillInStackTrace ();
59 + ": merge data file attribute already set", location).fillInStackTrace ();
68 + ": merge data file attribute already set", location).fillInStackTrace ();
77 + ": merge data file attribute already set", location).fillInStackTrace ();
86 + ": merge data file attribute already set", location).fillInStackTrace ();
  /external/v8/src/
pending-compilation-error-handler.cc 18 MessageLocation location(script, start_position_, end_position_);
45 isolate->Throw(*error, &location);
53 handle(Smi::FromInt(location.start_pos()), isolate),
58 handle(Smi::FromInt(location.end_pos()), isolate),
64 isolate->Throw(*error, &location);
  /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...]

Completed in 1463 milliseconds

1 2 3 4 5 67 8 91011>>