Searched defs:location (Results 126 - 150 of 858) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/appcache/
H A Dappcache_interceptor.cc108 const GURL& location) {
113 request, network_delegate, location);
105 MaybeInterceptRedirect( net::URLRequest* request, net::NetworkDelegate* network_delegate, const GURL& location) argument
/external/chromium_org/content/browser/renderer_host/
H A Dui_events_helper.cc128 gfx::PointF location; local
130 location = point.position;
132 location = point.screenPosition;
134 location,
287 // Update the location and state of the point.
/external/chromium_org/crypto/
H A Dopenssl_util.cc115 void ClearOpenSSLERRStack(const tracked_objects::Location& location) { argument
122 location.Write(true, true, &message);
/external/chromium_org/extensions/common/features/
H A Dcomplex_feature.cc36 Manifest::Location location,
41 extension_id, type, location, manifest_version, platform);
48 extension_id, type, location, manifest_version, platform);
33 IsAvailableToManifest( const std::string& extension_id, Manifest::Type type, Manifest::Location location, int manifest_version, Platform platform) const argument
H A Dsimple_feature_unittest.cc21 Manifest::Location location; member in struct:extensions::__anon8216::IsAvailableTestData
65 test.location,
364 // Component extensions can access any location.
372 // Only component extensions can access the "component" location.
384 // Policy extensions can access the "policy" location.
483 EXPECT_EQ(SimpleFeature::UNSPECIFIED_LOCATION, feature->location());
556 value->SetString("location", "component");
559 EXPECT_EQ(SimpleFeature::COMPONENT_LOCATION, feature->location());
621 EXPECT_EQ(SimpleFeature::COMPONENT_LOCATION, feature.location());
636 // Can't test location o
[all...]
/external/chromium_org/net/http/
H A Dhttp_vary_data.cc54 std::string location; local
55 if (response_headers.IsRedirect(&location)) {
/external/chromium_org/net/ssl/
H A Dopenssl_ssl_util.cc14 #include "base/location.h"
170 void OpenSSLPutNetError(const tracked_objects::Location& location, int err) { argument
179 location.file_name(), location.line_number());
/external/chromium_org/sync/api/
H A Dsync_error.cc9 #include "base/location.h"
19 SyncError::SyncError(const tracked_objects::Location& location, argument
24 Init(location, message, model_type, error_type);
45 Init(other.location(),
61 void SyncError::Reset(const tracked_objects::Location& location, argument
64 Init(location, message, model_type, DATATYPE_ERROR);
68 void SyncError::Init(const tracked_objects::Location& location, argument
72 location_.reset(new tracked_objects::Location(location));
83 const tracked_objects::Location& SyncError::location() const { function in class:syncer::SyncError
/external/chromium_org/sync/syncable/
H A Dsyncable_util.cc8 #include "base/location.h"
83 const tracked_objects::Location& location,
87 trans->OnUnrecoverableError(location, msg);
82 SyncAssert(bool condition, const tracked_objects::Location& location, const char* msg, BaseTransaction* trans) argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DPlainTextRange.cpp44 PlainTextRange::PlainTextRange(int location) argument
45 : m_start(location)
46 , m_end(location)
48 ASSERT(location >= 0);
H A DTextCheckingHelper.h64 bool checkingRangeCovers(int location, int length) const { return location < checkingEnd() && location + length > checkingStart(); } argument
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPinchViewport.h79 // Sets the location of the inner viewport relative to the outer viewport. The
83 FloatPoint location() const { return m_offset; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMapElement.cpp51 bool HTMLMapElement::mapMouseEvent(LayoutPoint location, const LayoutSize& size, HitTestResult& result) argument
58 } else if (area->mapMouseEvent(location, size, result)) {
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DContextMenuController.cpp136 LayoutPoint location(x, y);
137 m_contextMenu = createContextMenu(frame, location);
158 PassOwnPtr<ContextMenu> ContextMenuController::createContextMenu(LocalFrame* frame, const LayoutPoint& location) argument
160 HitTestResult result(location);
163 result = frame->eventHandler().hitTestResultAtPoint(location, HitTestRequest::ReadOnly | HitTestRequest::Active);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DShadowData.h39 ShadowData(const FloatPoint& location, float blur, float spread, ShadowStyle style, const Color& color) argument
40 : m_location(location)
55 FloatPoint location() const { return m_location; } function in class:blink::ShadowData
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebScrollbarImpl.cpp49 WebPoint WebScrollbarImpl::location() const function in class:blink::WebScrollbarImpl
51 return m_scrollbar->location();
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DLayoutRect.cpp42 : m_location(LayoutPoint(r.location()))
145 IntPoint location = flooredIntPoint(rect.minXMinYCorner()); local
148 return IntRect(location, maxPoint - location);
153 LayoutPoint location = flooredLayoutPoint(rect.minXMinYCorner()); local
155 return LayoutRect(location, maxPoint - location);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DHTTPHeaderMap.cpp78 static void translate(AtomicString& location, const char* cString, unsigned /*hash*/) argument
80 location = AtomicString(cString);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStdLibExtras.h143 inline void* operator new(size_t, NotNullTag, void* location) argument
145 ASSERT(location);
146 return location;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dspan.h52 unsigned int location : 2; // Is the span on a freelist, and if so, which? member in struct:tcmalloc::Span
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dspan.h52 unsigned int location : 2; // Is the span on a freelist, and if so, which? member in struct:tcmalloc::Span
/external/chromium_org/tools/gn/
H A Dtokenizer.cc95 Location location = GetCurrentLocation(); local
99 *err_ = GetErrorForInvalidToken(location);
103 AdvanceToEndOfToken(location, type);
127 tokens_.back().location().line_number() + 1 !=
128 location.line_number() ||
129 tokens_.back().location().char_offset() != location.char_offset())) {
148 tokens_.push_back(Token(location, type, token_value));
239 void Tokenizer::AdvanceToEndOfToken(const Location& location,
256 err_->AppendRange(LocationRange(location, GetCurrentLocatio
[all...]
/external/chromium_org/ui/aura/test/
H A Devent_generator_delegate_aura.cc74 const gfx::Point& location) {
75 return GetHostAt(location)->window();
73 GetTargetAt( const gfx::Point& location) argument
H A Dui_controls_factory_ozone.cc189 const gfx::PointF& location,
197 location,
203 const gfx::PointF& location,
207 type, location, location, flags, changed_button_flags);
188 PostMouseEvent(ui::EventType type, const gfx::PointF& location, int flags, int changed_button_flags) argument
202 PostMouseEventTask(ui::EventType type, const gfx::PointF& location, int flags, int changed_button_flags) argument
/external/chromium_org/ui/events/test/
H A Devents_test_utils.h42 void set_location(const gfx::Point& location) { argument
43 located_event_->location_ = location;

Completed in 347 milliseconds

1234567891011>>