/frameworks/base/location/java/android/location/ |
Address.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;
|
INetInitiatedListener.aidl | 18 package android.location;
|
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);
|
IGeocodeProvider.aidl | 17 package android.location; 19 import android.location.Address; 20 import android.location.GeocoderParams; 23 * An interface for location providers implementing the Geocoder services.
|
/external/webkit/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...] |
/external/webkit/JavaScriptCore/assembler/ |
CodeLocation.h | 71 CodeLocationCommon(MacroAssemblerCodePtr location) 72 : MacroAssemblerCodePtr(location) 80 explicit CodeLocationInstruction(MacroAssemblerCodePtr location) 81 : CodeLocationCommon(location) {} 82 explicit CodeLocationInstruction(void* location) 83 : CodeLocationCommon(MacroAssemblerCodePtr(location)) {} 89 explicit CodeLocationLabel(MacroAssemblerCodePtr location) 90 : CodeLocationCommon(location) {} 91 explicit CodeLocationLabel(void* location) 92 : 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:__anon1624 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);
|
/external/webkit/WebCore/html/canvas/ |
WebGLUniformLocation.cpp | 35 PassRefPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, long location) 37 return adoptRef(new WebGLUniformLocation(program, location)); 40 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, long location) 42 , m_location(location)
|
WebGLUniformLocation.h | 42 static PassRefPtr<WebGLUniformLocation> create(WebGLProgram* program, long location); 46 long location() const { return m_location; } function in class:WebCore::WebGLUniformLocation 49 WebGLUniformLocation(WebGLProgram* program, long location);
|
/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...] |
advance_test.cpp | 34 IntVector::iterator location = v.begin(); local 35 CPPUNIT_ASSERT(*location==0); 36 advance(location, 5); 37 CPPUNIT_ASSERT(*location==5);
|
/ndk/sources/android/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...] |
/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) { 40 errorOffset = location; 46 * @return the location of this exception in the parsed string.
|
/libcore/luni/src/main/java/java/util/ |
AbstractSequentialList.java | 37 public void add(int location, E object) { 38 listIterator(location).add(object); 42 public boolean addAll(int location, Collection<? extends E> collection) { 43 ListIterator<E> it = listIterator(location); 53 public E get(int location) { 55 return listIterator(location).next(); 67 public abstract ListIterator<E> listIterator(int location); 70 public E remove(int location) { 72 ListIterator<E> it = listIterator(location); 82 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; 32 @TestTargetClass(Location.class) 51 method = "Location", 52 args = {android.location.Location.class} 56 method = "Location", 63 new Location("LocationProvider"); 65 Location l = createTestLocation() 66 Location location = new Location(l); local 85 Location location = new Location("LocationProvider"); local 99 Location location = new Location(""); local 249 Location location = new Location(""); local 330 Location location = new Location(""); local 365 Location location = new Location(""); local 400 Location location = new Location(""); local 433 Location location = createTestLocation(); local 454 Location location = new Location(""); local 479 Location location = new Location(""); local 504 Location location = new Location(""); local 537 Location location = new Location(""); local 562 Location location = new Location(""); local 587 Location location = new Location(""); local 616 Location location = createTestLocation(); local 627 Location location = createTestLocation(); local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
DdmUiPreferences.java | 58 public static void setSymbolsLocation(String location) { 59 sSymbolLocation = location; 66 public static void setAddr2LineLocation(String location) { 67 sAddr2LineLocation = location; 74 public static void setTraceviewLocation(String location) { 75 sTraceviewLocation = location;
|
/frameworks/base/core/tests/hosttests/test-apps/ExternalSharedPermsFL/src/com/android/framework/externalsharedpermsfltestapp/ |
ExternalSharedPermsFLTest.java | 20 import android.location.Location; 21 import android.location.LocationListener; 22 import android.location.LocationManager; 28 /** The use of location manager below is simply to simulate an app that 37 public void onLocationChanged(Location location) {}
|