HomeSort by relevance Sort by last modified time
    Searched defs:location (Results 26 - 50 of 315) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
stmts.h 78 void *location = &&start; local
81 location = &&done;
86 goto *location;
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 39 String location = getHeader(LOCATION); local
40 if (location != null) {
41 into.put(LOCATION, location);
47 /** The name of a dump entry whose value is the response Location header. */
48 public static final String LOCATION = "Location";
  /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...]
adj_test.cpp 46 int* location = adjacent_find((int*)numbers1, (int*)numbers1 + 5); local
47 CPPUNIT_ASSERT(location == numbers1 + 5); // no adj so loc should be _last
49 location = adjacent_find((int*)numbers2, (int*)numbers2 + 5);
50 CPPUNIT_ASSERT(location != numbers2 + 5); // adj location off should be 3 (first 1)
51 CPPUNIT_ASSERT((location - numbers2)==3);
59 IntVector::iterator location; local
60 location = adjacent_find(v.begin(), v.end());
61 CPPUNIT_ASSERT(location == v.end());
63 location = adjacent_find(v.begin(), v.end())
76 CStrVector::iterator location; local
    [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/bindings/js/
JSDocumentCustom.cpp 36 #include "Location.h"
63 JSValue JSDocument::location(ExecState* exec) const function in class:WebCore::JSDocument
69 Location* location = frame->domWindow()->location();
70 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), location))
73 JSLocation* jsLocation = new (exec) JSLocation(getDOMStructure<JSLocation>(exec, globalObject()), globalObject(), location);
74 cacheWrapper(currentWorld(exec), location, jsLocation); local
  /external/webkit/Source/WebCore/platform/text/
TextCheckerClient.h 42 int location; member in struct:WebCore::GrammarDetail
50 int location; member in struct:WebCore::TextCheckingResult
  /frameworks/base/core/java/android/webkit/
PluginList.java 83 int location = mPlugins.indexOf(plugin); local
84 if (location != -1) {
85 mPlugins.remove(location);
  /frameworks/base/location/java/android/location/
GeocoderParams.java 17 package android.location;
  /frameworks/base/location/tests/locationtests/src/android/location/
CountryTester.java 17 package android.location;
GeocoderTest.java 1 package android.location;
19 import android.location.Address;
20 import android.location.Geocoder;
  /frameworks/base/services/java/com/android/server/location/
CountryDetectorBase.java 17 package com.android.server.location;
20 import android.location.Country;
21 import android.location.CountryListener;
  /libcore/dom/src/test/java/org/w3c/domts/
DOMErrorImpl.java 30 private final DOMLocator location; field in class:DOMErrorImpl
42 this.location = new DOMLocatorImpl(src.getLocation());
66 return location;
  /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...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
LocationPoint.java 17 package com.android.ddmuilib.location;
20 * Base class for Location aware points.
TrackLabelProvider.java 17 package com.android.ddmuilib.location;
19 import com.android.ddmuilib.location.GpxParser.Track;
WayPoint.java 17 package com.android.ddmuilib.location;
21 * <p/>A waypoint is a user specified location, with a name and an optional description.
WayPointLabelProvider.java 17 package com.android.ddmuilib.location;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
SystemImage.java 26 * A system image has an installation path, a location type and an ABI type.
39 * @param location The location of an installed system image.
44 public SystemImage(File location, LocationType locationType, String abiType) {
45 mLocation = location;
52 * The actual location is computed based on the {@code locationtype}.
69 File location = null; local
72 location = new File(target.getLocation(), SdkConstants.OS_IMAGES_FOLDER);
76 location = FileOp.append(target.getLocation(), SdkConstants.OS_IMAGES_FOLDER, abiType);
82 "Add-ons do not support the system-image location type"); //$NON-NLS-1
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
GpsStatusTest.java 17 package android.location.cts;
25 import android.location.GpsSatellite;
26 import android.location.GpsStatus;
27 import android.location.LocationManager;
  /external/chromium/base/
utf_offset_string_conversions.cc 51 // increment will place it at the right location), so we need to account
214 AdjustOffset::Adjustment::Adjustment(size_t location,
217 : location(location),
230 size_t location = i->location; local
231 if (offset == location && i->new_length == 0) {
235 if (offset <= location)
237 if (offset < (location + i->old_length)) {
  /external/chromium/net/http/
http_vary_data.cc 54 std::string location; local
55 if (response_headers.IsRedirect(&location)) {
  /external/webkit/Tools/DumpRenderTree/gtk/
TextInputController.cpp 110 int location = static_cast<int>(JSValueToNumber(context, arguments[0], exception)); local
117 if (!DumpRenderTreeSupportGtk::firstRectForCharacterRange(view, location, length, &rect))
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 35 char *location = NULL; local
78 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
82 location = start;
121 if (!location)
122 return; /* Unknown location */
129 location, inet_ntoa(addr.sin_addr), max_age);
131 wps_er_ap_add(er, uuid, &addr.sin_addr, location, max_age);

Completed in 772 milliseconds

12 3 4 5 6 7 8 91011>>