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

1 2 3 4 5 67 8 91011>>

  /device/moto/shamu/sepolicy/
gsiffd.te 7 # Write to /data/misc/location/gsiff/
11 # Write to /data/misc/location/quipc/
  /external/chromium-trace/catapult/tracing/tracing/model/
annotation_test.html 8 <link rel="import" href="/tracing/model/location.html">
23 var start = new tr.model.Location(50, fakeYComponents1);
24 var end = new tr.model.Location(100, fakeYComponents2);
37 var location = new tr.model.Location(120, fakeYComponents);
40 new tr.model.CommentBoxAnnotation(location, text);
41 assert.equal(commentBoxAnnotation.location, location);
  /external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp 14 //get location of maximum
18 //get location of minimum
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
ClassFileDumperTest.java 44 final File location = new File(folder.getRoot(), "classes"); local
45 final ClassFileDumper dumper = new ClassFileDumper(location.toString());
47 assertContents(location,
53 final File location = new File(folder.getRoot(), "classes"); local
54 final ClassFileDumper dumper = new ClassFileDumper(location.toString());
56 assertContents(location, "Main.aff06045a340cd62.class");
65 private void assertContents(File location, String filename)
67 InputStream in = new FileInputStream(new File(location, filename));
  /external/llvm/autoconf/m4/
config_project.m4 6 AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),
10 AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 9 import org.mockito.invocation.Location;
20 Location getLocation();
  /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";
  /external/sfntly/cpp/src/sfntly/data/
readable_font_data.cc 175 int32_t location = 0; local
179 location = (top + bottom) / 2;
180 int32_t location_start = ReadUShort(start_index + location * start_offset);
182 // location is below current location
183 top = location;
186 int32_t location_end = ReadUShort(end_index + location * end_offset);
191 return location;
193 // location is above the current location
205 int32_t location = 0; local
230 int32_t location = 0; local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
Label.java 38 @Nullable MethodLocation location; field in class:Label
43 Label(MethodLocation location) {
44 this.location = location;
53 if (location == null) {
54 throw new IllegalStateException("Cannot get the location of a label that hasn't been placed yet.");
56 return location;
60 return location != null;
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/
ParameterFrameworkConfigurationPolicy.xml.in 6 <Location Folder="">
8 </Location>
  /frameworks/native/services/surfaceflinger/RenderEngine/
Program.h 48 /* Returns the location of the specified attribute */
51 /* Returns the location of the specified uniform */
70 /* location of the projection matrix uniform */
73 /* location of the color matrix uniform */
76 /* location of the texture matrix uniform */
79 /* location of the sampler uniform */
82 /* location of the alpha plane uniform */
85 /* location of the color uniform */
  /ndk/tests/device/test-gnustl-full/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; local
47 CPPUNIT_ASSERT(location==16);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str); local
57 CPPUNIT_ASSERT(location==4);
67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); local
69 CPPUNIT_ASSERT((location - v1.begin())==12);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less); local
79 CPPUNIT_ASSERT((location - str) == 4);
  /ndk/tests/device/test-stlport/unit/
bound_test.cpp 46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; local
47 CPPUNIT_ASSERT(location==16);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str); local
57 CPPUNIT_ASSERT(location==4);
67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); local
69 CPPUNIT_ASSERT((location - v1.begin())==12);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less); local
79 CPPUNIT_ASSERT((location - str) == 4);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
ldxmov-2.l 3 .*:4: Warning: This is the location of the conflicting usage
5 .*:7: Warning: This is the location of the conflicting usage
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
sample.rs 27 static bool sub_test_RGBA_1D(rs_allocation alloc1D, float location, float lod,
30 float4 result = rsSample(alloc1D, gNearest, location, lod);
33 result = rsSample(alloc1D, gLinear, location, lod);
36 result = rsSample(alloc1D, gMipNearest, location, lod);
39 result = rsSample(alloc1D, gMipLinear, location, lod);
44 static bool sub_test_RGBA_2D(rs_allocation alloc2D, float2 location, float lod,
47 float4 result = rsSample(alloc2D, gNearest, location, lod);
50 result = rsSample(alloc2D, gLinear, location, lod);
53 result = rsSample(alloc2D, gMipNearest, location, lod);
56 result = rsSample(alloc2D, gMipLinear, location, lod)
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
LocalizedMatcher.java 11 import org.mockito.invocation.Location;
18 private Location location; field in class:LocalizedMatcher
22 this.location = new LocationImpl();
37 public Location getLocation() {
38 return location;
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardware.aidl 17 package android.hardware.location;
19 import android.location.IFusedGeofenceHardware;
20 import android.location.IGpsGeofenceHardware;
21 import android.hardware.location.GeofenceHardwareRequestParcelable;
22 import android.hardware.location.IGeofenceHardwareCallback;
23 import android.hardware.location.IGeofenceHardwareMonitorCallback;
  /frameworks/base/location/java/com/android/internal/location/
ILocationProvider.aidl 17 package com.android.internal.location;
19 import android.location.Location;
24 import com.android.internal.location.ProviderProperties;
25 import com.android.internal.location.ProviderRequest;
28 * Binder interface for services that implement location providers.
  /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/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
Scope.java 22 import android.databinding.tool.store.Location;
39 public static void enter(final Location location) {
42 public List<Location> provideScopeLocation() {
43 return Arrays.asList(location);
126 List<Location> locations = loc.provideScopeLocation();
130 for (Location location : locations) {
131 sb.append(location).append("\n");
144 List<Location> locations = null
    [all...]
  /packages/apps/Camera2/src/com/android/camera/session/
CaptureSessionFactory.java 19 import android.location.Location;
31 * @param location the location of the new session.
35 long sessionStartMillis, Location location);
CaptureSessionFactoryImpl.java 19 import android.location.Location;
43 Location location) {
46 return new CaptureSessionImpl(title, sessionStartTime, location, temporarySessionFile,
48 mStackSaverFactory.create(title, location));
  /packages/apps/LegacyCamera/src/com/android/camera/
LocationManager.java 20 import android.location.Location;
21 import android.location.LocationProvider;
26 * A class that handles everything about location.
33 private android.location.LocationManager mLocationManager;
37 new LocationListener(android.location.LocationManager.GPS_PROVIDER),
38 new LocationListener(android.location.LocationManager.NETWORK_PROVIDER)
51 public Location getCurrentLocation() {
56 Location l = mLocationListeners[i].current();
59 Log.d(TAG, "No location received yet.")
    [all...]
  /art/compiler/optimizing/
code_generator_mips.h 80 Location GetNextLocation(Primitive::Type type) OVERRIDE;
81 Location GetReturnLocation(Primitive::Type type) const OVERRIDE;
82 Location GetMethodLocation() const OVERRIDE;
99 Location GetReturnLocation(Primitive::Type return_type);
109 Location GetObjectLocation() const OVERRIDE {
110 return Location::RegisterLocation(A1);
112 Location GetFieldIndexLocation() const OVERRIDE {
113 return Location::RegisterLocation(A0);
115 Location GetReturnLocation(Primitive::Type type) const OVERRIDE {
117 ? Location::RegisterPairLocation(V0, V1
    [all...]
  /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...]

Completed in 1114 milliseconds

1 2 3 4 5 67 8 91011>>