Searched defs:origin (Results 251 - 275 of 332) sorted by relevance

<<11121314

/external/qemu/android/skin/
H A Dtrackball.c242 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[
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_model.c595 out->origin[j] = LittleFloat (in->origin[j]);
1705 int width, height, size, origin[2]; local
1722 origin[0] = LittleLong (pinframe->origin[0]);
1723 origin[1] = LittleLong (pinframe->origin[1]);
1725 pspriteframe->up = origin[1];
1726 pspriteframe->down = origin[1] - height;
1727 pspriteframe->left = origin[
[all...]
H A Dmodel.c586 out->origin[j] = LittleFloat (in->origin[j]);
1696 int i, width, height, size, origin[2]; local
1714 origin[0] = LittleLong (pinframe->origin[0]);
1715 origin[1] = LittleLong (pinframe->origin[1]);
1717 pspriteframe->up = origin[1];
1718 pspriteframe->down = origin[1] - height;
1719 pspriteframe->left = origin[
[all...]
H A Dprotocol.h99 #define svc_intermission 30 // [vec3_t] origin [vec3_t] angle
151 // playerinfo allways sends: playernum, flags, origin[] and framenumber
257 vec3_t origin; member in struct:__anon11399
H A Dsnd_dma.c420 VectorSubtract(ch->origin, listener_origin, source_vec);
454 void S_StartSound(int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation) argument
480 VectorCopy(origin, target_chan->origin);
623 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation) argument
651 VectorCopy (origin, ss->origin);
724 void S_Update(vec3_t origin, vec3_t forward, vec3_t right, vec3_t up) argument
734 VectorCopy(origin, listener_origin);
/external/quake/quake/src/QW/progs/
H A Dprogdefs.h69 vec3_t origin; member in struct:__anon11508
/external/quake/quake/src/QW/server/
H A Dprogdefs.h88 vec3_t origin; member in struct:__anon11556
/external/quake/quake/src/WinQuake/
H A Dbspfile.h85 float origin[3]; member in struct:__anon11572
303 vec3_t origin; member in struct:__anon11582
H A Dclient.h74 vec3_t origin; member in struct:__anon11590
H A Dgl_model.cpp595 out->origin[j] = LittleFloat (in->origin[j]);
1659 int i, width, height, size, origin[2]; local
1678 origin[0] = LittleLong (pinframe->origin[0]);
1679 origin[1] = LittleLong (pinframe->origin[1]);
1681 pspriteframe->up = origin[1];
1682 pspriteframe->down = origin[1] - height;
1683 pspriteframe->left = origin[
[all...]
H A Dmodel.cpp604 out->origin[j] = LittleFloat (in->origin[j]);
1673 int i, width, height, size, origin[2]; local
1691 origin[0] = LittleLong (pinframe->origin[0]);
1692 origin[1] = LittleLong (pinframe->origin[1]);
1694 pspriteframe->up = origin[1];
1695 pspriteframe->down = origin[1] - height;
1696 pspriteframe->left = origin[
[all...]
H A Dquakedef.h227 vec3_t origin; member in struct:__anon11800
H A Dsnd_dma.cpp424 VectorSubtract(ch->origin, listener_origin, source_vec);
458 void S_StartSound(int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol, float attenuation) argument
484 VectorCopy(origin, target_chan->origin);
627 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation) argument
655 VectorCopy (origin, ss->origin);
728 void S_Update(vec3_t origin, vec3_t forward, vec3_t right, vec3_t up) argument
738 VectorCopy(origin, listener_origin);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Proxy.cpp167 // origin check has failed.
209 v8::ScriptOrigin origin(name, line, column);
210 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData);
391 // FIXME: Ideally, we should be able to re-use the origin of the
470 v8::ScriptOrigin origin = function->GetScriptOrigin(); local
473 if (!origin.ResourceName().IsEmpty()) {
474 resourceName = toWebCoreString(origin.ResourceName());
542 // navigated to another security origin.
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp303 // Fallback namespaces always have the same origin as manifest URL, so we can avoid loading caches that cannot match.
436 bool ApplicationCacheStorage::quotaForOrigin(const SecurityOrigin* origin, int64_t& quota) argument
441 SQLiteStatement statement(m_database, "SELECT COUNT(quota), quota FROM Origins WHERE origin=?");
445 statement.bindText(1, origin->databaseIdentifier());
455 LOG_ERROR("Could not get the quota of an origin, error \"%s\"", m_database.lastErrorMsg());
459 bool ApplicationCacheStorage::usageForOrigin(const SecurityOrigin* origin, int64_t& usage) argument
465 " INNER JOIN Origins ON CacheGroups.origin = Origins.origin"
467 " WHERE Origins.origin=?");
471 statement.bindText(1, origin
483 remainingSizeForOriginExcludingCache(const SecurityOrigin* origin, ApplicationCache* cache, int64_t& remainingSize) argument
532 storeUpdatedQuotaForOrigin(const SecurityOrigin* origin, int64_t quota) argument
936 ensureOriginRecord(const SecurityOrigin* origin) argument
1484 RefPtr<SecurityOrigin> origin = SecurityOrigin::create(urls[i]); local
[all...]
/external/webkit/Source/WebCore/page/
H A DDragController.cpp792 IntPoint origin; local
798 origin = rect.location();
806 float dx = origin.x() - mouseDownPoint.x();
808 origin.setX((int)(dx + 0.5));
811 origin.setY(origin.y() + originalSize.height());
813 float dy = origin.y() - mouseDownPoint.y();
815 origin.setY((int)(dy + 0.5));
819 origin = IntPoint(DragIconRightInset - dragImageSize(dragImage).width(), DragIconBottomInset);
822 dragImageOffset.setX(mouseDownPoint.x() + origin
[all...]
H A DFrame.cpp1028 void Frame::scalePage(float scale, const IntPoint& origin) argument
1050 view->setScrollPosition(origin);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp167 static inline int quadrant(const PathPoint& point, const PathPoint& origin) argument
169 return point.m_x < origin.m_x ?
170 (point.m_y < origin.m_y ? 2 : 1)
171 : (point.m_y < origin.m_y ? 3 : 0);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DGraphicsContextWx.cpp339 void GraphicsContext::drawLineForText(const FloatPoint& origin, float width, bool printing) argument
344 FloatPoint endPoint = origin + FloatSize(width, 0);
346 m_data->context->DrawLine(origin.x(), origin.y(), endPoint.x(), endPoint.y());
349 void GraphicsContext::drawLineForTextChecking(const FloatPoint& origin, float width, TextCheckingLineStyle style) argument
361 m_data->context->DrawLine(origin.x(), origin.y(), origin.x() + width, origin.y());
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.cpp400 SecurityOrigin* origin = frame->document()->securityOrigin(); local
405 // This origin is being tracked and has exceeded it's quota. Call into
408 if (tracker.hasEntryForOrigin(origin))
409 currentQuota = tracker.quotaForOrigin(origin);
414 if (tracker.usageForDatabase(name, origin) == 0)
415 estimatedSize = tracker.detailsForNameAndOrigin(name, origin).expectedUsage();
434 // shrinking the quota of an origin that asked for a lot but is only using a
439 unsigned long long reclaimedQuotaBytes = tryToReclaimDatabaseQuota(origin);
451 tracker.setQuota(origin, m_newQuota);
463 // Don't try to reclaim from the origin tha
[all...]
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp410 SecurityOrigin* origin = frame->document()->securityOrigin(); local
412 DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(databaseName, origin);
420 if (!quota && !DatabaseTracker::tracker().hasEntryForOrigin(origin))
423 DatabaseTracker::tracker().setQuota(origin, quota);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp593 WebKitSecurityOrigin* origin = webkit_web_frame_get_security_origin(webFrame); local
594 WebKitWebDatabase* webDatabase = webkit_security_origin_get_web_database(origin, databaseName.utf8().data());
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp548 void ChromeClientQt::reachedApplicationCacheOriginQuota(SecurityOrigin* origin) argument
553 QWebSecurityOriginPrivate* priv = new QWebSecurityOriginPrivate(origin);
556 if (!WebCore::cacheStorage().quotaForOrigin(origin, quota))
557 WebCore::cacheStorage().storeUpdatedQuotaForOrigin(origin, defaultOriginQuota);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp650 void WebFrameLoaderClient::didRunInsecureContent(SecurityOrigin* origin, const KURL& insecureURL) argument
652 COMPtr<IWebSecurityOrigin> webSecurityOrigin = WebSecurityOrigin::createInstance(origin);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.cpp271 void WKPageSetScaleFactor(WKPageRef pageRef, double scale, WKPoint origin) argument
273 toImpl(pageRef)->scaleWebView(scale, toIntPoint(origin));

Completed in 454 milliseconds

<<11121314