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

1 2 3 45 6 7 8 91011>>

  /frameworks/base/location/tests/locationtests/src/android/location/
GeocoderTest.java 1 package android.location;
19 import android.location.Address;
20 import android.location.Geocoder;
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 21 import android.location.Location;
25 * Class that holds a tracker entry. An entry can be either a valid location, or
37 private Location mLocation;
65 // location extra keys used to retrieve debug info
87 private TrackerEntry(Location loc) {
89 mLocation = new Location(loc);
93 * Creates a TrackerEntry from a Location
95 static TrackerEntry createEntry(Location loc, float distFromNetLocation) {
131 private void setLocation(Location location)
215 Location location = new Location(tag); local
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebKitNSStringExtras.mm 184 return [self rangeOfString:prefix options:(NSCaseInsensitiveSearch | NSAnchoredSearch)].location != NSNotFound;
229 if (nonSpace.location == NSNotFound) {
234 options:0 range:NSMakeRange(nonSpace.location, length - nonSpace.location)];
235 if (space.location == NSNotFound) {
236 space.location = length;
239 if (space.location > nonSpace.location) {
244 NSMakeRange(nonSpace.location, space.location - nonSpace.location)]]
    [all...]
WebNSURLExtras.mm 186 if (hostNameOrStringStart.location == NSNotFound) {
189 unichar c = [string characterAtIndex:hostNameOrStringStart.location];
190 remaining.location = NSMaxRange(hostNameOrStringStart);
191 remaining.length = stringLength - remaining.location;
199 unsigned hostNameStart = remaining.location;
202 if (hostNameEnd.location == NSNotFound) {
203 hostNameEnd.location = stringLength;
206 remaining.location = hostNameEnd.location;
207 remaining.length = stringLength - remaining.location;
    [all...]
  /dalvik/vm/compiler/codegen/arm/
CodegenFactory.c 51 if (rlSrc.location == kLocPhysReg) {
53 } else if (rlSrc.location == kLocRetval) {
56 assert(rlSrc.location == kLocDalvikFrame);
84 if (rlSrc.location == kLocPhysReg) {
86 } else if (rlSrc.location == kLocRetval) {
90 assert(rlSrc.location == kLocDalvikFrame);
116 if (rlSrc.location == kLocDalvikFrame) {
118 rlSrc.location = kLocPhysReg;
120 } else if (rlSrc.location == kLocRetval) {
122 rlSrc.location = kLocPhysReg
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/instr/
instrTask.java 58 + ": instrumentation path must be specified", location).fillInStackTrace ();
62 + ": output directory must be specified for '" + m_outMode + "' output mode", location).fillInStackTrace ();
112 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
121 + ": outdir|destdir attribute already set", location).fillInStackTrace ();
133 + ": metadata file attribute already set", location).fillInStackTrace ();
142 + ": metadata file attribute already set", location).fillInStackTrace ();
162 + ": invalid output mode: " + mode.getValue (), location).fillInStackTrace ();
  /external/v8/src/
messages.cc 93 Object** argv[argc] = { type_str.location(),
94 array.location(),
95 start_handle.location(),
96 end_handle.location(),
97 script.location(),
98 stack_trace_val.location() };
151 Object** argv[1] = { data.location() };
global-handles.cc 93 static Node* FromLocation(Object** location) {
95 return reinterpret_cast<Node*>(location);
103 LOG(HandleEvent("GlobalHandle::MakeWeak", handle().location()));
117 LOG(HandleEvent("GlobalHandle::ClearWeakness", handle().location()));
153 LOG(HandleEvent("GlobalHandle::Processing", handle().location()));
295 void GlobalHandles::Destroy(Object** location) {
297 if (location == NULL) return;
298 Node* node = Node::FromLocation(location);
306 void GlobalHandles::MakeWeak(Object** location, void* parameter,
309 Node::FromLocation(location)->MakeWeak(parameter, callback)
    [all...]
v8.h 93 static void FatalProcessOutOfMemory(const char* location);
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPart.java 238 * Set Content-Location value.
245 throw new NullPointerException("null content-location");
252 * Get Content-Location value.
382 // Assumption: At least one of the content-location / name / filename
385 byte[] location = (byte[]) mPartHeader.get(P_NAME);
386 if(null == location) {
387 location = (byte[]) mPartHeader.get(P_FILENAME);
389 if (null == location) {
390 location = (byte[]) mPartHeader.get(P_CONTENT_LOCATION);
394 if (null == location) {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
PolicyUtils.java 56 * Auxiliary action for opening InputStream from specified location.
61 * URL of target location.
63 public URL location; field in class:PolicyUtils.URLLoader
68 public URLLoader(URL location) {
69 this.location = location;
76 return location.openStream();
395 * dynamic policy location via system properties is allowed.
441 * to use additional policy location, read the system property under the
447 * If the additional location from the step above was specified to th
472 String location = system.getProperty(systemUrlKey); local
508 String location = AccessController local
    [all...]
  /external/qemu/android/skin/
file.c 271 SkinLocation* location; local
274 dprint( "### WARNING: ignoring part location without 'name' element" );
283 dprint( "### WARNING: ignoring part location with unknown name '%s'", partname );
287 ANEW0(location);
288 location->part = part;
289 location->anchor.x = x;
290 location->anchor.y = y;
291 location->rotation = rot;
293 return location;
520 SkinLocation* location = skin_location_create_from_v2( node, parts ) local
551 SkinLocation* location; local
    [all...]
  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES20.spec 76 void glGetUniformfv ( GLuint program, GLint location, GLfloat *params )
77 void glGetUniformiv ( GLuint program, GLint location, GLint *params )
113 void glUniform1f ( GLint location, GLfloat x )
114 void glUniform1fv ( GLint location, GLsizei count, const GLfloat *v )
115 void glUniform1i ( GLint location, GLint x )
116 void glUniform1iv ( GLint location, GLsizei count, const GLint *v )
117 void glUniform2f ( GLint location, GLfloat x, GLfloat y )
118 void glUniform2fv ( GLint location, GLsizei count, const GLfloat *v )
119 void glUniform2i ( GLint location, GLint x, GLint y )
120 void glUniform2iv ( GLint location, GLsizei count, const GLint *v )
    [all...]
  /external/webkit/WebKit/wx/bindings/python/samples/
simple.py 70 txt = wx.StaticText(self, -1, "Location:")
73 self.location = wx.ComboBox(
77 self.Bind(wx.EVT_COMBOBOX, self.OnLocationSelect, self.location)
78 self.location.Bind(wx.EVT_KEY_UP, self.OnLocationKey)
79 self.location.Bind(wx.EVT_CHAR, self.IgnoreReturn)
80 btnSizer.Add(self.location, 1, wx.EXPAND|wx.ALL, 2)
86 self.location.Append(self.current)
101 self.location.SetValue(event.GetURL())
106 URL = self.location.GetValue()
107 self.location.Append(URL
    [all...]
  /external/v8/test/cctest/
test-mark-compact.cc 288 GlobalHandles::MakeWeak(g1s1.location(),
291 GlobalHandles::MakeWeak(g1s2.location(),
299 GlobalHandles::MakeWeak(g2s1.location(),
302 GlobalHandles::MakeWeak(g2s2.location(),
313 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
314 Object** g2_objects[] = { g2s1.location(), g2s2.location() };
325 GlobalHandles::MakeWeak(root.location(),
331 Object** g1_objects[] = { g1s1.location(), g1s2.location() }
    [all...]
  /frameworks/base/services/java/com/android/server/
UiModeManagerService.java 35 import android.location.Criteria;
36 import android.location.Location;
37 import android.location.LocationListener;
38 import android.location.LocationManager;
106 private Location mLocation;
236 // A LocationListener to initialize the network location provider. The location updates
237 // are handled through the passive location provider.
239 public void onLocationChanged(Location location)
    [all...]
  /external/chromium/base/
tracked_objects.cc 69 BirthOnThread::BirthOnThread(const Location& location)
70 : location_(location),
74 Births::Births(const Location& location)
75 : BirthOnThread(location),
257 Births* ThreadData::TallyABirth(const Location& location) {
261 BirthMap::iterator it = birth_map_.find(location);
267 Births* tracker = new Births(location);
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoLocationPermissionTest.java 24 import android.location.Location;
25 import android.location.LocationListener;
26 import android.location.LocationManager;
35 * Verify the location access without specific permissions.
59 * Verify that listen or get cell location requires permissions.
126 * Verify that listening for GPS location requires permissions.
174 * Verify that getting the last known GPS location requires permissions.
184 * Verify that getting the last known network location requires permissions.
314 Location location = new Location(TEST_PROVIDER_NAME) local
    [all...]
  /frameworks/base/services/java/com/android/server/location/
MockProvider.java 17 package com.android.server.location;
19 import android.location.Criteria;
20 import android.location.ILocationManager;
21 import android.location.Location;
22 import android.location.LocationProvider;
33 * A mock location provider used by LocationManagerService to implement test providers.
49 private final Location mLocation;
74 mLocation = new Location(name);
165 public void setLocation(Location l)
    [all...]
  /external/bison/src/
complain.c 48 warn_at (location loc, const char *message, ...)
85 complain_at (location loc, const char *message, ...)
121 fatal_at (location loc, const char *message, ...)
symtab.c 42 location startsymbol_location;
49 symbol_new (uniqstr tag, location loc)
55 res->location = loc;
108 redeclaration (symbol* s, const char *what, location first, location second)
121 symbol_type_set (symbol *sym, uniqstr type_name, location loc)
139 symbol_destructor_set (symbol *sym, const char *destructor, location loc)
156 symbol_printer_set (symbol *sym, const char *printer, location loc)
174 symbol_precedence_set (symbol *sym, int prec, assoc a, location loc)
195 symbol_class_set (symbol *sym, symbol_class class, location loc, bool declaring
    [all...]
  /external/webkit/WebCore/platform/text/
AtomicString.cpp 66 static void translate(StringImpl*& location, const char* const& c, unsigned hash)
68 location = StringImpl::create(c).releaseRef();
69 location->setHash(hash);
70 location->setInTable();
145 static void translate(StringImpl*& location, const UCharBuffer& buf, unsigned hash)
147 location = StringImpl::create(buf.s, buf.length).releaseRef();
148 location->setHash(hash);
149 location->setInTable();
171 static void translate(StringImpl*& location, const HashAndCharacters& buffer, unsigned hash)
173 location = StringImpl::create(buffer.characters, buffer.length).releaseRef()
    [all...]
  /external/webkit/WebCore/platform/win/
WheelEventWin.cpp 68 PlatformWheelEvent::PlatformWheelEvent(HWND hWnd, const FloatSize& delta, const FloatPoint& location)
81 // Global Position is just x, y location of event
82 POINT point = {location.x(), location.y()};
  /external/webkit/WebCore/platform/graphics/
IntRect.h 73 IntRect(const IntPoint& location, const IntSize& size)
74 : m_location(location), m_size(size) { }
80 IntPoint location() const { return m_location; } function in class:WebCore::IntRect
83 void setLocation(const IntPoint& location) { m_location = location; }
193 return a.location() == b.location() && a.size() == b.size();
198 return a.location() != b.location() || a.size() != b.size();
  /external/chromium/net/url_request/
url_request_view_net_internals_job.h 30 virtual bool IsRedirectResponse(GURL* location, int* http_status_code);

Completed in 2573 milliseconds

1 2 3 45 6 7 8 91011>>