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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
Address.aidl 17 package android.location;
Country.aidl 17 package android.location;
Criteria.aidl 17 package android.location;
GeocoderParams.aidl 17 package android.location;
Location.aidl 17 package android.location;
19 parcelable Location;
ICountryDetector.aidl 17 package android.location;
19 import android.location.Country;
20 import android.location.ICountryListener;
INetInitiatedListener.aidl 18 package android.location;
CountryListener.java 17 package android.location;
ICountryListener.aidl 17 package android.location;
19 import android.location.Country;
IGpsStatusProvider.aidl 17 package android.location;
19 import android.location.IGpsStatusListener;
22 * An interface for location providers that provide GPS status information.
ILocationListener.aidl 1 /* //device/java/android/android/location/ILocationListener.aidl
18 package android.location;
20 import android.location.Location;
28 void onLocationChanged(in Location location);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-96526-001.js 53 if (jumpto == 0) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg";
54 else if (jumpto == [0]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ImageName";
55 else if (jumpto == [1]) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg";
56 else if (jumpto == [2]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arsrferguson.jpg";
57 else if (jumpto == [3]) window.location = "http://www.newyankee.com/GetYankees2.cgi?akjamesmartin.jpg";
58 else if (jumpto == [4]) window.location = "http://www.newyankee.com/GetYankees2.cgi?aldaverackett.jpg";
59 else if (jumpto == [5]) window.location = "http://www.newyankee.com/GetYankees2.cgi?alericbrasher.jpg";
60 else if (jumpto == [6]) window.location = "http://www.newyankee.com/GetYankees2.cgi?algeorgewatkins.jpg";
61 else if (jumpto == [7]) window.location = "http://www.newyankee.com/GetYankees2.cgi?altoddcruise.jpg";
62 else if (jumpto == [8]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arkevinc.jpg"
    [all...]
  /libcore/luni/src/main/java/java/text/
ParseException.java 31 * message and the location of the error filled in.
35 * @param location
38 public ParseException(String detailMessage, int location) {
39 super(detailMessage + (" (at offset " + location + ")"));
40 errorOffset = location;
46 * @return the location of this exception in the parsed string.
  /external/webkit/Source/JavaScriptCore/assembler/
CodeLocation.h 69 CodeLocationCommon(MacroAssemblerCodePtr location)
70 : MacroAssemblerCodePtr(location)
78 explicit CodeLocationInstruction(MacroAssemblerCodePtr location)
79 : CodeLocationCommon(location) {}
80 explicit CodeLocationInstruction(void* location)
81 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {}
87 explicit CodeLocationLabel(MacroAssemblerCodePtr location)
88 : CodeLocationCommon(location) {}
89 explicit CodeLocationLabel(void* location)
90 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {}
    [all...]
  /external/bison/src/
symtab.h 27 # include "location.h"
56 /* The location of its first occurrence. */
57 location location; member in struct:symbol
61 location type_location;
65 location destructor_location;
69 location printer_location;
72 location prec_location;
101 symbol *symbol_get (const char *key, location loc);
105 symbol *dummy_symbol_get (location loc)
    [all...]
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);
reader.h 26 # include "location.h"
43 extern location last_braced_code_loc;
54 # define YY_DECL int gram_lex (YYSTYPE *val, location *loc)
65 void grammar_start_symbol_set (symbol *sym, location loc);
66 void prologue_augment (const char *prologue, location loc);
67 void grammar_current_rule_begin (symbol *lhs, location loc);
68 void grammar_current_rule_end (location loc);
70 void grammar_current_rule_prec_set (symbol *precsym, location loc);
71 void grammar_current_rule_dprec_set (int dprec, location loc);
72 void grammar_current_rule_merge_set (uniqstr name, location loc)
    [all...]
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);
  /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;
  /external/stlport/test/unit/
search_test.cpp 45 int* location; local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2);
47 CPPUNIT_ASSERT(location == v1 + 6);
49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
50 CPPUNIT_ASSERT(location != v2 + 6);
51 CPPUNIT_ASSERT(location - v2 == 3);
61 IntVec::iterator location; local
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
64 CPPUNIT_ASSERT(location == v1.end());
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end())
79 char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, (char const**)letters + letterCount, str_equal); local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
search_test.cpp 45 int* location; local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2);
47 CPPUNIT_ASSERT(location == v1 + 6);
49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
50 CPPUNIT_ASSERT(location != v2 + 6);
51 CPPUNIT_ASSERT(location - v2 == 3);
61 IntVec::iterator location; local
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
64 CPPUNIT_ASSERT(location == v1.end());
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end())
79 char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, (char const**)letters + letterCount, str_equal); local
    [all...]
  /ndk/tests/device/test-stlport/unit/
search_test.cpp 45 int* location; local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2);
47 CPPUNIT_ASSERT(location == v1 + 6);
49 location = search((int*)v2, (int*)v2 + 6, (int*)v3, (int*)v3 + 2);
50 CPPUNIT_ASSERT(location != v2 + 6);
51 CPPUNIT_ASSERT(location - v2 == 3);
61 IntVec::iterator location; local
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
64 CPPUNIT_ASSERT(location == v1.end());
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end())
79 char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, (char const**)letters + letterCount, str_equal); local
    [all...]
  /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
  /libcore/luni/src/main/java/java/util/
AbstractSequentialList.java 36 public void add(int location, E object) {
37 listIterator(location).add(object);
41 public boolean addAll(int location, Collection<? extends E> collection) {
42 ListIterator<E> it = listIterator(location);
52 public E get(int location) {
54 return listIterator(location).next();
66 public abstract ListIterator<E> listIterator(int location);
69 public E remove(int location) {
71 ListIterator<E> it = listIterator(location);
81 public E set(int location, E object)
    [all...]
  /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...]

Completed in 1101 milliseconds

1 2 3 4 5 6 7 8 91011>>