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

1 2 3 4 5 6 7 891011>>

  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 275 String location; local
278 location = src.substring("cid:".length());
280 location = src;
283 // Set Content-Location.
284 part.setContentLocation(location.getBytes());
289 part.setContentId(location.getBytes());
292 int index = location.lastIndexOf(".");
293 String contentId = (index == -1) ? location
294 : location.substring(0, index);
480 public void add(int location, SlideModel object)
    [all...]
  /external/antlr/src/org/antlr/runtime/debug/
Profiler.java 208 public void location(int line, int pos) { method in class:Profiler
654 buf.append("location");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 270 int location = 2; local
280 list1.remove(location);
281 list1.addAll(location, list2);
285 assertEquals(integers[i], list1.get(location + i));
287 // Elements after inserted location should
289 for (int i = location + 1; i < strings.length; i++) {
538 int location = al.indexOf(testObject); local
541 location == al.indexOf(testObject));
545 --location == al.indexOf(testObject));
547 assertTrue("EnsureCapacity did not change location.", location == a
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_updater.cc 234 AddExtensionData(extension.location(),
285 Extension::Location location,
291 if (!Extension::IsAutoUpdateableLocation(location)) {
958 Extension::Location location = iter->second.install_source(); local
    [all...]
  /external/chromium/webkit/glue/
webaccessibility.h 216 gfx::Rect location; member in struct:webkit_glue::WebAccessibility
  /external/grub/stage2/
iso9660.h 181 iso_32bit_t location; member in struct:rock_ridge::__anon5965::CL
184 iso_32bit_t location; member in struct:rock_ridge::__anon5965::PL
  /external/libxml2/
nanohttp.c 151 char *location; /* the new URL in case of redirect */ member in struct:xmlNanoHTTPCtxt
418 if (ctxt->location != NULL) xmlFree(ctxt->location);
647 * - The Location for redirect processing.
740 } else if (!xmlStrncasecmp(BAD_CAST line, BAD_CAST"Location:", 9)) {
743 if (ctxt->location != NULL)
744 xmlFree(ctxt->location);
749 ctxt->location =
752 ctxt->location = xmlMemStrdup(cur);
1139 * returned at that location
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 305 // location - Allow the user to specify which external variable they want to
319 LocationClass<Ty> location(Ty &L) { return LocationClass<Ty>(L); } function in namespace:llvm::cl
    [all...]
  /external/v8/src/
parser.h 52 ParserMessage(Scanner::Location loc, const char* message,
58 Scanner::Location location() { return loc_; } function in class:v8::internal::ParserMessage
62 Scanner::Location loc_;
122 Scanner::Location MessageLocation();
438 void ReportMessageAt(Scanner::Location loc,
441 void ReportMessageAt(Scanner::Location loc,
scanner-base.h 282 struct Location {
283 Location(int b, int e) : beg_pos(b), end_pos(e) { }
284 Location() : beg_pos(0), end_pos(0) { }
294 static Location NoLocation() {
295 return Location(-1, -1);
298 // Returns the location information for the current token
300 Location location() const { return current_.location; } function in class:v8::internal::Scanner
301 Location peek_location() const { return next_.location;
355 Location location; member in struct:v8::internal::Scanner::TokenDesc
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 835 SourceLoc location = {0}; local
846 symbol = AddSymbol(&location, macros, atom, MACRO_S);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 1142 GLdouble* location = static_cast<GLdouble*>(vertexData); local
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 1267 int location = locationAfterFirstBlankLine(buffer); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBox.h 100 IntPoint location() const { return m_frameRect.location(); } function in class:WebCore::RenderBox
104 void setLocation(const IntPoint& location) { m_frameRect.setLocation(location); }
460 // The width/height of the contents + borders + padding. The x/y location is relative to our container (which is not always our parent).
RenderTableSection.cpp 1283 IntPoint location = IntPoint(xPos - tx, yPos - ty); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.cpp 143 unsigned location = UINT_MAX, length = 0; local
145 location = JSValueToNumber(context, arguments[0], exception);
149 JSRetainPtr<JSStringRef> boundsDescription(Adopt, toAXElement(thisObject)->boundsForRange(location, length));
155 unsigned location = UINT_MAX, length = 0; local
157 location = JSValueToNumber(context, arguments[0], exception);
161 JSRetainPtr<JSStringRef> stringDescription(Adopt, toAXElement(thisObject)->stringForRange(location, length));
167 unsigned location = UINT_MAX, length = 0; local
169 location = JSValueToNumber(context, arguments[0], exception);
173 JSRetainPtr<JSStringRef> stringDescription(Adopt, toAXElement(thisObject)->attributedStringForRange(location, length));
179 unsigned location = UINT_MAX, length = 0 local
381 unsigned location = UINT_MAX, length = 0; local
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 107 String location; field in class:CacheManager.CacheResult
150 return location;
570 // location is in database, no need to keep the file
822 ret.location = headers.getLocation();
    [all...]
  /frameworks/base/location/java/android/location/
Location.java 17 package android.location;
28 * A class representing a geographic location sensed at a particular
29 * time (a "fix"). A location consists of a latitude and longitude, a
38 public class Location implements Parcelable {
96 * Constructs a new Location. By default, time, latitude,
100 * @param provider the name of the location provider that generated this
101 * location fix.
103 public Location(String provider) {
108 * Constructs a new Location object that is a copy of the given
109 * location
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java 259 LocationManagerService location = null; local
428 Slog.i(TAG, "Location Manager");
429 location = new LocationManagerService(context);
430 ServiceManager.addService(Context.LOCATION_SERVICE, location);
432 reportWtf("starting Location Manager", e);
630 final LocationManagerService locationF = location;
714 reportWtf("making Location Service ready", e);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 117 public CharSequence location; field in class:Event
157 e.location = location;
178 dest.location = location;
199 e.location = null;
371 e.location = cEvents.getString(PROJECTION_LOCATION_INDEX);
537 Log.e("Cal", "+ location = " + location);
578 * Returns the event title and location separated by a comma. If th
    [all...]
EventInfoFragment.java 334 private int mMinTop; // Dialog cannot be above this location
1009 String location = mEventCursor.getString(EVENT_INDEX_EVENT_LOCATION); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 762 String location = mModel.mLocation.trim(); local
763 if (location.length() > 0) {
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 242 String location = "Meeting Location"; local
244 // Fill in times, location, title, and organizer
251 entityValues.put(Events.EVENT_LOCATION, location);
374 assertEquals("Meeting Location", vevent.get("LOCATION"));
436 assertEquals("Meeting Location", vevent.get("LOCATION"));
511 assertEquals("Meeting Location", vevent.get("LOCATION"));
834 String location = entityValues.getAsString(Events.EVENT_LOCATION); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 226 // get an SdkManager object for the location
271 * Returns the location (OS path) of the current SDK.
329 IPath location = project.getLocation(); local
330 if (location == null) { // can return null when the project is being deleted.
335 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT);
366 IPath location = project.getLocation(); local
367 if (location == null) { // can return null when the project is being deleted.
372 String projectLocation = location.toOSString();
    [all...]
  /cts/tests/src/android/webkit/cts/
CtsTestServer.java 504 String location = getBaseUri() + path.substring(REDIRECT_PREFIX.length()); local
505 Log.i(TAG, "Redirecting to: " + location);
506 response.addHeader("Location", location);
    [all...]

Completed in 531 milliseconds

1 2 3 4 5 6 7 891011>>