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

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/tools/toolutil/
toolutil.h 39 IcuToolErrorCode(const char *loc) : location(loc) {}
44 const char *location; member in class:IcuToolErrorCode
  /external/stlport/test/unit/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
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);
  /frameworks/base/location/java/android/location/
CountryListener.java 17 package android.location;
LocationListener.java 17 package android.location;
23 * the location has changed. These methods are called if the
24 * LocationListener has been registered with the location manager service
31 * Called when the location has changed.
33 * <p> There are no restrictions on the use of the supplied Location object.
35 * @param location The new location, as a Location object.
37 void onLocationChanged(Location location);
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
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/
advance_test.cpp 34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
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);
  /external/webkit/Source/WebCore/html/canvas/
WebGLUniformLocation.cpp 35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GC3Dint location)
37 return adoptRef(new WebGLUniformLocation(program, location));
40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GC3Dint location)
42 , m_location(location)
57 GC3Dint WebGLUniformLocation::location() const function in class:WebCore::WebGLUniformLocation
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
25 import android.location.Location;
34 @TestTargetClass(Location.class)
53 method = "Location",
54 args = {android.location.Location.class}
58 method = "Location",
65 new Location("LocationProvider");
67 Location l = createTestLocation()
68 Location location = new Location(l); local
87 Location location = new Location("LocationProvider"); local
101 Location location = new Location(""); local
252 Location location = new Location(""); local
333 Location location = new Location(""); local
368 Location location = new Location(""); local
403 Location location = new Location(""); local
436 Location location = createTestLocation(); local
457 Location location = new Location(""); local
482 Location location = new Location(""); local
507 Location location = new Location(""); local
540 Location location = new Location(""); local
565 Location location = new Location(""); local
590 Location location = new Location(""); local
619 Location location = createTestLocation(); local
630 Location location = createTestLocation(); local
    [all...]
GeocoderTest.java 17 package android.location.cts;
25 import android.location.Address;
26 import android.location.Geocoder;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
InfoSink.cpp 34 void TInfoSinkBase::location(TSourceLoc loc) { function in class:TInfoSinkBase
56 location(loc);
  /external/bison/src/
location.h 52 /* A location, that is, a region of source code. */
55 /* Boundary just before the location starts. */
58 /* Boundary just after the location ends. */
61 } location; typedef in typeref:struct:__anon1500
63 #define YYLTYPE location
65 extern location const empty_location;
67 void location_print (FILE *out, location loc);
symlist.h 25 # include "location.h"
33 location location; member in struct:symbol_list
41 location action_location;
57 symbol_list *symbol_list_new (symbol *sym, location loc);
65 location loc);
78 uniqstr symbol_list_n_type_name_get (symbol_list *l, location loc, int n);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebGrammarDetail.h 41 static PassRefPtr<WebGrammarDetail> create(int location, int length, ImmutableArray* guesses, const String& userDescription);
44 int location() const { return m_grammarDetail.location; } function in class:WebKit::WebGrammarDetail
52 WebGrammarDetail(int location, int length, ImmutableArray* guesses, const String& userDescription);
  /frameworks/base/location/lib/java/com/android/location/provider/
GeocodeProvider.java 17 package com.android.location.provider;
21 import android.location.Address;
22 import android.location.GeocoderParams;
23 import android.location.IGeocodeProvider;
56 * {@link android.location.Geocoder#getFromLocation(double, double, int)} method.
64 * {@link android.location.Geocoder#getFromLocationName(String, int, double, double, double, double)} method.
  /libcore/luni/src/main/java/java/net/
HttpRetryException.java 31 private String location = null; field in class:HttpRetryException
49 * response code, the given detail message and the value of the location
56 * @param location
59 public HttpRetryException(String detail, int code, String location) {
62 this.location = location;
66 * Gets the location value.
68 * @return the stored location from the HTTP header.
71 return location;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
TrackContentProvider.java 17 package com.android.ddmuilib.location;
19 import com.android.ddmuilib.location.GpxParser.Track;
TrackPoint.java 17 package com.android.ddmuilib.location;
WayPointContentProvider.java 17 package com.android.ddmuilib.location;
  /cts/tests/tests/telephony/src/android/telephony/cts/
NeighboringCellInfoTest.java 102 String location = "ffffffff"; local
  /external/bluetooth/glib/gio/tests/
g-icon.c 41 GFile *location; local
50 location = g_file_new_for_uri (uri);
51 icon = g_file_icon_new (location);
60 g_object_unref (location);
63 location = g_file_new_for_uri (uri);
64 icon = g_file_icon_new (location);
73 g_object_unref (location);
76 location = g_file_new_for_uri (uri);
77 icon = g_file_icon_new (location);
86 g_object_unref (location);
    [all...]
  /external/chromium/base/
utf_offset_string_conversions.h 76 // AdjustOffset(adjustments). Each Adjustment gives the original |location|
83 Adjustment(size_t location, size_t old_length, size_t new_length);
85 size_t location; member in struct:AdjustOffset::Adjustment
  /external/chromium/chrome/common/extensions/
extension_messages.h 102 // The location the extension was installed from.
103 Extension::Location location; member in struct:ExtensionMsg_Loaded_Params

Completed in 861 milliseconds

1 2 3 4 5 6 7 8 91011>>