HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 1 - 25 of 1520) 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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 36 location(file, line, column) ::= "<file>:<line>:<column>:"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
gnu.stg 36 location(file, line, column) ::= "<file>:<line>:"
40 report(location, message, type) ::= "<location> <type>: <message>"
vs2005.stg 36 location(file, line, column) ::= "<file>(<line>,<column>)"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
  /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:__anon1896
63 #define YYLTYPE location
65 extern location const empty_location;
67 void location_print (FILE *out, location loc);
  /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;
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
20 import android.location.Location;
45 new Location("LocationProvider");
47 Location l = createTestLocation();
48 Location location = new Location(l); local
49 assertTestLocation(location);
52 new Location((Location) null)
62 Location location = new Location("LocationProvider"); local
68 Location location = new Location(""); local
203 Location location = new Location(""); local
252 Location location = new Location(""); local
265 Location location = new Location(""); local
278 Location location = new Location(""); local
299 Location location = createTestLocation(); local
308 Location location = new Location(""); local
321 Location location = new Location(""); local
334 Location location = new Location(""); local
345 Location location = new Location(""); local
358 Location location = new Location(""); local
371 Location location = new Location(""); local
395 Location location = createTestLocation(); local
401 Location location = createTestLocation(); local
    [all...]
  /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...]
  /cts/tests/tests/webkitsecurity/assets/
location-new-window-no-crash.js 1 description("Tests that manipulating location properties in a just-created window object does not crash. Note: Turn off pop-up blocking to run this in-browser.");
12 // location.
14 shouldBe("testWindow.location.toString()", "'about:blank'");
15 shouldBe("testWindow.location.href", "'about:blank'");
16 shouldBe("testWindow.location.protocol", "'about:'");
17 shouldBe("testWindow.location.host", "''"); // Firefox throws an exception
18 shouldBe("testWindow.location.hostname", "''"); // Firefox throws an exception
19 shouldBe("testWindow.location.port", "''");
20 shouldBe("testWindow.location.pathname", "'blank'"); // Firefox returns the empty string
21 shouldBe("testWindow.location.search", "''")
    [all...]

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>