HomeSort by relevance Sort by last modified time
    Searched refs:origin (Results 76 - 100 of 424) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965DiscardAttributeHandler.java 58 public void validate(final Cookie cookie, final CookieOrigin origin)
62 public boolean match(final Cookie cookie, final CookieOrigin origin) {
  /external/webkit/WebCore/loader/
CrossOriginPreflightResultCache.h 66 void appendEntry(const String& origin, const KURL&, CrossOriginPreflightResultCacheItem*);
67 bool canSkipPreflight(const String& origin, const KURL&, bool includeCredentials, const String& method, const HTTPHeaderMap& requestHeaders);
  /external/webkit/WebKit/chromium/src/
WebStorageEventDispatcherImpl.cpp 58 const WebString& newValue, const WebString& origin,
66 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::createFromString(origin);
WebStorageNamespaceImpl.cpp 77 RefPtr<WebCore::SecurityOrigin> origin = WebCore::SecurityOrigin::createFromString(originWebCoreString); local
78 return new WebStorageAreaImpl(m_storageNamespace->storageArea(origin.release()));
  /packages/apps/Browser/src/com/android/browser/
SystemAllowGeolocationOrigins.java 129 for (String origin : setting.split("\\s+")) {
130 if (!TextUtils.isEmpty(origin)) {
131 origins.add(origin);
168 for (String origin : origins) {
169 GeolocationPermissions.getInstance().allow(origin);
178 for (final String origin : origins) {
179 GeolocationPermissions.getInstance().getAllowed(origin, new ValueCallback<Boolean>() {
182 GeolocationPermissions.getInstance().clear(origin);
  /external/quake/quake/src/QW/client/
sound.h 74 vec3_t origin; // origin of sound effect member in struct:__anon6629
92 void S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation);
93 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation);
97 void S_Update (vec3_t origin, vec3_t v_forward, vec3_t v_right, vec3_t v_up);
spritegn.h 89 int origin[2]; member in struct:__anon6633
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.h 68 // Remember that Skia's text drawing origin is the baseline, like WebKit, not
89 const SkPoint* origin);
  /external/webkit/WebCore/svg/graphics/
SVGResourceMarker.cpp 51 AffineTransform SVGResourceMarker::markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) const
56 transform.translate(origin.x(), origin.y());
  /external/quake/quake/src/WinQuake/
cl_main.cpp 263 ,ent->model->name,ent->frame, ent->origin[0], ent->origin[1], ent->origin[2], ent->angles[0], ent->angles[1], ent->angles[2]);
497 VectorCopy (ent->origin, oldorg);
502 VectorCopy (ent->msg_origins[0], ent->origin);
515 // interpolate the origin and angles
518 ent->origin[j] = ent->msg_origins[1][j] + f*delta[j];
545 VectorCopy (ent->origin, dl->origin);
546 dl->origin[2] += 16
    [all...]
sound.h 83 vec3_t origin; // origin of sound effect member in struct:__anon7074
101 void S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation);
102 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation);
106 void S_Update (vec3_t origin, vec3_t v_forward, vec3_t v_right, vec3_t v_up);
spritegn.h 89 int origin[2]; member in struct:__anon7078
  /external/webkit/WebKitTools/DumpRenderTree/win/
DRTDesktopNotificationPresenter.cpp 123 /* [in] */ BSTR origin,
127 JSStringRef jsOrigin = JSStringCreateWithBSTR(origin);
141 /* [in] */ BSTR origin)
143 printf("DESKTOP NOTIFICATION PERMISSION REQUESTED: %S\n", origin ? origin : L"");
  /external/webkit/WebKit/gtk/webkit/
webkitwebdatabase.cpp 39 * To get access to all databases defined by a security origin, use
72 WebKitSecurityOrigin* origin; member in struct:_WebKitWebDatabasePrivate
104 if (priv->origin) {
105 g_object_unref(priv->origin);
106 priv->origin = NULL;
136 g_value_set_object(value, priv->origin);
168 * WebKitWebDatabase:security-origin:
170 * The security origin of the database.
175 g_param_spec_object("security-origin",
176 _("Security Origin"),
    [all...]
  /external/webkit/WebKit/android/jni/
WebStorage.cpp 64 WebCore::SecurityOrigin* origin = coreOrigins[i].get(); local
65 WebCore::String url = origin->toString();
74 static unsigned long long GetQuotaForOrigin(JNIEnv* env, jobject obj, jstring origin)
76 WebCore::String originStr = to_string(env, origin);
82 static unsigned long long GetUsageForOrigin(JNIEnv* env, jobject obj, jstring origin)
84 WebCore::String originStr = to_string(env, origin);
104 static void SetQuotaForOrigin(JNIEnv* env, jobject obj, jstring origin, unsigned long long quota)
106 WebCore::String originStr = to_string(env, origin);
111 static void DeleteOrigin(JNIEnv* env, jobject obj, jstring origin)
113 WebCore::String originStr = to_string(env, origin);
    [all...]
  /frameworks/base/test-runner/src/android/test/
ViewAsserts.java 33 * @param origin The root view of the screen.
36 static public void assertOnScreen(View origin, View view) {
41 origin.getLocationOnScreen(xyRoot);
55 * @param origin The root view of the screen.
58 static public void assertOffScreenBelow(View origin, View view) {
63 origin.getLocationOnScreen(xyRoot);
69 + origin.getHeight() + ")",
70 y > origin.getHeight());
75 * @param origin Te root view of the screen.
78 static public void assertOffScreenAbove(View origin, View view)
    [all...]
  /external/freetype/src/smooth/
ftsmooth.c 102 const FT_Vector* origin,
131 /* translate the outline to the new origin if needed */
132 if ( origin )
133 FT_Outline_Translate( outline, origin->x, origin->y );
343 if ( outline && origin )
344 FT_Outline_Translate( outline, -origin->x, -origin->y );
355 const FT_Vector* origin )
360 return ft_smooth_render_generic( render, slot, mode, origin,
    [all...]
  /external/chromium/base/gfx/
rect.cc 21 void AdjustAlongAxis(int dst_origin, int dst_size, int* origin, int* size) {
22 if (*origin < dst_origin) {
23 *origin = dst_origin;
27 *origin = std::min(dst_origin + dst_size, *origin + *size) - *size;
49 Rect::Rect(const gfx::Point& origin, const gfx::Size& size)
50 : origin_(origin), size_(size) {
68 : origin_(r.origin.x, r.origin.y) {
74 origin_.SetPoint(r.origin.x, r.origin.y)
    [all...]
rect.h 40 Rect(const gfx::Point& origin, const gfx::Size& size);
64 const gfx::Point& origin() const { return origin_; } function in class:gfx::Rect
65 void set_origin(const gfx::Point& origin) { origin_ = origin; }
  /external/webkit/WebCore/platform/network/soup/
CookieJarSoup.cpp 64 GOwnPtr<SoupURI> origin(soup_uri_new(url.string().utf8().data()));
70 origin.get(),
75 origin.get(),
  /external/webkit/WebKit/mac/Carbon/
CarbonWindowFrame.m 70 titlebarRect.origin.x = boundsRect.origin.x;
73 titlebarRect.origin.y = NSMaxY(boundsRect) - titlebarRect.size.height;
197 dragRect.origin.y = NSMaxY(frameRect) - dragRect.size.height;
199 dragRect.origin.x = frameRect.origin.x;
  /external/webkit/WebKitTools/DumpRenderTree/mac/
UIDelegate.mm 142 - (void)webView:(WebView *)sender frame:(WebFrame *)frame exceededDatabaseQuotaForSecurityOrigin:(WebSecurityOrigin *)origin database:(NSString *)databaseIdentifier
145 printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", [[origin protocol] UTF8String], [[origin host] UTF8String],
146 [origin port], [databaseIdentifier UTF8String]);
149 [origin setQuota:defaultQuota];
158 - (void)webView:(WebView *)webView decidePolicyForGeolocationRequestFromOrigin:(WebSecurityOrigin *)origin frame:(WebFrame *)frame listener:(id<WebGeolocationPolicyListener>)listener
  /external/kernel-headers/original/linux/mtd/
partitions.h 70 struct mtd_partition **pparts, unsigned long origin);
  /external/webkit/WebCore/rendering/
RenderSVGViewportContainer.h 42 AffineTransform markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth = -1) const;
SVGMarkerLayoutInfo.cpp 57 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle());
80 addLayoutedMarker(endMarker, m_markerData.origin(), m_markerData.currentAngle());
116 void SVGMarkerLayoutInfo::addLayoutedMarker(SVGResourceMarker* marker, const FloatPoint& origin, float angle)
119 m_layout.append(MarkerLayout(marker, marker->markerTransformation(origin, angle, m_strokeWidth)));

Completed in 7182 milliseconds

1 2 34 5 6 7 8 91011>>