HomeSort by relevance Sort by last modified time
    Searched defs:location (Results 76 - 100 of 315) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
SwappedDataInputStream.java 140 int location = offset + ( length - remaining ); local
141 int count = read( data, location, remaining );
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/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);
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 84 out.println(location() + ": field reference " + dex.fieldIds().get(fieldId)
94 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
101 private String location() { method in class:FindUsages
131 out.println(location() + " field declared " + dex.fieldIds().get(fieldIndex));
139 out.println(location() + " method declared " + dex.methodIds().get(methodIndex));
  /external/antlr/src/org/antlr/runtime/debug/
BlankDebugEventListener.java 45 public void location(int line, int pos) {} method in class:BlankDebugEventListener
DebugEventListener.java 107 /** The parser is going to look arbitrarily ahead; mark this location,
139 public void location(int line, int pos); method in interface:DebugEventListener
172 * location 7 1
177 * location 7 5
180 * location 7 7
  /external/bluetooth/glib/gio/
gicon.c 428 * @error: Return location for error.
479 GFile *location; local
480 location = g_file_new_for_commandline_arg (str);
481 icon = g_file_icon_new (location);
482 g_object_unref (location);
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 146 gfx::Rect location() const { return location_; } function in class:BrowserAccessibility
  /external/clang/lib/StaticAnalyzer/Checkers/
OSAtomicChecker.cpp 120 SVal location = state->getSVal(theValueExpr); local
130 dyn_cast_or_null<TypedValueRegion>(location.getAsRegion())) {
134 state, location, &OSAtomicLoadTag, LoadTy);
152 // from a location that the Environment would typically not be used
184 dyn_cast_or_null<TypedValueRegion>(location.getAsRegion())) {
189 stateEqual, location, val, &OSAtomicStoreTag);
  /external/stlport/test/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/webkit/Source/JavaScriptCore/runtime/
JSFunction.cpp 187 WriteBarrierBase<Unknown>* location = getDirectLocation(exec->globalData(), propertyName); local
189 if (!location) {
193 location = getDirectLocation(exec->globalData(), propertyName);
196 slot.setValue(this, location->get(), offsetForLocation(location));
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.h 77 FloatRect(const FloatPoint& location, const FloatSize& size)
78 : m_location(location), m_size(size) { }
85 FloatPoint location() const { return m_location; } function in class:WebCore::FloatRect
88 void setLocation(const FloatPoint& location) { m_location = location; }
210 return a.location() == b.location() && a.size() == b.size();
215 return a.location() != b.location() || a.size() != b.size();
  /external/webkit/Source/WebCore/platform/graphics/filters/
FilterEffect.cpp 71 IntPoint location = m_absolutePaintRect.location(); local
72 location.move(-effectRect.x(), -effectRect.y());
73 return IntRect(location, m_absolutePaintRect.size());
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.cpp 71 size_t location = contexts.find(context); local
72 if (location != WTF::notFound)
73 contexts.remove(location);
  /frameworks/base/location/java/android/location/
GpsStatus.java 17 package android.location;
138 * data from the Location Manager Service to its cached GpsStatus instance.
  /frameworks/base/location/java/com/android/internal/location/
DummyLocationProvider.java 17 package com.android.internal.location;
19 import android.location.ILocationManager;
20 import android.location.LocationProvider;
25 * of the provider whcih it shadows, but does not actually provide location
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProvider.java 17 package com.android.location.provider;
21 import android.location.Criteria;
22 import android.location.ILocationManager;
23 import android.location.ILocationProvider;
24 import android.location.Location;
33 * An abstract superclass for location providers that are implemented
35 * Location providers can be implemented as services and return the result of
120 public void updateLocation(Location location) {
    [all...]
  /frameworks/base/location/tests/locationtests/src/android/location/
LocationManagerTest.java 17 package android.location;
20 import android.location.Criteria;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
88 String loc1 = Location.convert(-80.075, Location.FORMAT_DEGREES);
92 String loc1b = Location.convert(-80.0, Location.FORMAT_DEGREES)
    [all...]
LocationTest.java 17 package android.location;
24 * Unit tests for android.location.Location
29 // ***** Tests for Location.convert
35 result = Location.convert(testDegreesCoord);
46 result = Location.convert(testMinutesCoord);
57 result = Location.convert(testSecondsCoord);
68 result = Location.convert(testSecondsCoord);
79 result = Location.convert(-80.075, Location.FORMAT_DEGREES)
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/test/
test_main.cpp 170 GLint location; member in struct:__anon15615::Attribute
199 return _attributes[i].location;
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 17 package com.android.server.location;
LocationProviderInterface.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.Location;
26 * Location Manager's interface for location providers.
53 void updateLocation(Location location);
PassiveProvider.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.ILocationManager;
21 import android.location.Location;
22 import android.location.LocationManager;
23 import android.location.LocationProvider;
31 * A passive location provider reports locations received from other providers
33 * location updates.
133 public void updateLocation(Location location)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
ComprehensiveCountryDetectorTest.java 17 package com.android.server.location;
19 import android.location.Country;
20 import android.location.CountryListener;
225 // The location refresh should not running.
  /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);

Completed in 650 milliseconds

1 2 34 5 6 7 8 91011>>