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

1 2 3 4 5 6 7 8 91011>>

  /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;