HomeSort by relevance Sort by last modified time
    Searched refs:location (Results 1 - 25 of 2676) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/sample/products/
location_overlay.mk 22 PRODUCT_PACKAGE_OVERLAYS := device/sample/overlays/location
24 # Uncomment this line to include the Google network and fused location providers
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_stats.cc 12 BookmarkLaunchLocation location) {
13 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR ||
14 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) {
19 "Bookmarks.LaunchLocation", location, BOOKMARK_LAUNCH_LOCATION_LIMIT);
35 void RecordBookmarkFolderOpen(BookmarkLaunchLocation location) {
36 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR ||
37 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) {
43 void RecordBookmarkAppsPageOpen(BookmarkLaunchLocation location) {
44 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR ||
45 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR)
    [all...]
bookmark_stats.h 44 BookmarkLaunchLocation location);
47 void RecordBookmarkFolderOpen(BookmarkLaunchLocation location);
50 void RecordBookmarkAppsPageOpen(BookmarkLaunchLocation location);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 36 location(file, line, column) ::= "<file>:<line>:<column>:"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
gnu.stg 36 location(file, line, column) ::= "<file>:<line>:"
40 report(location, message, type) ::= "<location> <type>: <message>"
vs2005.stg 36 location(file, line, column) ::= "<file>(<line>,<column>)"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
  /external/chromium_org/third_party/WebKit/public/web/
WebTextCheckingResult.h 46 , location(0)
52 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
54 , location(location)
66 int location; member in struct:blink::WebTextCheckingResult
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 17 package android.location.cts;
20 import android.location.Location;
45 new Location("LocationProvider");
47 Location l = createTestLocation();
48 Location location = new Location(l); local
49 assertTestLocation(location);
52 new Location((Location) null)
62 Location location = new Location("LocationProvider"); local
68 Location location = new Location(""); local
203 Location location = new Location(""); local
252 Location location = new Location(""); local
265 Location location = new Location(""); local
278 Location location = new Location(""); local
299 Location location = createTestLocation(); local
308 Location location = new Location(""); local
321 Location location = new Location(""); local
334 Location location = new Location(""); local
345 Location location = new Location(""); local
358 Location location = new Location(""); local
371 Location location = new Location(""); local
395 Location location = createTestLocation(); local
401 Location location = createTestLocation(); local
    [all...]
  /external/bison/src/
reader.h 24 # include "location.h"
35 location type_declaration_location;
45 void grammar_start_symbol_set (symbol *sym, location loc);
46 void grammar_current_rule_begin (symbol *lhs, location loc,
48 void grammar_current_rule_end (location loc);
50 void grammar_current_rule_prec_set (symbol *precsym, location loc);
51 void grammar_current_rule_dprec_set (int dprec, location loc);
52 void grammar_current_rule_merge_set (uniqstr name, location loc);
53 void grammar_current_rule_symbol_append (symbol *sym, location loc,
55 void grammar_current_rule_action_append (const char *action, location loc
    [all...]
complain.h 22 # include "location.h"
44 void warn_at (location loc, char const *format, ...)
50 void warn_at_indent (location loc, unsigned *indent,
59 void complain_at (location loc, char const *format, ...)
65 void complain_at_indent (location loc, unsigned *indent,
72 void yacc_at (location loc, char const *format, ...)
78 void midrule_value_at (location loc, char const *format, ...)
86 void fatal_at (location loc, char const *format, ...)
symtab.h 30 # include "location.h"
60 /** The location of its first occurrence. */
61 location location; member in struct:symbol
71 /** Its \c \%type's location. */
72 location type_location;
90 location prec_location;
119 symbol *symbol_from_uniqstr (const uniqstr key, location loc);
122 symbol *symbol_get (const char *key, location loc);
127 symbol *dummy_symbol_get (location loc)
    [all...]
  /external/chromium_org/extensions/common/
manifest.h 27 enum Location {
75 static Location GetHigherPriorityLocation(Location loc1, Location loc2);
77 // Whether the |location| is external or not.
78 static inline bool IsExternalLocation(Location location) {
79 return location == EXTERNAL_PREF ||
80 location == EXTERNAL_REGISTRY ||
81 location == EXTERNAL_PREF_DOWNLOAD |
124 Location location() const { return location_; } function in class:extensions::Manifest
    [all...]
  /external/chromium_org/sync/syncable/
syncable_base_write_transaction.cc 11 const tracked_objects::Location location,
15 : BaseTransaction(location, name, writer, directory) {
syncable_read_transaction.cc 10 ReadTransaction::ReadTransaction(const tracked_objects::Location& location,
12 : BaseTransaction(location, "ReadTransaction", INVALID, directory) {
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-cookie-database-set.php 10 $location = 'Location:'.$newurl; variable
11 header($location);
  /external/chromium_org/chrome/common/media_galleries/
itunes_library.cc 14 Track::Track(uint64 id, const base::FilePath& location)
16 location(location) {
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLUniformLocation.h 40 static PassRefPtrWillBeRawPtr<WebGLUniformLocation> create(WebGLProgram*, GLint location);
44 GLint location() const;
49 WebGLUniformLocation(WebGLProgram*, GLint location);
WebGLUniformLocation.cpp 33 PassRefPtrWillBeRawPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GLint location)
35 return adoptRefWillBeNoop(new WebGLUniformLocation(program, location));
38 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GLint location)
40 , m_location(location)
55 GLint WebGLUniformLocation::location() const function in class:blink::WebGLUniformLocation
  /external/mockito/src/org/mockito/internal/debugging/
Localized.java 8 import org.mockito.invocation.Location;
13 private final Location location; field in class:Localized
17 location = new LocationImpl();
24 public Location getLocation() {
25 return location;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LocationProviderFactory.java 8 import android.location.Criteria;
9 import android.location.Location;
10 import android.location.LocationListener;
11 import android.location.LocationManager;
53 * This is the core of android location provider. It is a separate class for clarity
72 * Start listening for location updates.
82 * Stop listening for location updates.
90 * Returns true if we are currently listening for location updates, false if not.
98 public void onLocationChanged(Location location)
    [all...]
  /external/chromium_org/sync/internal_api/public/util/
unrecoverable_error_info.cc 14 const tracked_objects::Location& location,
16 : location_(location),
25 const tracked_objects::Location& location,
27 location_ = location;
36 const tracked_objects::Location& UnrecoverableErrorInfo::location() const { function in class:syncer::UnrecoverableErrorInfo
unrecoverable_error_info.h 7 // TODO(lipalani): Figure out the right location for this class so it is
12 #include "base/location.h"
20 const tracked_objects::Location& location,
24 void Reset(const tracked_objects::Location& location,
29 const tracked_objects::Location& location() const;
33 tracked_objects::Location location_;
  /external/bison/examples/calc++/
location.hh 34 ** \file ../../../../examples/calc++/location.hh
35 ** Define the yy::location class.
45 /* Line 166 of location.cc */
46 #line 47 "../../../../examples/calc++/location.hh"
48 /// Abstract a location.
49 class location class in namespace:yy
53 /// Construct a location from \a b to \a e.
54 location (const position& b, const position& e) function in class:yy::location
60 /// Construct a 0-width location in \a p.
61 explicit location (const position& p = position () function in class:yy::location
68 explicit location (std::string* f, function in class:yy::location
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 42 result.location = location;
48 detail.location = 0;
  /external/chromium_org/third_party/WebKit/Source/wtf/
FastAllocBase.h 78 void* operator new(size_t, NotNullTag, void* location) \
80 ASSERT(location); \
81 return location; \

Completed in 1080 milliseconds

1 2 3 4 5 6 7 8 91011>>