HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 176 - 200 of 1520) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/common/extensions/docs/js/
bootstrap.js 19 if (window.location.search == "?regenerate" ||
21 (window.location.href.match("^file:")) &&
39 if (location.hash.length > 1)
40 location.href = location.href;
43 (window.location.href.match("^file:")) &&
  /external/chromium/crypto/
openssl_util.h 87 // cases you should pass FROM_HERE as the |location|.
88 void ClearOpenSSLERRStack(const tracked_objects::Location& location);
94 // Pass FROM_HERE as |location|, to help track the source of OpenSSL error
95 // messages. Note any diagnostic emitted will be tagged with the location of
97 explicit OpenSSLErrStackTracer(const tracked_objects::Location& location)
98 : location_(location) {
106 const tracked_objects::Location location_;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ImageBasedHeightMapGrid.java 51 public HeightMap getHeightMapAt(Vector3f location) {
53 int x = (int) location.x;
54 int z = (int) location.z;
  /external/markdown/markdown/
odict.py 122 def index_for_location(self, location):
123 """ Return index or None for a given location. """
124 if location == '_begin':
126 elif location == '_end':
128 elif location.startswith('<') or location.startswith('>'):
129 i = self.index(location[1:])
130 if location.startswith('>'):
137 raise ValueError('Not a valid location: "%s". Location key
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
IntRectHash.h 40 return intHash(static_cast<uint64_t>(DefaultHash<WebCore::IntPoint>::Hash::hash(key.location())) << 32 | DefaultHash<WebCore::IntSize>::Hash::hash(key.size()));
44 return DefaultHash<WebCore::IntPoint>::Hash::equal(a.location(), b.location()) && DefaultHash<WebCore::IntSize>::Hash::equal(a.size(), b.size());
  /frameworks/base/location/java/com/android/internal/location/
DummyLocationProvider.java 17 package com.android.internal.location;
19 import android.location.ILocationManager;
20 import android.location.LocationProvider;
25 * of the provider whcih it shadows, but does not actually provide location
  /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/Source/WebKit/mac/Misc/
WebKitNSStringExtras.mm 180 return [self rangeOfString:prefix options:(NSCaseInsensitiveSearch | NSAnchoredSearch)].location != NSNotFound;
225 if (nonSpace.location == NSNotFound) {
230 options:0 range:NSMakeRange(nonSpace.location, length - nonSpace.location)];
231 if (space.location == NSNotFound) {
232 space.location = length;
235 if (space.location > nonSpace.location) {
240 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...]
  /external/webkit/Source/JavaScriptCore/runtime/
Lookup.cpp 76 WriteBarrierBase<Unknown>* location = thisObj->getDirectLocation(exec->globalData(), propertyName); local
78 if (!location) {
89 location = thisObj->getDirectLocation(exec->globalData(), propertyName);
92 slot.setValue(thisObj, location->get(), thisObj->offsetForLocation(location));
  /external/webkit/Source/WebCore/inspector/front-end/
ScriptFormatter.js 39 WebInspector.ScriptFormatter.locationToPosition = function(lineEndings, location)
41 var position = location.lineNumber ? lineEndings[location.lineNumber - 1] + 1 : 0;
42 return position + location.columnNumber;
52 var location = {};
53 location.lineNumber = lineEndings.upperBound(position - 1);
54 if (!location.lineNumber)
55 location.columnNumber = position;
57 location.columnNumber = position - lineEndings[location.lineNumber - 1] - 1
    [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/
global-handles.cc 56 // Maps handle location (slot) to the containing node.
57 static Node* FromLocation(Object** location) {
59 return reinterpret_cast<Node*>(location);
114 Object** location() { return &object_; } function in class:v8::internal::GlobalHandles::Node
115 Handle<Object> handle() { return Handle<Object>(location()); }
426 void GlobalHandles::Destroy(Object** location) {
429 if (location == NULL) return;
430 Node::FromLocation(location)->Release(this);
434 void GlobalHandles::MakeWeak(Object** location, void* parameter,
437 Node::FromLocation(location)->MakeWeak(this, parameter, callback)
    [all...]
global-handles.h 121 void Destroy(Object** location);
129 void MakeWeak(Object** location,
133 static void SetWrapperClassId(Object** location, uint16_t class_id);
152 void ClearWeakness(Object** location);
155 void MarkIndependent(Object** location);
158 static bool IsNearDeath(Object** location);
161 static bool IsWeak(Object** location);
  /external/v8/test/cctest/
test-mark-compact.cc 324 global_handles->MakeWeak(g1s1.location(),
327 global_handles->MakeWeak(g1s2.location(),
330 global_handles->MakeWeak(g1c1.location(),
340 global_handles->MakeWeak(g2s1.location(),
343 global_handles->MakeWeak(g2s2.location(),
346 global_handles->MakeWeak(g2c1.location(),
357 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
358 Object** g1_children[] = { g1c1.location() };
359 Object** g2_objects[] = { g2s1.location(), g2s2.location() }
    [all...]
  /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...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk_unittest.cc 69 RunInfo RunInfoForAttrType(guint location,
93 if (attr->end_index <= location)
97 // the length to the next start - location.
99 // If the start is still less than the location, then reset
102 if (attr->start_index <= location) {
105 retval.length_ = attr->start_index - location;
119 retval.length_ = end_location - location;
122 retval.length_ = attr->end_index - location;
131 guint RunLengthForAttrType(guint location,
134 RunInfo info = RunInfoForAttrType(location,
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorDebuggerAgent.cpp 170 RefPtr<InspectorObject> location = resolveBreakpoint(breakpointId, it->first, breakpoint); local
171 if (location)
172 (*locations)->pushObject(location);
177 static bool parseLocation(ErrorString* errorString, RefPtr<InspectorObject> location, String* sourceId, int* lineNumber, int* columnNumber)
179 if (!location->getString("sourceID", sourceId) || !location->getNumber("lineNumber", lineNumber)) {
185 location->getNumber("columnNumber", columnNumber);
189 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, PassRefPtr<InspectorObject> location, const String* const optionalCondition, String* outBreakpointId, RefPtr<InspectorObject>* actualLocation)
195 if (!parseLocation(errorString, location, &sourceId, &lineNumber, &columnNumber))
225 void InspectorDebuggerAgent::continueToLocation(ErrorString* errorString, PassRefPtr<InspectorObject> location)
273 RefPtr<InspectorObject> location = InspectorObject::create(); local
396 RefPtr<InspectorObject> location = resolveBreakpoint(it->first, sourceID, breakpoint); local
    [all...]
  /external/qemu/android/skin/
file.c 288 SkinLocation* location; local
291 dprint( "### WARNING: ignoring part location without 'name' element" );
300 dprint( "### WARNING: ignoring part location with unknown name '%s'", partname );
304 ANEW0(location);
305 location->part = part;
306 location->anchor.x = x;
307 location->anchor.y = y;
308 location->rotation = rot;
310 return location;
537 SkinLocation* location = skin_location_create_from_v2( node, parts ) local
568 SkinLocation* location; local
    [all...]
  /frameworks/native/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.console_1.0.200.v20100601.jar 
  /external/chromium/chrome/browser/
enumerate_modules_model_win.cc 56 if (a.location == b.location)
59 return a.location < b.location;
75 return (module.location == module_in.location) &&
106 // Location must be entered as hashes (see GenerateHash). Filename is mandatory.
107 // Entries without any Description, Signer info, or Location will never be
110 // NOTE: Please keep this list sorted by dll name, then location.
148 // hblitesahook.dll. Each report has different version number in location
601 string16 location = entry->location; local
952 GenerateHash(WideToUTF8(module.location), &location); local
    [all...]
  /external/webkit/Source/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/valgrind/tsan/
suppressions.cc 43 struct Location {
49 vector<Location> locations;
184 Location location = {LT_STAR, ""}; local
185 trace->locations.push_back(location);
193 Location location = {LT_OBJ, s2}; local
194 trace->locations.push_back(location);
197 Location location = {LT_FUN, s2} local
381 Location& location = ctx.tmpl->locations[tmpl_index]; local
    [all...]

Completed in 532 milliseconds

1 2 3 4 5 6 78 91011>>