HomeSort by relevance Sort by last modified time
    Searched refs:origin (Results 276 - 300 of 764) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/ca/win/
LegacyCACFLayerTreeHost.cpp 277 rect.x1 = r->origin.x;
279 rect.y1 = bounds.origin.y + bounds.size.height - (r->origin.y + r->size.height);
350 float x0 = bounds.origin.x;
351 float y0 = bounds.origin.y;
  /external/webkit/Source/WebKit/mac/WebView/
WebDynamicScrollBarsView.mm 229 [documentView scrollPoint:NSMakePoint(_private->scrollPositionExcludingOrigin.x + documentRect.origin.x, _private->scrollPositionExcludingOrigin.y + documentRect.origin.y)];
338 if (documentRect.origin.y < 0 && !newHasHorizontalScroller)
339 [documentView setBoundsOrigin:NSMakePoint(documentRect.origin.x, documentRect.origin.y + 15)];
349 if (documentRect.origin.x < 0 && !newHasVerticalScroller)
350 [documentView setBoundsOrigin:NSMakePoint(documentRect.origin.x + 15, documentRect.origin.y)];
587 // Maintain our original position in the presence of the new scroll origin.
588 _private->scrollPositionExcludingOrigin = NSMakePoint(visibleRect.origin.x + scrollOrigin.x, visibleRect.origin.y + scrollOrigin.y)
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BrowserCompatSpec.java 103 public List<Cookie> parse(final Header header, final CookieOrigin origin)
108 if (origin == null) {
109 throw new IllegalArgumentException("Cookie origin may not be null");
150 return parse(elems, origin);
NetscapeDraftSpec.java 119 public List<Cookie> parse(final Header header, final CookieOrigin origin)
124 if (origin == null) {
125 throw new IllegalArgumentException("Cookie origin may not be null");
144 return parse(new HeaderElement[] { parser.parseHeader(buffer, cursor) }, origin);
  /external/chromium/chrome/browser/
browsing_data_database_helper_browsertest.cc 122 const GURL origin("http://host1:1/");
128 helper->AddDatabase(origin, db, "");
129 helper->AddDatabase(origin, db, "");
browsing_data_local_storage_helper_browsertest.cc 164 const GURL origin("http://host1:1/");
170 helper->AddLocalStorage(origin);
171 helper->AddLocalStorage(origin);
  /external/chromium/chrome/browser/password_manager/
password_manager.cc 106 form.ssl_valid = form.origin.SchemeIsSecure() &&
159 if (params.password_form.origin.is_valid())
187 bool ssl_valid = iter->origin.SchemeIsSecure() && !had_ssl_error;
  /external/chromium/net/websockets/
websocket.h 75 const std::string origin, const std::string location,
80 origin_(origin),
90 const std::string& origin() const { return origin_; } function in class:net::WebSocket::Request
websocket_handshake_draft75.cc 31 const std::string& origin,
34 : WebSocketHandshake(url, origin, location, protocol) {
50 msg += "Origin: ";
129 if (!GetSingleHeader(headers, "websocket-origin", &ws_origin_))
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.cpp 113 Path RenderDetailsMarker::getPath(const IntPoint& origin) const
117 result.translate(FloatSize(origin.x(), origin.y()));
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DragClientGtk.cpp 137 IntSize origin = eventPos - dragImageOrigin; local
139 origin.width(), origin.height());
  /external/zlib/contrib/minizip/
ioapi.h 134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
151 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
187 long call_zseek64 OF((const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin));
  /external/chromium/net/http/
http_auth_handler_digest_unittest.cc 31 // indicates the origin of the challenge.
336 GURL origin("http://www.example.com");
343 origin,
501 GURL origin("http://www.example.com");
508 origin,
534 GURL origin("intranet.google.com");
536 default_challenge, HttpAuth::AUTH_SERVER, origin, BoundNetLog(),
http_auth_handler_ntlm.cc 143 std::wstring HttpAuthHandlerNTLM::CreateSPN(const GURL& origin) {
147 target.append(ASCIIToWide(GetHostAndPort(origin)));
  /external/quake/quake/src/QW/client/
cl_tent.c 39 vec3_t origin; member in struct:__anon10359
240 VectorCopy (pos, dl->origin);
254 VectorCopy (pos, ex->origin);
404 VectorCopy (org, ent->origin);
444 VectorCopy (ex->origin, ent->origin);
gl_refrag.c 180 r_emins[i] = ent->origin[i] + entmodel->mins[i];
181 r_emaxs[i] = ent->origin[i] + entmodel->maxs[i];
  /external/quake/quake/src/WinQuake/
gl_rlight.cpp 84 VectorSubtract (light->origin, r_origin, v);
105 *pPos++ = light->origin[i] - vpn[i]*rad;
114 *pPos++ = light->origin[j] + vright[j]*cos(a)*rad
127 v[i] = light->origin[i] - vpn[i]*rad;
134 v[j] = light->origin[j] + vright[j]*cos(a)*rad
203 dist = DotProduct (light->origin, splitplane->normal) - splitplane->dist;
gl_refrag.cpp 180 r_emins[i] = ent->origin[i] + entmodel->mins[i];
181 r_emaxs[i] = ent->origin[i] + entmodel->maxs[i];
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.cc 110 bool BalloonCollectionImpl::RemoveBySourceOrigin(const GURL& origin) {
111 return base_.CloseAllBySourceOrigin(origin);
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_details.h 166 origin:(NSString*)origin
  /external/icu4c/common/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
97 * @param origin get the 0, start, limit, length, or current index
105 UCharIteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin);
132 * @param origin move relative to the 0, start, limit, length, or current index
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
97 * @param origin get the 0, start, limit, length, or current index
105 UCharIteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin);
132 * @param origin move relative to the 0, start, limit, length, or current index
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
97 * @param origin get the 0, start, limit, length, or current index
105 UCharIteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin);
132 * @param origin move relative to the 0, start, limit, length, or current index
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
  /external/webkit/Source/WebCore/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
97 * @param origin get the 0, start, limit, length, or current index
105 UCharIteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin);
132 * @param origin move relative to the 0, start, limit, length, or current index
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
  /external/webkit/Source/WebCore/page/
Location.idl 62 readonly attribute DOMString origin;

Completed in 1255 milliseconds

<<11121314151617181920>>