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

<<11121314151617181920>>

  /external/libbrillo/brillo/errors/
error.h 26 static ErrorPtr Create(const tracked_objects::Location& location,
30 static ErrorPtr Create(const tracked_objects::Location& location,
39 const tracked_objects::Location& location,
46 const tracked_objects::Location& location,
60 // Returns the location of the error in the source code.
99 Error(const tracked_objects::Location& location
    [all...]
  /external/v8/test/mjsunit/regress/
regress-419663.js 30 var location = script.locationFromPosition(p, false);
31 assertEquals(l, location.line);
32 assertEquals(c, location.column);
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusedLocationProvider.java 17 package com.android.location.fused;
23 import com.android.location.provider.LocationProviderBase;
24 import com.android.location.provider.ProviderPropertiesUnbundled;
25 import com.android.location.provider.ProviderRequestUnbundled;
31 import android.location.Criteria;
32 import android.location.LocationProvider;
FusionEngine.java 17 package com.android.location.fused;
23 import com.android.location.provider.LocationProviderBase;
24 import com.android.location.provider.LocationRequestUnbundled;
25 import com.android.location.provider.ProviderRequestUnbundled;
28 import android.location.Location;
29 import android.location.LocationListener;
30 import android.location.LocationManager;
40 void reportLocation(Location location);
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
MockProvider.java 17 package com.android.server.location;
19 import android.location.ILocationManager;
20 import android.location.Location;
21 import android.location.LocationProvider;
32 import com.android.internal.location.ProviderProperties;
33 import com.android.internal.location.ProviderRequest;
36 * A mock location provider used by LocationManagerService to implement test providers.
45 private final Location mLocation;
63 mLocation = new Location(name)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
find_test.cpp 42 int *location = find((int*)numbers, (int*)numbers + 10, 25); local
44 CPPUNIT_ASSERT((location - numbers)==5);
69 int* location = find((int*)years, (int*)years + yearCount, 1972); local
71 CPPUNIT_ASSERT((location - years)==3);
78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd); local
80 CPPUNIT_ASSERT((location - numbers)==3);
  /ndk/tests/device/test-stlport/unit/
find_test.cpp 42 int *location = find((int*)numbers, (int*)numbers + 10, 25); local
44 CPPUNIT_ASSERT((location - numbers)==5);
69 int* location = find((int*)years, (int*)years + yearCount, 1972); local
71 CPPUNIT_ASSERT((location - years)==3);
78 int *location = find_if((int*)numbers, (int*)numbers + 6, odd); local
80 CPPUNIT_ASSERT((location - numbers)==3);
  /external/libchrome/base/
tracked_objects_unittest.cc 51 // |location|.
52 void TallyABirth(const Location& location, const std::string& thread_name) {
59 Births* birth = ThreadData::TallyABirthIfActive(location);
82 EXPECT_EQ(kFile, process_data_phase.tasks[0].birth.location.file_name);
84 process_data_phase.tasks[0].birth.location.function_name);
86 process_data_phase.tasks[0].birth.location.line_number);
169 Location location(kFunction, kFile, kLineNumber, NULL);
170 ThreadData::TallyABirthIfActive(location);
    [all...]
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 17 package com.example.android.location;
25 import android.location.Address;
26 import android.location.Geocoder;
27 import android.location.Location;
28 import android.location.LocationListener;
29 import android.location.LocationManager;
70 * This sample demonstrates how to incorporate location based services in your app and
71 * process location updates. The app also shows how to convert lat/long coordinates to
90 // Receive location updates from the fine location provider (gps) only
215 Location location = null; local
    [all...]
  /external/autotest/server/
base_utils.py 50 def get(location, local_copy = False):
54 location: the source of the material to get. This source may
61 The location of the file or directory where the requested
64 directory, the location will contain a trailing '/'
68 # location is a file-like object
69 if hasattr(location, "read"):
72 shutil.copyfileobj(location, tmpfileobj)
76 if isinstance(location, types.StringTypes):
77 # location is a URL
78 if location.startswith('http') or location.startswith('ftp')
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationVerifier.java 17 package com.android.cts.verifier.location;
19 import android.location.Location;
20 import android.location.LocationListener;
21 import android.location.LocationManager;
78 public void onLocationChanged(Location location) {
85 long timestamp = location.getTime();
93 if (location.isFromMockProvider() != mIsMockProvider) {
94 fail("location coming from \"" + mProvider
    [all...]
LocationModeBatterySavingTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeDeviceOnlyTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeHighAccuracyTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
LocationModeOffTestActivity.java 17 package com.android.cts.verifier.location;
19 import android.location.LocationManager;
  /external/libbrillo/brillo/streams/
stream_utils.cc 83 bool ErrorStreamClosed(const tracked_objects::Location& location,
86 location,
93 bool ErrorOperationNotSupported(const tracked_objects::Location& location,
96 location,
103 bool ErrorReadPastEndOfStream(const tracked_objects::Location& location,
106 location,
113 bool ErrorOperationTimeout(const tracked_objects::Location& location
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
VertexBufferObject.java 156 final int location = shader.getAttributeLocation(attribute.alias); local
157 if (location < 0)
159 shader.enableVertexAttribute(location);
162 shader.setVertexAttribute(location, attribute.numComponents, GL20.GL_UNSIGNED_BYTE, true, attributes.vertexSize,
165 shader.setVertexAttribute(location, attribute.numComponents, GL20.GL_FLOAT, false, attributes.vertexSize,
171 final int location = locations[i]; local
172 if (location < 0)
174 shader.enableVertexAttribute(location);
177 shader.setVertexAttribute(location, attribute.numComponents, GL20.GL_UNSIGNED_BYTE, true, attributes.vertexSize,
180 shader.setVertexAttribute(location, attribute.numComponents, GL20.GL_FLOAT, false, attributes.vertexSize,
205 final int location = locations[i]; local
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 40 public class Location {
51 public Location parentLocation;
54 public Location() {
58 public Location(Location other) {
65 public Location(Token start, Token end) {
84 public Location(ParserRuleContext context) {
89 public Location(int startLine, int startOffset, int endLine, int endOffset) {
98 return "Location{" +
107 public void setParentLocation(Location parentLocation)
206 Location location = new Location(); local
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
GnssStatusTest.java 1 package android.location.cts;
3 import android.location.GnssStatus;
22 // and hard asserts that Location/GPS (Provider) is turned on if is Cts Verifier.
  /device/generic/goldfish-opengl/system/GLESv2_enc/
GL2EncoderUtils.cpp 36 GLenum uniformType(void * self, GLuint program, GLint location)
40 return ctx->shared()->getProgramUniformType(program, location);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
location_info_mixin.js 25 if (closingToken.location) {
34 start: closingToken.location.start,
35 end: closingToken.location.end
39 loc.end = closingToken.location.end;
43 //NOTE: patch open elements stack, so we can assign end location for the elements
92 //their end location explicitly.
118 node.__location = token.location;
127 //So we will use token location stored in this methods for the element.
134 this.attachableElementLocation = token.location;
139 this.attachableElementLocation = token.location;
    [all...]
  /external/deqp/framework/randomshaders/
rsgVariable.hpp 64 void setLayoutLocation (int location) { m_layoutLocation = location; }
  /external/libbrillo/brillo/
process_reaper.h 13 #include <base/location.h>
43 bool WatchForChild(const tracked_objects::Location& from_here,
60 tracked_objects::Location location; member in struct:brillo::final::WatchedProcess
  /external/libchrome/base/test/
test_pending_task.h 11 #include "base/location.h"
24 TestPendingTask(const tracked_objects::Location& location,
52 tracked_objects::Location location; member in struct:base::TestPendingTask
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
GL20.java 536 public void glGetUniformfv (int program, int location, FloatBuffer params);
538 public void glGetUniformiv (int program, int location, IntBuffer params);
587 public void glUniform1f (int location, float x);
589 public void glUniform1fv (int location, int count, FloatBuffer v);
591 public void glUniform1fv (int location, int count, float v[], int offset);
593 public void glUniform1i (int location, int x);
595 public void glUniform1iv (int location, int count, IntBuffer v);
597 public void glUniform1iv (int location, int count, int v[], int offset);
599 public void glUniform2f (int location, float x, float y);
601 public void glUniform2fv (int location, int count, FloatBuffer v);
    [all...]

Completed in 1108 milliseconds

<<11121314151617181920>>