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

1 2 3 4 5 6 78 91011>>

  /external/quake/quake/src/WinQuake/
sound.h 83 vec3_t origin; // origin of sound effect member in struct:__anon10918
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:__anon10922
sv_phys.cpp 104 if (IS_NAN(ent->u.v.origin[i]))
106 Con_Printf ("Got a NaN origin on %s\n", pr_strings + ent->u.v.classname);
107 ent->u.v.origin[i] = 0;
258 end[i] = ent->u.v.origin[i] + time_left * ent->u.v.velocity[i];
260 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, false, ent);
270 VectorCopy (trace.endpos, ent->u.v.origin);
413 VectorAdd (ent->u.v.origin, push, end);
416 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, MOVE_MISSILE, ent);
419 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, MOVE_NOMONSTERS, ent);
421 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, end, MOVE_NORMAL, ent);
    [all...]
view.cpp 367 VectorSubtract (from, ent->origin, from);
772 if (r_refdef.vieworg[0] < ent->origin[0] - 14)
773 r_refdef.vieworg[0] = ent->origin[0] - 14;
774 else if (r_refdef.vieworg[0] > ent->origin[0] + 14)
775 r_refdef.vieworg[0] = ent->origin[0] + 14;
776 if (r_refdef.vieworg[1] < ent->origin[1] - 14)
777 r_refdef.vieworg[1] = ent->origin[1] - 14;
778 else if (r_refdef.vieworg[1] > ent->origin[1] + 14)
779 r_refdef.vieworg[1] = ent->origin[1] + 14;
780 if (r_refdef.vieworg[2] < ent->origin[2] - 22
    [all...]
  /external/webkit/Source/WebCore/page/mac/
WebCoreFrameView.h 36 - (void)setScrollOrigin:(NSPoint)origin updatePositionAtAll:(BOOL)updatePositionAtAll immediately:(BOOL)updatePositionImmediately;
  /external/webkit/Source/WebCore/rendering/
RenderDetailsMarker.h 45 Path getPath(const IntPoint& origin) const;
  /external/webkit/Source/WebCore/rendering/svg/
SVGMarkerLayoutInfo.cpp 56 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle());
79 addLayoutedMarker(endMarker, m_markerData.origin(), m_markerData.currentAngle());
124 void SVGMarkerLayoutInfo::addLayoutedMarker(RenderSVGResourceMarker* marker, const FloatPoint& origin, float angle)
127 m_layout.append(MarkerLayout(marker, marker->markerTransformation(origin, angle, m_strokeWidth)));
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebApplicationCache.mm 66 + (void)deleteCacheForOrigin:(WebSecurityOrigin *)origin
68 ApplicationCache::deleteCacheForOrigin([origin _core]);
  /external/webkit/Source/WebKit/qt/Api/
qwebdatabase.h 45 QWebSecurityOrigin origin() const;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDesktopNotificationsDelegate.idl 102 @abstract See if the origin context is allowed to show notifications.
103 @param origin The origin to be checked.
106 HRESULT checkNotificationPermission([in] BSTR origin, [out, retval] int* result);
110 @abstract Request permission to show notifications on a given origin.
111 @param origin The origin to be requested.
113 HRESULT requestNotificationPermission([in] BSTR origin);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.h 52 virtual void requestPermission(WebCore::SecurityOrigin* origin, PassRefPtr<WebCore::VoidCallback> callback);
  /packages/apps/Browser/src/com/android/browser/
GeolocationPermissionsPrompt.java 72 * Shows the prompt for the given origin. When the user clicks on one of
75 public void show(String origin, GeolocationPermissions.Callback callback) {
76 mOrigin = origin;
115 private void setMessage(CharSequence origin) {
118 origin)); local
  /external/chromium/chrome/browser/password_manager/
password_form_manager_unittest.cc 22 observed_form_.origin = GURL("http://www.google.com/a/LoginAuth");
30 saved_match_.origin = GURL("http://www.google.com/a/ServiceLoginAuth");
89 EXPECT_EQ(observed_form()->origin.spec(),
90 GetPendingCredentials(manager)->origin.spec());
113 EXPECT_EQ(observed_form()->origin.spec(),
114 GetPendingCredentials(manager)->origin.spec());
135 // origin URL (as it does in this case) than the saved_match, but we want to
153 EXPECT_EQ(GetPendingCredentials(manager)->origin.spec(),
154 saved_match()->origin.spec());
173 // Different paths for action / origin are okay
    [all...]
password_store_change.h 32 form().origin == other.form().origin &&
  /external/qemu/android/skin/
trackball.c 242 VectorRec origin, axis1, axis2; local
247 origin[0] = -1; origin[1] = -1; origin[2] = +1;
252 origin[0] = -1; origin[1] = -1; origin[2] = -1;
257 origin[0] = +1; origin[1] = -1; origin[2] = -1
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
UIDelegate.mm 158 - (void)webView:(WebView *)sender frame:(WebFrame *)frame exceededDatabaseQuotaForSecurityOrigin:(WebSecurityOrigin *)origin database:(NSString *)databaseIdentifier
161 printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", [[origin protocol] UTF8String], [[origin host] UTF8String],
162 [origin port], [databaseIdentifier UTF8String]);
166 [[origin databaseQuotaManager] setQuota:defaultQuota];
169 - (void)webView:(WebView *)sender exceededApplicationCacheOriginQuotaForSecurityOrigin:(WebSecurityOrigin *)origin
173 [[origin protocol] UTF8String], [[origin host] UTF8String], [origin port]);
177 [[origin applicationCacheQuotaManager] setQuota:defaultOriginQuota]
    [all...]
  /bionic/libc/netbsd/nameser/
ns_print.c 62 static size_t prune_origin(const char *name, const char *origin);
66 const u_char **p, const char *origin,
86 * ns_sprintrr(handle, rr, name_ctx, origin, buf, buflen)
93 const char *name_ctx, const char *origin,
101 name_ctx, origin, buf, buflen);
108 * name_ctx, origin, buf, buflen)
117 const char *name_ctx, const char *origin,
134 len = prune_origin(name, origin);
141 /* Origin not used or not root, and no trailing dot? */
142 if (((origin == NULL || origin[0] == '\0') |
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965VersionAttributeHandler.java 78 public void validate(final Cookie cookie, final CookieOrigin origin)
92 public boolean match(final Cookie cookie, final CookieOrigin origin) {
  /external/chromium/net/http/
http_auth_handler.h 31 // authentication scheme. |target| and |origin| are both stored
35 const GURL& origin,
106 const GURL& origin() const { function in class:net::HttpAuthHandler
130 // Returns whether the default credentials may be used for the |origin| passed
177 // origin server.
http_auth_handler_ntlm_win.cc 58 const GURL& origin,
78 if (!tmp_handler->InitFromChallenge(challenge, target, origin, net_log))
http_auth_handler_unittest.cc 21 GURL origin("http://www.example.com");
45 origin, bound_net_log);
  /external/chromium/webkit/glue/
password_form_dom_manager.cc 41 result->basic_data.origin = form_on_page.origin;
  /external/icu4c/common/unicode/
uchriter.h 316 * @param delta the position relative to origin. A positive delta means forward;
318 * @param origin Origin enumeration {kStart, kCurrent, kEnd}
322 virtual int32_t move(int32_t delta, EOrigin origin);
329 * @param delta the position relative to origin. A positive delta means forward;
331 * @param origin Origin enumeration {kStart, kCurrent, kEnd}
335 virtual int32_t move32(int32_t delta, EOrigin origin);
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 144 Cocoa sets the origin at the lower left corner of the window/screen
145 SDL, CoreGraphics/WindowServer, and QuickDraw use the origin at the upper left corner
308 *px = rect.origin.x;
309 *py = this->hidden->height - rect.origin.y - rect.size.height;
326 //printf( "window frame (%d,%d) (%d,%d)\n", frame.origin.x, frame.origin.y,
333 // vis.origin.x, vis.origin.y, vis.size.width, vis.size.height );
335 if (frame.origin.x >= vis.origin.x &&
    [all...]
  /external/quake/quake/src/QW/client/
pmove.h 42 vec3_t origin; member in struct:__anon10456
54 vec3_t origin; member in struct:__anon10457

Completed in 1222 milliseconds

1 2 3 4 5 6 78 91011>>