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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/loader/
CrossOriginPreflightResultCache.h 72 void appendEntry(const String& origin, const KURL&, PassOwnPtr<CrossOriginPreflightResultCacheItem>);
73 bool canSkipPreflight(const String& origin, const KURL&, bool includeCredentials, const String& method, const HTTPHeaderMap& requestHeaders);
FormSubmission.h 107 const String& origin() const { return m_origin; } function in class:WebCore::FormSubmission
108 void setOrigin(const String& origin) { m_origin = origin; }
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.h 41 static PassRefPtr<ContentSecurityPolicy> create(SecurityOrigin* origin = 0)
43 return adoptRef(new ContentSecurityPolicy(origin));
SpeechInput.cpp 96 bool SpeechInput::startRecognition(int listenerId, const IntRect& elementRect, const AtomicString& language, const String& grammar, SecurityOrigin* origin)
99 return m_client->startRecognition(listenerId, elementRect, language, grammar, origin);
  /external/webkit/Source/WebKit/chromium/src/
SpeechInputClientImpl.cpp 67 bool SpeechInputClientImpl::startRecognition(int requestId, const WebCore::IntRect& elementRect, const AtomicString& language, const String& grammar, WebCore::SecurityOrigin* origin)
70 return m_controller->startRecognition(requestId, elementRect, language, grammar, WebSecurityOrigin(origin));
WebDatabase.cpp 109 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromDatabaseIdentifier(originIdentifier); local
110 DatabaseTracker::tracker().getOpenDatabases(origin.get(), databaseName, &databaseHandles);
WebSpeechInputControllerMockImpl.cpp 85 bool WebSpeechInputControllerMockImpl::startRecognition(int requestId, const WebRect& elementRect, const WebString& language, const WebString& grammar, const WebSecurityOrigin& origin)
87 return m_webcoreMock->startRecognition(requestId, elementRect, language, grammar, origin.get());
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameLoadDelegatePrivate.h 38 - (void)webView:(WebView *)webView didRunInsecureContent:(WebSecurityOrigin *)origin;
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp 97 COMPtr<WebSecurityOrigin> origin(AdoptCOM, WebSecurityOrigin::createInstance(frame->document()->securityOrigin()));
99 HRESULT hr = uiDelegatePrivate2->decidePolicyForGeolocationRequest(m_webView.get(), kit(frame), origin.get(), listener.get());
  /external/webkit/Source/WebKit2/Platform/cg/
CGUtilities.cpp 43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y;
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.cpp 63 SecurityOrigin* origin = frame->document()->securityOrigin(); local
65 m_page->send(Messages::WebPageProxy::RequestGeolocationPermissionForFrame(geolocationID, webFrame->frameID(), origin->databaseIdentifier()));
  /external/webkit/Tools/WebKitTestRunner/qt/
PlatformWebViewQt.cpp 90 wkFrame.origin.x = 0;
91 wkFrame.origin.y = 0;
  /external/webkit/Tools/WebKitTestRunner/win/
PlatformWebViewWin.cpp 88 wkFrame.origin.x = 0;
89 wkFrame.origin.y = 0;
  /external/zlib/contrib/minizip/
ioapi.c 29 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin)
32 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
39 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
79 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
149 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin)
153 switch (origin)
172 static long ZCALLBACK fseek64_file_func (voidpf opaque, voidpf stream, ZPOS64_T offset, int origin)
176 switch (origin)
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMarker.cpp 115 AffineTransform RenderSVGResourceMarker::markerTransformation(const FloatPoint& origin, float autoAngle, float strokeWidth) const
124 transform.translate(origin.x(), origin.y());
139 AffineTransform RenderSVGResourceMarker::markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth) const
141 // The 'origin' coordinate maps to SVGs refX/refY, given in coordinates relative to the viewport established by the marker
142 FloatPoint mappedOrigin = viewportTransform().mapPoint(origin);
  /external/webkit/Source/WebKit/mac/Carbon/
HIViewAdapter.m 115 rect.origin.x = validRect.origin.x;
116 rect.origin.y = targetBounds.size.height - NSMaxY(validRect);
124 qdRect.top = (SInt16)rect.origin.y;
125 qdRect.left = (SInt16)rect.origin.x;
159 rect.origin.x = invalidRect.origin.x;
160 rect.origin.y = targetBounds.size.height - NSMaxY(invalidRect);
168 qdRect.top = (SInt16)rect.origin.y;
169 qdRect.left = (SInt16)rect.origin.x
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/geometry/
Rectangle.java 38 public Rectangle(Point origin, Point size) {
39 super(origin,
40 origin.plus(size.x, 0.0f),
41 origin.plus(0.0f, size.y),
42 origin.plus(size.x, size.y));
  /external/quake/quake/src/QW/client/
cl_cam.c 142 VectorCopy (vec3_origin, pmove.physents[0].origin);
146 VectorCopy (vec1, pmove.origin);
147 return PM_PlayerMove(pmove.origin, vec2);
161 VectorMA(player->origin, 800, vec, v);
164 trace = Cam_DoTrace(player->origin, v);
168 VectorSubtract(trace.endpos, player->origin, v);
173 VectorSubtract(trace.endpos, self->origin, v);
176 trace = Cam_DoTrace(self->origin, vec);
190 trace = Cam_DoTrace(player->origin, vec);
194 VectorSubtract(player->origin, vec, v)
    [all...]
  /external/chromium/chrome/browser/
cookies_tree_model.cc 99 if (!retval.length()) // Is an IP address or other special origin.
183 local_storage_info->origin.empty() ?
185 local_storage_info->origin)),
209 session_storage_info->origin.empty() ?
211 session_storage_info->origin)),
230 indexed_db_info->origin.empty() ?
232 indexed_db_info->origin)),
577 return ORIGIN;
697 for (InfoByOrigin::const_iterator origin =
699 origin != appcache_info_->infos_by_origin.end(); ++origin)
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 34 const char* kOrigin = "origin";
98 std::string GeolocationExceptionToString(const GURL& origin,
100 if (origin == embedding_origin)
101 return content_settings_helper::OriginToString(origin);
108 // origin "embedded on any other site", so this row will never appear. If
139 DictionaryValue* GetGeolocationExceptionForPage(const GURL& origin,
145 new StringValue(GeolocationExceptionToString(origin, embedding_origin)));
151 new StringValue(origin.spec()));
443 const GURL& origin = i->first; local
448 one_settings.find(origin);
601 std::string origin; local
613 std::string origin; local
    [all...]
  /external/opencv/otherlibs/highgui/
image.cpp 70 bool CvvImage::Create( int w, int h, int bpp, int origin )
76 (origin != IPL_ORIGIN_TL && origin != IPL_ORIGIN_BL))
92 m_img->origin = origin == 0 ? IPL_ORIGIN_TL : IPL_ORIGIN_BL;
124 img->origin ))
236 FillBitmapInfo( bmi, bmp_w, bmp_h, Bpp(), m_img->origin );
  /external/quake/quake/src/QW/server/
sv_ents.c 126 x = (int)(ent->v.origin[0]+4096)>>1;
127 y = (int)(ent->v.origin[1]+4096)>>1;
128 z = (int)(ent->v.origin[2]+4096)>>1;
166 miss = to->origin[i] - from->origin[i];
229 MSG_WriteCoord (msg, to->origin[0]);
233 MSG_WriteCoord (msg, to->origin[1]);
237 MSG_WriteCoord (msg, to->origin[2]);
370 { // only sent origin and velocity to spectators
389 MSG_WriteCoord (msg, ent->v.origin[i])
    [all...]
sv_phys.c 104 if (IS_NAN(ent->v.origin[i]))
106 Con_Printf ("Got a NaN origin on %s\n", PR_GetString(ent->v.classname));
107 ent->v.origin[i] = 0;
264 end[i] = ent->v.origin[i] + time_left * ent->v.velocity[i];
266 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, false, ent);
276 VectorCopy (trace.endpos, ent->v.origin);
402 VectorAdd (ent->v.origin, push, end);
405 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, MOVE_MISSILE, ent);
408 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, MOVE_NOMONSTERS, ent);
410 trace = SV_Move (ent->v.origin, ent->v.mins, ent->v.maxs, end, MOVE_NORMAL, ent)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.cpp 116 v8::ScriptOrigin origin = function->GetScriptOrigin(); local
117 if (!origin.ResourceName().IsEmpty()) {
118 sourceName = toWebCoreString(origin.ResourceName());
  /external/webkit/Source/WebKit/win/
WebSecurityOrigin.cpp 45 WebSecurityOrigin* origin = new WebSecurityOrigin(securityOrigin); local
46 origin->AddRef();
47 return origin;

Completed in 1189 milliseconds

1 2 3 4 5 6 7 891011>>