Searched refs:location (Results 26 - 50 of 2162) sorted by relevance

1234567891011>>

/external/chromium_org/content/test/data/dom_storage/
H A Dcommon.js13 if (document.location.hash == '#fail')
19 document.location.hash = '#pass';
24 document.location.hash = '#fail';
/external/chromium_org/sync/internal_api/public/util/
H A Dunrecoverable_error_info.h7 // 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;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLUniformLocation.h40 static PassRefPtrWillBeRawPtr<WebGLUniformLocation> create(WebGLProgram*, GLint location);
44 GLint location() const;
49 WebGLUniformLocation(WebGLProgram*, GLint location);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextCheckingResult.cpp42 result.location = location;
48 detail.location = 0;
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dsuccess.js6 var params = getUrlSearchParams(location.search);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcontent_options_browsertest.js21 // Test opening the content options has correct location.
23 assertEquals(this.browsePreload, document.location.href);
H A Dpassword_manager_browsertest.js21 // Test opening the password manager has correct location.
24 assertEquals(this.browsePreload, document.location.href);
H A Dprofile_settings_reset_browsertest.js21 // Test opening the profile settings reset has correct location.
24 assertEquals(this.browsePreload, document.location.href);
H A Dwebsite_settings_browsertest.js21 // Test opening the website settings manager has the correct location.
23 assertEquals(this.browsePreload, document.location.href);
/external/chromium_org/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
H A Dinfobar.js6 var count = window.location.hash.substring(1);
/external/chromium_org/net/url_request/
H A Durl_request_job_factory.cc12 const GURL& location) const {
/external/stlport/test/unit/
H A Dadvance_test.cpp34 IntVector::iterator location = v.begin(); local
35 CPPUNIT_ASSERT(*location==0);
36 advance(location, 5);
37 CPPUNIT_ASSERT(*location==5);
H A Dbound_test.cpp46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr; local
47 CPPUNIT_ASSERT(location==16);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str); local
57 CPPUNIT_ASSERT(location==4);
67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); local
69 CPPUNIT_ASSERT((location - v1.begin())==12);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less); local
79 CPPUNIT_ASSERT((location - str) == 4);
/external/bison/src/
H A Dsymlist.h24 # include "location.h"
51 location location; member in struct:symbol_list
53 /* Proper location of the symbol, not all the rule */
54 location sym_loc;
75 location merger_declaration_location;
86 symbol_list *symbol_list_sym_new (symbol *sym, location loc);
89 symbol_list *symbol_list_type_new (uniqstr type_name, location loc);
92 symbol_list *symbol_list_default_tagged_new (location loc);
94 symbol_list *symbol_list_default_tagless_new (location lo
[all...]
H A Dlocation.h80 /* A location, that is, a region of source code. */
83 /* Boundary just before the location starts. */
86 /* Boundary just after the location ends. */
89 } location; typedef in typeref:struct:__anon378
91 #define GRAM_LTYPE location
94 extern location const empty_location;
98 void location_compute (location *loc,
101 /* Print location to file. Return number of actually printed
103 unsigned location_print (FILE *out, location loc);
109 /* Output to OUT the line and caret corresponding to location LO
[all...]
H A Dnamed-ref.h23 #include "location.h"
34 location loc;
38 named_ref *named_ref_new (uniqstr id, location loc);
/external/chromium_org/extensions/common/
H A Dmanifest.h77 // Whether the |location| is external or not.
78 static inline bool IsExternalLocation(Location location) { argument
79 return location == EXTERNAL_PREF ||
80 location == EXTERNAL_REGISTRY ||
81 location == EXTERNAL_PREF_DOWNLOAD ||
82 location == EXTERNAL_POLICY ||
83 location == EXTERNAL_POLICY_DOWNLOAD ||
84 location == EXTERNAL_COMPONENT;
87 // Whether the |location| is unpacked (no CRX) or not.
88 static inline bool IsUnpackedLocation(Location location) { argument
93 IsAutoUpdateableLocation(Location location) argument
101 IsPolicyLocation(Location location) argument
108 IsComponentLocation(Location location) argument
114 ShouldAlwaysAllowFileAccess(Location location) argument
124 Location location() const { return location_; } function in class:extensions::Manifest
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-global-handles.cc106 Object** g1_objects[] = { g1s1.location(), g1s2.location() };
107 Object** g2_objects[] = { g2s1.location(), g2s2.location() };
116 skippable_objects.Add(*g1s1.location());
117 skippable_objects.Add(*g1s2.location());
118 skippable_objects.Add(*g2s1.location());
119 skippable_objects.Add(*g2s2.location());
125 DCHECK(can_skip_called_objects.Contains(*g1s1.location()));
126 DCHECK(can_skip_called_objects.Contains(*g1s2.location()));
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
H A DBreakpoint.java50 * @param location Location within the method
52 public Breakpoint(String clazz, String method, int location) { argument
55 index = location;
/external/chromium_org/base/profiler/
H A Dscoped_profile.cc7 #include "base/location.h"
14 ScopedProfile::ScopedProfile(const Location& location) argument
15 : birth_(ThreadData::TallyABirthIfActive(location)) {
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dcryptohome.js20 var interval = parseInt(window.location.pathname.split('/')[1]);
24 setTimeout(function() { window.location.reload(true); }, interval * 1000);
/external/chromium_org/sync/syncable/
H A Dsyncable_model_neutral_write_transaction.cc13 const tracked_objects::Location& location,
15 : BaseWriteTransaction(location,
12 ModelNeutralWriteTransaction( const tracked_objects::Location& location, WriterTag writer, Directory* directory) argument
/external/chromium_org/ui/base/dragdrop/
H A Ddrop_target_event.cc15 const gfx::Point& location,
19 location,
14 DropTargetEvent(const OSExchangeData& data, const gfx::Point& location, const gfx::Point& root_location, int source_operations) argument
/external/chromium_org/ui/events/ozone/evdev/
H A Dcursor_delegate_evdev.h23 const gfx::PointF& location) = 0;
26 virtual gfx::PointF location() = 0;
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in

Completed in 1326 milliseconds

1234567891011>>