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

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 247 final void deleteCharAt0(int location) {
248 if (0 > location || location >= count) {
249 throw new StringIndexOutOfBoundsException(location);
251 int length = count - location - 1;
254 System.arraycopy(value, location + 1, value, location, length);
257 System.arraycopy(value, 0, newData, 0, location);
259 .arraycopy(value, location + 1, newData, location,
    [all...]
  /external/v8/src/
handles.h 45 INLINE(Handle(T** location)) { location_ = location; }
59 location_ = reinterpret_cast<T**>(handle.location());
73 T** location() const { function in class:v8::internal::Handle
81 return Handle<T>(reinterpret_cast<T**>(that.location()));
debug.cc 353 // called. If the executing code has a debug break at the location change
568 // Globalize the script object, make it weak and use the location of the
572 GlobalHandles::MakeWeak(reinterpret_cast<Object**>(script_.location()),
574 entry->value = script_.location();
604 Object** location = reinterpret_cast<Object**>(entry->value); local
605 ASSERT((*location)->IsScript());
606 GlobalHandles::ClearWeakness(location);
607 GlobalHandles::Destroy(location);
616 // Find the location of the global handle.
617 Script** location local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSFunction.cpp 152 JSValue* location = getDirectLocation(propertyName); local
154 if (!location) {
158 location = getDirectLocation(propertyName);
161 slot.setValueSlot(this, location, offsetForLocation(location));
JSActivation.cpp 76 if (JSValue* location = getDirectLocation(propertyName)) {
77 slot.setValueSlot(location);
  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.idl 571 // any getUniform(in WebGLProgram program, in WebGLUniformLocation location) raises(DOMException);
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 120 if (location.href.indexOf("/reference/") != -1) {
122 } else if (location.href.indexOf("/guide/") != -1) {
144 highlightNav(location.href);
188 var basePath = getBaseUri(location.pathname);
206 var basePath = getBaseUri(location.pathname);
239 window.location = uri;
247 var location = window.location.href;
248 if (location.indexOf("/"+cookiePath+"/") != -1) {
253 window.location = lastPage
    [all...]
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 1706 glGetUniformfv(EXTRACT(program), location, value); local
1712 glGetUniformiv(EXTRACT(program), location, value); local
    [all...]
WebSettingsImpl.cpp 183 void WebSettingsImpl::setUserStyleSheetLocation(const WebURL& location)
185 m_settings->setUserStyleSheetLocation(location);
  /external/grub/netboot/
sis900.c 123 static u16 sis900_read_eeprom(int location);
126 static u16 sis900_mdio_read(int phy_id, int location);
127 static void sis900_mdio_write(int phy_id, int location, int val);
333 * Description: reads and returns a given location from EEPROM
335 * Arguments: int location: requested EEPROM location
337 * Returns: u16: contents of requested EEPROM location
341 /* Read Serial EEPROM through EEPROM Access Register, Note that location is
343 static u16 sis900_read_eeprom(int location)
348 u32 read_cmd = location | EEread
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 32 import android.location.Address;
33 import android.location.Criteria;
34 import android.location.GeocoderParams;
35 import android.location.IGpsStatusListener;
36 import android.location.IGpsStatusProvider;
37 import android.location.ILocationListener;
38 import android.location.ILocationManager;
39 import android.location.INetInitiatedListener;
40 import android.location.Location;
1819 Location location = (Location) msg.obj; local
    [all...]
  /external/webkit/WebKitExamplePlugins/NetscapeInputMethodPlugin/
main.m 153 obj->selectedRange.location = [obj->textStorage length];
315 if (obj->selectedRange.location > 0) {
316 obj->selectedRange.location--;
322 if (obj->selectedRange.location < [obj->textStorage length]) {
323 obj->selectedRange.location++;
343 obj->selectedRange.location = range.location + [string length];
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java 17 package com.android.server.location;
25 import android.location.Criteria;
26 import android.location.IGpsStatusListener;
27 import android.location.IGpsStatusProvider;
28 import android.location.ILocationManager;
29 import android.location.INetInitiatedListener;
30 import android.location.Location;
31 import android.location.LocationManager;
32 import android.location.LocationProvider
    [all...]
  /external/webkit/WebKit/win/
WebPreferences.h 131 /* [retval][out] */ BSTR* location);
134 /* [in] */ BSTR location);
218 /* [retval][out] */ BSTR* location);
221 /* [in] */ BSTR location);
324 /* [out, retval] */ BSTR* location);
327 /* [in] */ BSTR location);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
AccessibilityUIElementMac.mm 137 return [description substringFromIndex:range.location];
227 void AccessibilityUIElement::getChildrenWithRange(Vector<AccessibilityUIElement>& elementVector, unsigned location, unsigned length)
229 NSArray* children = [m_element accessibilityArrayAttributeValues:NSAccessibilityChildrenAttribute index:location maxCount:length];
604 JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length)
606 NSRange range = NSMakeRange(location, length);
617 JSStringRef AccessibilityUIElement::stringForRange(unsigned location, unsigned length)
619 NSRange range = NSMakeRange(location, length);
691 NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length];
699 NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length];
713 NSMutableString *rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length]
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AlertService.java 155 final String location = alertCursor.getString(ALERT_INDEX_EVENT_LOCATION); local
241 notificationEventLocation = location;
274 String eventName, String location, int numReminders,
291 location, numReminders, highPriority);
298 if (!TextUtils.isEmpty(location)) {
299 notification.tickerText = eventName + " - " + location;
  /external/tinyxml/
tinyxmlparser.cpp 697 location.Clear();
700 location.row = prevData->cursor.row;
701 location.col = prevData->cursor.col;
705 location.row = 0;
706 location.col = 0;
708 TiXmlParsingData data( p, TabSize(), location.row, location.col );
709 location = data.Cursor();
1028 location = data->Cursor();
1239 location = data->Cursor()
    [all...]
  /device/htc/passion-common/
passion.mk 26 frameworks/base/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
  /external/chromium/net/url_request/
url_request_file_dir_job.cc 216 GURL* location, int* http_status_code) {
228 *location = request_->url().ReplaceComponents(replacements);
  /external/grub/stage2/
iso9660.h 181 iso_32bit_t location; member in struct:rock_ridge::__anon3815::CL
184 iso_32bit_t location; member in struct:rock_ridge::__anon3815::PL
  /external/stlport/test/eh/
como.mak 8 # point this to proper location
deccxx.mak 11 # point this to proper location
  /external/webkit/WebCore/platform/gtk/
ScrollbarGtk.cpp 136 loc = parent()->convertToContainingWindow(rect.location());
138 loc = parent()->contentsToWindow(rect.location());
  /external/webkit/WebCore/workers/
WorkerContext.idl 45 attribute [Replaceable] WorkerLocation location;
  /external/webkit/WebKit/win/Interfaces/
IWebPreferences.idl 112 HRESULT userStyleSheetLocation([out, retval] BSTR* location);
113 HRESULT setUserStyleSheetLocation([in] BSTR location);
153 HRESULT iconDatabaseLocation([out, retval] BSTR* location);
154 HRESULT setIconDatabaseLocation([in] BSTR location);

Completed in 1472 milliseconds

<<11121314151617181920>>