Searched defs:location (Results 26 - 50 of 858) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DInfoSink.cpp34 void TInfoSinkBase::location(int file, int line) { function in class:TInfoSinkBase
45 void TInfoSinkBase::location(const TSourceLoc& loc) { function in class:TInfoSinkBase
46 location(loc.first_file, loc.first_line);
51 location(loc);
/external/chromium_org/ui/views/
H A Ddrag_utils_aura.cc15 const gfx::Point& location,
18 gfx::Point root_location(location);
13 RunShellDrag(gfx::NativeView view, const ui::OSExchangeData& data, const gfx::Point& location, int operation, ui::DragDropTypes::DragEventSource source) argument
/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/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;
/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/bison/src/
H A Dscan-code.h23 # include "location.h"
54 location location; member in struct:code_props
104 location code_loc);
119 location code_loc);
139 location code_loc, struct symbol_list *rule,
/external/chromium_org/android_webview/browser/
H A Daw_request_interceptor.cc39 const GURL& location,
53 return io_thread_client->ShouldInterceptRequest(location, request).Pass();
38 QueryForAwWebResourceResponse( const GURL& location, net::URLRequest* request) const argument
/external/chromium_org/ash/display/
H A Dmouse_cursor_event_filter_unittest.cc41 gfx::Point location = drag_source_root->bounds().CenterPoint(); local
42 ui::MouseEvent pressed(ui::ET_MOUSE_PRESSED, location,
43 location, 0, 0);
50 ui::MouseEvent released(ui::ET_MOUSE_RELEASED, location,
51 location, 0, 0);
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_tracker_unittest.cc32 static aura::Window* GetTarget(const gfx::Point& location) { argument
36 location,
37 location,
145 EXPECT_EQ("50,50", converted00->location().ToString());
159 EXPECT_EQ("50,50", converted01->location().ToString());
176 EXPECT_EQ("50,50", converted10->location().ToString());
190 EXPECT_EQ("50,50", converted11->location().ToString());
/external/chromium_org/ash/wm/
H A Ddefault_window_resizer.cc29 void DefaultWindowResizer::Drag(const gfx::Point& location, int event_flags) { argument
30 gfx::Rect bounds(CalculateBoundsForDrag(location));
H A Ddrag_details.cc45 const gfx::Point& location,
50 initial_location_in_parent(location),
44 DragDetails(aura::Window* window, const gfx::Point& location, int window_component, aura::client::WindowMoveSource source) argument
/external/chromium_org/base/test/
H A Dtest_pending_task.h12 #include "base/location.h"
24 TestPendingTask(const tracked_objects::Location& location,
52 tracked_objects::Location location; member in struct:base::TestPendingTask
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Ddevice_local_account_management_policy_provider_unittest.cc25 extensions::Manifest::Location location,
31 location,
78 // Verify that if an extension's location has been whitelisted for use in
104 // Verify that if neither the location, type nor the ID of an extension have
126 // Verify that an extension whose location has been whitelisted for use in
23 CreateExtensionFromValues( const std::string& id, extensions::Manifest::Location location, base::DictionaryValue* values) argument
/external/chromium_org/chrome/browser/extensions/api/location/
H A Dlocation_manager.h25 namespace location { namespace in namespace:extensions::api
29 } // namespace location
32 // BrowserContext's manager of all location watch requests created by
33 // chrome.location API. Lives in the UI thread.
40 // Adds location request for the given extension, and starts the location
68 // Converts |position| from GeolocationProvider to the location API
72 api::location::Coordinates* coordinates);
74 // Sends a location update to the extension.
92 // A map of our pending location request
[all...]
/external/chromium_org/chrome/browser/mac/
H A Dmac_startup_profiler.cc22 void MacStartupProfiler::Profile(Location location) { argument
23 profiled_times_[location] = base::Time::Now();
44 const std::string MacStartupProfiler::HistogramName(Location location) { argument
46 switch (location) {
64 void MacStartupProfiler::RecordHistogram(Location location, argument
66 const std::string name(HistogramName(location));
/external/chromium_org/chrome/browser/spellchecker/
H A Dmisspelling.cc7 // |location|, and |length| instead of only misspelled text, because the
35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {
39 size_t location,
44 location(location),
60 result->SetInteger("misspelledStart", location);
71 if (location > context.length())
73 return context.substr(location, length);
38 Misspelling(const base::string16& context, size_t location, size_t length, const std::vector<base::string16>& suggestions, uint32 hash) argument
/external/chromium_org/chrome/browser/sync_file_system/
H A Dlogger.cc9 #include "base/location.h"
43 const tracked_objects::Location& location,
68 logging::LogMessage(location.file_name(), location.line_number(), severity)
42 Log(logging::LogSeverity severity, const tracked_objects::Location& location, const char* format, ...) argument
/external/chromium_org/chrome/common/extensions/
H A Dextension_test_util.cc23 Manifest::Location location,
41 path.DirName(), location, *dict, extra_flags, id, error);
47 Manifest::Location location,
51 dir, test_file, location, extra_flags, std::string(), error);
56 Manifest::Location location,
60 LoadManifestUnchecked(dir, test_file, location, extra_flags, &error);
21 LoadManifestUnchecked(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags, const std::string& id, std::string* error) argument
45 LoadManifestUnchecked(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags, std::string* error) argument
54 LoadManifest(const std::string& dir, const std::string& test_file, Manifest::Location location, int extra_flags) argument
/external/chromium_org/chrome/common/media_galleries/
H A Diphoto_library.cc15 const base::FilePath& location,
18 location(location),
14 Photo(uint64 id, const base::FilePath& location, const base::FilePath& original_location) argument
H A Diphoto_library.h22 const base::FilePath& location,
27 base::FilePath location; member in struct:iphoto::parser::Photo
/external/chromium_org/chrome/common/
H A Dspellcheck_result.h33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
37 int location; member in struct:SpellCheckResult
/external/chromium_org/chromeos/network/
H A Dclient_cert_util.h40 // configured, the location determines whether this network configuration
42 ConfigType location; member in struct:chromeos::client_cert::ClientCertConfig
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dform_field_error.cc39 FormFieldError::Location LocationFromString(const std::string& location) { argument
40 if (LowerCaseEqualsASCII(location, "unknown_location"))
42 if (LowerCaseEqualsASCII(location, "payment_instrument"))
44 if (LowerCaseEqualsASCII(location, "shipping_address"))
46 if (LowerCaseEqualsASCII(location, "legal_address"))
53 FormFieldError::FormFieldError(ErrorType error_type, Location location) argument
55 location_(location) {}
142 std::string location; local
143 if (dictionary.GetString("location", &location))
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dppb_widget_impl.h36 virtual PP_Bool GetLocation(PP_Rect* location) OVERRIDE;
37 virtual void SetLocation(const PP_Rect* location) OVERRIDE;
49 virtual void SetLocationInternal(const PP_Rect* location) = 0;
51 PP_Rect location() const { return location_; } function in class:content::PPB_Widget_Impl
/external/chromium_org/crypto/
H A Dopenssl_util.h9 #include "base/location.h"
63 // cases you should pass FROM_HERE as the |location|.
65 const tracked_objects::Location& location);
71 // Pass FROM_HERE as |location|, to help track the source of OpenSSL error
72 // messages. Note any diagnostic emitted will be tagged with the location of
74 explicit OpenSSLErrStackTracer(const tracked_objects::Location& location) argument
75 : location_(location) {

Completed in 4465 milliseconds

1234567891011>>