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

1 2 3 4 5 6 78 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
httpclient.cc 425 bool HttpClient::ShouldRedirect(std::string* location) const {
429 || !response().hasHeader(HH_LOCATION, location)
725 std::string location; local
726 if (ShouldRedirect(&location)) {
727 Url<char> purl(location);
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 67 class MallocChecker : public Checker<eval::Call, check::DeadSymbols, check::EndPath, check::PreStmt<ReturnStmt>, check::Location,
87 void checkBind(SVal location, SVal val, const Stmt*S,
278 DefinedOrUnknownSVal location = cast<DefinedOrUnknownSVal>(ArgVal); local
281 if (!isa<Loc>(location))
287 llvm::tie(notNullState, nullState) = state->assume(location);
665 // Check if the location is a freed symbolic region.
685 void MallocChecker::checkBind(SVal location, SVal val,
693 DefinedOrUnknownSVal l = cast<DefinedOrUnknownSVal>(location);
718 const MemRegion *AR = location.getAsRegion();
728 if (notNullState == (notNullState->bindLoc(cast<Loc>(location),
    [all...]
  /external/mesa3d/src/glsl/
linker.cpp 198 if ((var->location >= generic_base) && !var->explicit_location)
199 var->location = -1;
381 && (var->location != existing->location)) {
388 existing->location = var->location;
986 static int // returns location assigned
1070 unsigned next_sampler_pos = 0; // all shaders in prog share same sampler location
1343 int location = find_available_slots(used_locations, to_assign[i].slots); local
    [all...]
  /external/opencv/cv/src/
cvsubdivision2d.cpp 256 CvSubdiv2DPointLocation location = CV_PTLOC_ERROR; local
279 location = CV_PTLOC_OUTSIDE_RECT;
284 location = CV_PTLOC_ERROR;
305 location = CV_PTLOC_INSIDE;
320 location = CV_PTLOC_INSIDE;
347 if( location == CV_PTLOC_INSIDE )
362 location = CV_PTLOC_VERTEX;
368 location = CV_PTLOC_VERTEX;
375 location = CV_PTLOC_ON_EDGE;
380 if( location == CV_PTLOC_ERROR
411 CvSubdiv2DPointLocation location = CV_PTLOC_ERROR; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 229 // Write all files in the directory to disk at the given output location,
606 // We construct a separate OutputDirectory for each output location. Note
607 // that two code generators may output to the same location, in which case
623 // First time we've seen this output location.
637 const string& location = iter->first; local
639 if (HasSuffixString(location, "/")) {
640 if (!directory->WriteAllToDisk(location)) {
645 if (HasSuffixString(location, ".jar")) {
649 if (!directory->WriteAllToZip(location)) {
714 "former file's location comes first." << endl
    [all...]
  /external/qemu/hw/
smbios.h 104 uint8_t location; member in struct:smbios_type_16
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp 141 void CodeBlock::printUnaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
146 printf("[%4d] %s\t\t %s, %s\n", location, op, registerName(exec, r0).data(), registerName(exec, r1).data());
149 void CodeBlock::printBinaryOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
154 printf("[%4d] %s\t\t %s, %s, %s\n", location, op, registerName(exec, r0).data(), registerName(exec, r1).data(), registerName(exec, r2).data());
157 void CodeBlock::printConditionalJump(ExecState* exec, const Vector<Instruction>::const_iterator&, Vector<Instruction>::const_iterator& it, int location, const char* op) const
161 printf("[%4d] %s\t\t %s, %d(->%d)\n", location, op, registerName(exec, r0).data(), offset, location + offset);
164 void CodeBlock::printGetByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) const
169 printf("[%4d] %s\t %s, %s, %s\n", location, op, registerName(exec, r0).data(), registerName(exec, r1).data(), idName(id0, m_identifiers[id0]).data());
173 void CodeBlock::printPutByIdOp(ExecState* exec, int location, Vector<Instruction>::const_iterator& it, const char* op) cons
483 int location = it - begin; local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Program.cpp 257 for (unsigned int location = 0; location < numUniforms; location++)
259 if (mUniformIndex[location].name == _name &&
260 mUniformIndex[location].element == subscript)
262 return location;
269 bool Program::setUniform1fv(GLint location, GLsizei count, const GLfloat* v)
271 if (location < 0 || location >= (int)mUniformIndex.size())
276 Uniform *targetUniform = mUniforms[mUniformIndex[location].index]
1559 int location = getAttributeBinding(attribute->name); local
1589 int location = getAttributeBinding(attribute->name); local
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceHandleSoup.cpp 221 String location = String::fromUTF8(uri.get()); local
222 KURL newURL = KURL(handle->firstRequest().url(), location);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 244 int location = locationAfterFirstBlankLine(postBuffer, postBufferSize); local
245 if (location != -1) {
247 headerFields = parseRFC822HeaderFields(postBuffer, location);
248 unsigned dataLength = postBufferSize - location;
259 postBuffer += location;
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 238 // Key event location code introduced in DOM Level 3.
581 int location = arguments[2].toInt32(); local
582 if (location == DOMKeyLocationNumpad)
    [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.cpp 81 // Key event location code defined in DOM Level 3.
614 // handle location argument.
615 int location = DOM_KEY_LOCATION_STANDARD; local
617 location = (int)JSValueToNumber(context, arguments[2], exception);
622 if (location == DOM_KEY_LOCATION_NUMPAD) {
644 // If we get some other key specified with the numpad location,
    [all...]
  /frameworks/base/location/java/android/location/
Address.java 17 package android.location;
29 * A class representing an Address, i.e, a set of Strings describing a location.
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 17 package com.android.internal.location;
26 import android.location.LocationManager;
87 // parent gps location provider
  /frameworks/base/services/java/com/android/server/
TelephonyRegistry.java 125 CellLocation location = CellLocation.getEmpty(); local
127 // Note that location can be null for non-phone builds like
129 if (location != null) {
130 location.fillInNotifierBundle(mCellLocation);
  /frameworks/base/services/java/com/android/server/location/
GpsLocationProvider.java 17 package com.android.server.location;
26 import android.location.Criteria;
27 import android.location.IGpsStatusListener;
28 import android.location.IGpsStatusProvider;
29 import android.location.ILocationManager;
30 import android.location.INetInitiatedListener;
31 import android.location.Location;
32 import android.location.LocationManager;
33 import android.location.LocationProvider
    [all...]
LocationProviderProxy.java 17 package com.android.server.location;
23 import android.location.Criteria;
24 import android.location.ILocationProvider;
25 import android.location.Location;
34 import com.android.internal.location.DummyLocationProvider;
37 * A class for proxying location providers implemented as services.
52 // cached values set by the location manager
60 // constructor for proxying location providers implemented in a separate service
127 // resend previous values from the location manager if the service has restarte
    [all...]
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 71 static void location_callback(GpsLocation* location)
74 env->CallVoidMethod(mCallbacksObj, method_reportLocation, location->flags,
75 (jdouble)location->latitude, (jdouble)location->longitude,
76 (jdouble)location->altitude,
77 (jfloat)location->speed, (jfloat)location->bearing,
78 (jfloat)location->accuracy, (jlong)location->timestamp);
376 AGpsRefLocation location; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 16 package com.android.server.location;
18 import android.location.Country;
19 import android.location.CountryListener;
20 import android.location.Location;
21 import android.location.LocationListener;
22 import android.location.LocationManager;
41 private final Location mLocation;
53 mLocation = new Location(provider);
59 protected String getCountryFromLocation(Location location)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
ArrayListTest.java 344 int location = al.indexOf(testObject); local
348 location == al.indexOf(testObject));
352 --location == al.indexOf(testObject));
354 assertTrue("EnsureCapacity did not change location.",
355 location == al.indexOf(testObject));
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 303 String location = intent.getStringExtra(Events.EVENT_LOCATION); local
304 if (location != null) {
305 mLocation = location;
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertService.java 195 final String location = alertCursor.getString(ALERT_INDEX_EVENT_LOCATION); local
282 notificationEventLocation = location;
304 String eventName, String location, int numReminders,
321 location, numReminders, highPriority, startMillis, allDay);
328 if (!TextUtils.isEmpty(location)) {
329 notification.tickerText = eventName + " - " + location;
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 34 import android.location.Location;
124 // Location
199 // this picture. The title, dateTaken, location are attributes for the
204 Location location, String directory, String filename,
244 if (location != null) {
245 values.put(Images.Media.LATITUDE, location.getLatitude());
246 values.put(Images.Media.LONGITUDE, location.getLongitude());
285 DataLocation location = param.mLocation local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 22 import android.location.Address;
23 import android.location.Geocoder;
24 import android.location.Location;
25 import android.location.LocationManager;
110 // Get current location, we decide the granularity of the string based
114 Location location = null; local
118 location = (provider != null) ? locationManager.getLastKnownLocation(provider) : null;
119 if (location != null
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
GpxParser.java 17 package com.android.ddmuilib.location;
230 * Handles the location attributes and store them into a {@link LocationPoint}.
231 * @param locationNode the {@link LocationPoint} to receive the location data.

Completed in 1448 milliseconds

1 2 3 4 5 6 78 91011>>