Searched refs:location (Results 1 - 25 of 2162) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_stats.cc12 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) { argument
36 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR ||
37 location == BOOKMARK_LAUNCH_LOCATION_ATTACHED_BAR) {
43 void RecordBookmarkAppsPageOpen(BookmarkLaunchLocation location) { argument
44 if (location == BOOKMARK_LAUNCH_LOCATION_DETACHED_BAR ||
45 location
11 RecordBookmarkLaunch(const BookmarkNode* node, BookmarkLaunchLocation location) argument
[all...]
H A Dbookmark_stats.h44 BookmarkLaunchLocation location);
47 void RecordBookmarkFolderOpen(BookmarkLaunchLocation location);
50 void RecordBookmarkAppsPageOpen(BookmarkLaunchLocation location);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DLabel.java38 @Nullable MethodLocation location; field in class:Label
43 Label(MethodLocation location) { argument
44 this.location = location;
53 if (location == null) {
54 throw new IllegalStateException("Cannot get the location of a label that hasn't been placed yet.");
56 return location;
60 return location != null;
H A DBuilderDebugItem.java39 @Nullable MethodLocation location; field in class:BuilderDebugItem
45 if (location == null) {
49 return location.getCodeAddress();
/external/chromium_org/remoting/webapp/
H A Dcs_third_party_auth_trampoline.js7 if (window.location.pathname == thirdPartyPath) {
8 chrome.extension.sendMessage(window.location.href);
/external/chromium_org/third_party/WebKit/ManualTests/blackberry/
H A Dhttp-cookie-database-set.php10 $location = 'Location:'.$newurl; variable
11 header($location);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
H A Dantlr.stg36 location(file, line, column) ::= "<file>:<line>:<column>:"
40 report(location, message, type) ::= "<type>(<message.id>): <location> <message.text>"
H A Dgnu.stg36 location(file, line, column) ::= "<file>:<line>:"
40 report(location, message, type) ::= "<location> <type>: <message>"
H A Dvs2005.stg36 location(file, line, column) ::= "<file>(<line>,<column>)"
40 report(location, message, type) ::= "<location> : <type> <message.id> : <message.text>"
/external/chromium_org/tools/page_cycler/startup_test_common/
H A Dhead.js6 console.log("PAGE_ONLOAD_EVENT" + location.hash);
/external/bison/src/
H A Dreader.h24 # 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 lo
[all...]
H A Dcomplain.h22 # 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, ...)
/external/stlport/test/unit/
H A Dsearch_test.cpp45 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
79 char const** location = search((char const**)grades, (char const**)grades + gradeCount, (char const**)letters, (char const**)letters + letterCount, str_equal); local
[all...]
/external/chromium_org/sync/syncable/
H A Dsyncable_base_write_transaction.cc11 const tracked_objects::Location location,
15 : BaseTransaction(location, name, writer, directory) {
10 BaseWriteTransaction( const tracked_objects::Location location, const char* name, WriterTag writer, Directory* directory) argument
H A Dsyncable_read_transaction.cc10 ReadTransaction::ReadTransaction(const tracked_objects::Location& location, argument
12 : BaseTransaction(location, "ReadTransaction", INVALID, directory) {
/external/chromium_org/chrome/common/media_galleries/
H A Ditunes_library.cc14 Track::Track(uint64 id, const base::FilePath& location) argument
16 location(location) {
/external/mockito/src/org/mockito/internal/debugging/
H A DLocalized.java13 private final Location location; field in class:Localized
17 location = new LocationImpl();
25 return location;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DLocationProviderFactory.java8 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) { argument
99 // Callbacks from the system location servic
107 updateNewLocation(Location location) argument
[all...]
/external/chromium_org/sync/internal_api/public/util/
H A Dunrecoverable_error_info.cc14 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
13 UnrecoverableErrorInfo( const tracked_objects::Location& location, const std::string& message) argument
24 Reset( const tracked_objects::Location& location, const std::string& message) argument
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLUniformLocation.cpp33 PassRefPtrWillBeRawPtr<WebGLUniformLocation> WebGLUniformLocation::create(WebGLProgram* program, GLint location) argument
35 return adoptRefWillBeNoop(new WebGLUniformLocation(program, location));
38 WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GLint location) argument
40 , m_location(location)
55 GLint WebGLUniformLocation::location() const function in class:blink::WebGLUniformLocation
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextCheckingResult.h46 , location(0)
52 WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0) argument
54 , location(location)
66 int location; member in struct:blink::WebTextCheckingResult
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLocationTest.java3 import android.location.Location;
4 import android.location.LocationManager;
17 private Location location; field in class:LocationTest
21 location = new Location(LocationManager.GPS_PROVIDER);
22 location.setTime(1);
23 location.setLatitude(2);
24 location.setLongitude(3);
25 location.setAccuracy(4);
26 location.setBearing(0.5f);
27 location
[all...]
/external/bison/examples/calc++/
H A Dlocation.hh34 ** \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 (cons function in class:yy::location
68 explicit location (std::string* f, function in class:yy::location
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js108 var location = script.locationFromPosition(p);
110 assertEquals(position + 1, location.position);
111 if (line == location.line) {
112 assertEquals(column + 1, location.column);
114 assertEquals(line + 1, location.line);
115 assertEquals(0, location.column);
118 assertEquals(0, location.position);
119 assertEquals(0, location.line);
120 assertEquals(0, location.column);
123 // Remember the location
266 var location; variable
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DErrorManager.cs48 StackFrame location = GetLastNonErrorManagerCodeLocation(e);
49 string msg = "Exception " + e + "@" + location + ": " + error;
56 StackFrame location = GetLastNonErrorManagerCodeLocation(new Exception());
57 string msg = location + ": " + error;
63 /// Return first non ErrorManager code location for generating messages
79 StackFrame location = stackTrace.GetFrame(i);
81 return location;

Completed in 5462 milliseconds

1234567891011>>