/external/quake/quake/src/WinQuake/ |
d_edge.cpp | 251 VectorSubtract (r_origin, currententity->origin,
288 VectorSubtract (r_origin, currententity->origin, local_modelorg);
|
world.cpp | 126 testing object's origin to get a point to use with the returned hull. 155 // calculate an offset value to center the origin 157 VectorAdd (offset, ent->u.v.origin, offset); 166 VectorCopy (ent->u.v.origin, offset); 406 ent->u.v.absmin[i] = ent->u.v.origin[i] - max; 407 ent->u.v.absmax[i] = ent->u.v.origin[i] + max; 413 VectorAdd (ent->u.v.origin, ent->u.v.mins, ent->u.v.absmin); 414 VectorAdd (ent->u.v.origin, ent->u.v.maxs, ent->u.v.absmax); 555 trace = SV_Move (ent->u.v.origin, ent->u.v.mins, ent->u.v.maxs, ent->u.v.origin, 0, ent) [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
StackBounds.cpp | 72 static void* estimateStackBound(void* origin) 74 return static_cast<char*>(origin) - estimatedStackSize;
|
/external/webkit/Source/WebCore/loader/ |
DocumentWriter.cpp | 109 void DocumentWriter::begin(const KURL& url, bool dispatch, SecurityOrigin* origin) 111 // We need to take a reference to the security origin because |clear| 113 RefPtr<SecurityOrigin> forcedSecurityOrigin = origin; 164 // the parent and the current frames share the security origin.
|
/external/webkit/Source/WebCore/manual-tests/inspector-wrappers/ |
inspector-wrappers-test-utils.js | 31 "origin from the Inspector.</p>" +
|
/external/webkit/Source/WebCore/platform/gtk/ |
FileSystemGtk.cpp | 272 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) 275 switch (origin) {
|
/external/webkit/Source/WebCore/platform/mac/ |
ClipboardMac.mm | 415 loc.x = elementRect.origin.x - imageRect.origin.x + m_dragLoc.x(); 416 loc.y = elementRect.origin.y - imageRect.origin.y + m_dragLoc.y();
|
/external/webkit/Source/WebCore/platform/posix/ |
FileSystemPOSIX.cpp | 95 long long seekFile(PlatformFileHandle handle, long long offset, FileSeekOrigin origin) 98 switch (origin) {
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
PageClientImpl.mm | 274 tempRect.origin = [[m_wkView window] convertBaseToScreen:tempRect.origin]; 386 NSPoint textBaselineOrigin = dictionaryPopupInfo.origin; 392 textBaselineOrigin = [m_wkView.window convertRectToScreen:NSMakeRect(textBaselineOrigin.x, textBaselineOrigin.y, 0, 0)].origin;
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePage.cpp | 200 void WKBundlePageSetScaleAtOrigin(WKBundlePageRef pageRef, double scale, WKPoint origin) 202 toImpl(pageRef)->scaleWebView(scale, toIntPoint(origin));
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
EventSendingController.cpp | 197 WKPoint origin = { x, y }; local 198 WKBundlePageSetScaleAtOrigin(InjectedBundle::shared().page()->page(), scale, origin);
|
/external/chromium/chrome/browser/ui/views/autocomplete/ |
autocomplete_popup_contents_view.cc | 593 gfx::Point origin(contents_rect.origin()); 594 views::View::ConvertPointToWidget(this, &origin); 595 contents_rect.set_origin(origin); 666 gfx::Point location_bar_origin(location_bar_bounds.origin());
|
/external/webkit/Source/WebCore/inspector/ |
InspectorCSSAgent.cpp | 108 // origin : <string>, // "" || "user-agent" || "user" || "inspector" 489 String origin(""); 491 origin = userAgent; 493 origin = user; 497 origin = inspector; 499 return origin;
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.cpp | 496 SecurityOrigin* origin = frame->document()->securityOrigin(); local 498 DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(databaseName, origin); 499 uint64_t currentQuota = DatabaseTracker::tracker().quotaForOrigin(origin); 502 Messages::WebPageProxy::ExceededDatabaseQuota(webFrame->frameID(), origin->databaseIdentifier(), databaseName, details.displayName(), currentQuota, details.currentUsage(), details.expectedUsage()), 505 DatabaseTracker::tracker().setQuota(origin, newQuota);
|
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
LayoutTestsExecutor.java | 254 public void onGeolocationPermissionsShowPrompt(String origin, 257 callback.invoke(origin, mGeolocationPermission, false); 264 mPendingGeolocationPermissionCallbacks.put(callback, origin); 651 String origin = mPendingGeolocationPermissionCallbacks.get(callback); 652 callback.invoke(origin, mGeolocationPermission, false);
|
/external/quake/quake/src/QW/client/ |
cl_parse.c | 712 es->origin[i] = MSG_ReadCoord (); 747 VectorCopy (es.origin, ent->origin); 1076 VectorCopy (pl->origin, dl->origin); 1079 VectorMA (dl->origin, 18, fv, dl->origin);
|
/external/webkit/Source/WebCore/rendering/ |
RenderLayerBacking.cpp | 139 // FIXME: This could use m_owningLayer->transform(), but that currently has transform-origin 214 // If the element has a transform-origin that has fixed lengths, and the renderer has zero size, 216 // the transform-origin via the GraphicsLayer anchorPoint (which is expressed as a fractional value). 433 // Compute the anchor point, which is in the center of the renderer box unless transform-origin is set. 981 FloatPoint3D origin; local 996 FloatPoint origin; local [all...] |
/external/chromium/chrome/common/ |
metrics_helpers.cc | 235 PageTransition::Type origin, 248 switch (PageTransition::StripQualifier(origin)) { 284 PageTransition::StripQualifier(origin); 287 WriteAttribute("origin", origin_string);
|
/external/webkit/Source/WebCore/html/ |
HTMLAnchorElement.cpp | 447 String HTMLAnchorElement::origin() const function in class:WebCore::HTMLAnchorElement 449 RefPtr<SecurityOrigin> origin = SecurityOrigin::create(href()); local 450 return origin->toString();
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
FontChromiumWin.cpp | 262 SkPoint origin = m_point; local 263 origin.fX += SkFloatToScalar(startAdvance); 265 numGlyphs, glyphs, advances, 0, &origin); 271 // Windows' origin is the top-left of the bounding box, so we have
|
/external/webkit/Source/WebCore/storage/ |
StorageTracker.cpp | 124 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, path TEXT);")) 156 SQLiteStatement statement(m_database, "SELECT origin FROM Origins"); 288 LOG_ERROR("Unable to establish origin '%s' in the tracker", originIdentifier.ascii().data()); 296 LOG_ERROR("Unable to establish origin '%s' in the tracker", originIdentifier.ascii().data()); 355 SQLiteStatement statement(m_database, "SELECT origin, path FROM Origins"); 413 void StorageTracker::deleteOrigin(SecurityOrigin* origin) 428 PageGroup::clearLocalStorageForOrigin(origin); 430 String originId = origin->databaseIdentifier(); 448 LOG_ERROR("Attempted to delete origin '%s' while it was being created\n", originIdentifier.ascii().data()); 456 // Get origin's db file path, delete entry in tracker's db, then delete db file [all...] |
/external/webkit/Source/WebKit/chromium/src/ |
WebPluginContainerImpl.cpp | 111 IntPoint origin = view->windowToContents(IntPoint(0, 0)); local 112 gc->translate(static_cast<float>(origin.x()), static_cast<float>(origin.y()));
|
/external/webkit/Tools/DumpRenderTree/ |
LayoutTestController.h | 49 void addURLToRedirect(std::string origin, std::string destination); 132 void grantDesktopNotificationPermission(JSStringRef origin); 133 bool checkDesktopNotificationPermission(JSStringRef origin);
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility.cc | 128 gfx::Point top_left = manager_->GetViewBounds().origin();
|
/external/chromium/chrome/browser/password_manager/ |
native_backend_kwallet_x.cc | 453 return a.origin == b.origin && 468 pickle->WriteString(form->origin.spec()); 524 !ReadGURL(pickle, &iter, &form->origin) ||
|