/external/webkit/Source/WebKit/mac/WebView/ |
D | WebScriptWorld.mm | 38 RefPtr<DOMWrapperWorld> world; field 54 - (id)initWithWorld:(PassRefPtr<DOMWrapperWorld>)world 56 ASSERT_ARG(world, world); 57 if (!world) 65 _private->world = world; 67 ASSERT_ARG(world, !allWorlds().contains(_private->world.get())); 68 allWorlds().add(_private->world.get(), self); 80 _private->world->clearWrappers(); 85 ASSERT(allWorlds().contains(_private->world.get())); 86 allWorlds().remove(_private->world.get()); [all …]
|
D | WebViewPrivate.h | 522 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString … 523 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSStr… 525 + (void)_addUserScriptToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSString … 526 + (void)_addUserStyleSheetToGroup:(NSString *)groupName world:(WebScriptWorld *)world source:(NSStr… 527 + (void)_removeUserScriptFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSURL *… 528 + (void)_removeUserStyleSheetFromGroup:(NSString *)groupName world:(WebScriptWorld *)world url:(NSU… 529 + (void)_removeUserScriptsFromGroup:(NSString *)groupName world:(WebScriptWorld *)world; 530 + (void)_removeUserStyleSheetsFromGroup:(NSString *)groupName world:(WebScriptWorld *)world;
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSNodeCustom.h | 45 inline void* wrapperContext(DOMWrapperWorld* world, Node*) in wrapperContext() argument 47 return world; in wrapperContext() 50 inline JSDOMWrapper* getInlineCachedWrapper(DOMWrapperWorld* world, Node* node) in getInlineCachedWrapper() argument 52 if (!world->isNormal()) in getInlineCachedWrapper() 57 inline bool setInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) in setInlineCachedWrapper() argument 59 if (!world->isNormal()) in setInlineCachedWrapper() 62 …node->setWrapper(*world->globalData(), wrapper, wrapperOwner(world, node), wrapperContext(world, n… in setInlineCachedWrapper() 66 inline bool clearInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper) in clearInlineCachedWrapper() argument 68 if (!world->isNormal()) in clearInlineCachedWrapper()
|
D | WebCoreJSClientData.h | 55 void rememberWorld(DOMWrapperWorld* world) in rememberWorld() argument 57 ASSERT(!m_worldSet.contains(world)); in rememberWorld() 58 m_worldSet.add(world); in rememberWorld() 60 void forgetWorld(DOMWrapperWorld* world) in forgetWorld() argument 62 ASSERT(m_worldSet.contains(world)); in forgetWorld() 63 m_worldSet.remove(world); in forgetWorld()
|
D | ScriptController.cpp | 101 void ScriptController::destroyWindowShell(DOMWrapperWorld* world) in destroyWindowShell() argument 103 ASSERT(m_windowShells.contains(world)); in destroyWindowShell() 104 m_windowShells.remove(world); in destroyWindowShell() 105 world->didDestroyWindowShell(this); in destroyWindowShell() 108 JSDOMWindowShell* ScriptController::createWindowShell(DOMWrapperWorld* world) in createWindowShell() argument 110 ASSERT(!m_windowShells.contains(world)); in createWindowShell() 111 …Strong<JSDOMWindowShell> windowShell(*world->globalData(), new JSDOMWindowShell(m_frame->domWindow… in createWindowShell() 113 m_windowShells.add(world, windowShell); in createWindowShell() 114 world->didCreateWindowShell(this); in createWindowShell() 118 …Value ScriptController::evaluateInWorld(const ScriptSourceCode& sourceCode, DOMWrapperWorld* world) in evaluateInWorld() argument [all …]
|
D | JSNodeCustom.cpp | 83 static bool isObservable(JSNode* jsNode, Node* node, DOMWrapperWorld* world) in isObservable() argument 117 if (world->m_wrappers.get(style)) in isObservable() 123 if (JSDOMWrapper* wrapper = world->m_wrappers.get(context).get()) { in isObservable() 130 if (world->m_wrappers.get(sheet)) in isObservable() 135 if (world->m_wrappers.get(sheet)) in isObservable() 141 if (world->m_wrappers.get(sheet)) in isObservable() 149 static inline bool isReachableFromDOM(JSNode* jsNode, Node* node, DOMWrapperWorld* world, MarkStack… in isReachableFromDOM() argument 172 return isObservable(jsNode, node, world) && markStack.containsOpaqueRoot(root(node)); in isReachableFromDOM() 178 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); in isReachableFromOpaqueRoots() local 179 return isReachableFromDOM(jsNode, jsNode->impl(), world, markStack); in isReachableFromOpaqueRoots() [all …]
|
D | ScriptController.h | 78 JSDOMWindowShell* windowShell(DOMWrapperWorld* world) in windowShell() argument 80 ShellMap::iterator iter = m_windowShells.find(world); in windowShell() 81 return (iter != m_windowShells.end()) ? iter->second.get() : initScript(world); in windowShell() 83 JSDOMWindowShell* existingWindowShell(DOMWrapperWorld* world) const in existingWindowShell() argument 85 ShellMap::const_iterator iter = m_windowShells.find(world); in existingWindowShell() 88 JSDOMWindow* globalObject(DOMWrapperWorld* world) in globalObject() argument 90 return windowShell(world)->window(); in globalObject() 172 JSDOMWindowShell* initScript(DOMWrapperWorld* world);
|
D | JSDOMGlobalObject.cpp | 45 …GlobalData& globalData, Structure* structure, PassRefPtr<DOMWrapperWorld> world, JSObject* thisVal… in JSDOMGlobalObject() argument 48 , m_world(world) in JSDOMGlobalObject() 108 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, DOMWrapperWorld* world) in toJSDOMGlobalObject() argument 110 return toJSDOMWindow(document->frame(), world); in toJSDOMGlobalObject() 113 …Object* toJSDOMGlobalObject(ScriptExecutionContext* scriptExecutionContext, DOMWrapperWorld* world) in toJSDOMGlobalObject() argument 116 return toJSDOMGlobalObject(static_cast<Document*>(scriptExecutionContext), world); in toJSDOMGlobalObject()
|
D | JSDOMBinding.h | 154 …inline JSC::WeakHandleOwner* wrapperOwner(DOMWrapperWorld* world, void*) { return world->defaultWr… in wrapperOwner() argument 157 …template <typename DOMClass> inline JSDOMWrapper* getCachedWrapper(DOMWrapperWorld* world, DOMClas… in getCachedWrapper() argument 159 if (JSDOMWrapper* wrapper = getInlineCachedWrapper(world, domObject)) in getCachedWrapper() 161 return world->m_wrappers.get(domObject).get(); in getCachedWrapper() 164 …template <typename DOMClass> inline void cacheWrapper(DOMWrapperWorld* world, DOMClass* domObject,… in cacheWrapper() argument 166 if (setInlineCachedWrapper(world, domObject, wrapper)) in cacheWrapper() 168 ASSERT(!world->m_wrappers.contains(domObject)); in cacheWrapper() 169 …world->m_wrappers.set(domObject, JSC::Weak<JSDOMWrapper>(*world->globalData(), wrapper, wrapperOwn… in cacheWrapper() 172 …template <typename DOMClass> inline void uncacheWrapper(DOMWrapperWorld* world, DOMClass* domObjec… in uncacheWrapper() argument 174 if (clearInlineCachedWrapper(world, domObject, wrapper)) in uncacheWrapper() [all …]
|
D | ScriptState.cpp | 69 ScriptState* scriptStateFromNode(DOMWrapperWorld* world, Node* node) in scriptStateFromNode() argument 81 return frame->script()->globalObject(world)->globalExec(); in scriptStateFromNode() 84 ScriptState* scriptStateFromPage(DOMWrapperWorld* world, Page* page) in scriptStateFromPage() argument 86 return page->mainFrame()->script()->globalObject(world)->globalExec(); in scriptStateFromPage()
|
D | JSNamedNodeMapCustom.cpp | 56 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); in finalize() local 57 uncacheWrapper(world, jsNamedNodeMap->impl(), jsNamedNodeMap); in finalize() 66 inline void* wrapperContext(DOMWrapperWorld* world, NamedNodeMap*) in wrapperContext() argument 68 return world; in wrapperContext()
|
D | JSNodeListCustom.cpp | 57 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); in finalize() local 58 uncacheWrapper(world, jsNodeList->impl(), jsNodeList); in finalize() 67 inline void* wrapperContext(DOMWrapperWorld* world, NodeList*) in wrapperContext() argument 69 return world; in wrapperContext()
|
D | DOMWrapperWorld.h | 47 inline JSDOMWrapperOwner::JSDOMWrapperOwner(DOMWrapperWorld* world) in JSDOMWrapperOwner() argument 48 : m_world(world) in JSDOMWrapperOwner() 92 return static_cast<JSDOMGlobalObject*>(exec->lexicalGlobalObject())->world(); in currentWorld()
|
/external/markdown/tests/safe_mode/ |
D | unsafe_urls.txt | 3 [link](javascript:alert%28'Hello%20world!'%29) 4 [link](vbscript:msgbox%28%22Hello%20world!%22%29) 5 [link](livescript:alert%28'Hello%20world!'%29) 7 [link](jAvAsCrIpT:alert%28'Hello%20world!'%29) 8 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 9 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 10 [link](ja vas cr ipt:alert%28'Hello%20world!'%29) 11 [link](ja%09 %0Avas cr
ipt:alert%28'Hello%20world!'%29) 12 [link](ja%20vas%20cr%20ipt:alert%28'Hello%20world!'%29) 13 [link](live%20script:alert%28'Hello%20world!'%29)
|
D | script_tags.txt | 4 alert("Hello world!") 11 alert("Hello world!") 18 alert("Hello world!") 24 alert("Hello world!") 31 alert("Hello world!")
|
/external/webkit/Source/WebKit/win/ |
D | WebScriptWorld.cpp | 42 inline WebScriptWorld::WebScriptWorld(PassRefPtr<DOMWrapperWorld> world) in WebScriptWorld() argument 44 , m_world(world) in WebScriptWorld() 46 ASSERT_ARG(world, m_world); in WebScriptWorld() 48 ASSERT_ARG(world, !allWorlds().contains(m_world.get())); in WebScriptWorld() 75 COMPtr<WebScriptWorld> WebScriptWorld::createInstance(PassRefPtr<DOMWrapperWorld> world) in createInstance() argument 77 return new WebScriptWorld(world); in createInstance() 80 COMPtr<WebScriptWorld> WebScriptWorld::findOrCreateWorld(DOMWrapperWorld* world) in findOrCreateWorld() argument 82 if (world == mainThreadNormalWorld()) in findOrCreateWorld() 85 if (WebScriptWorld* existingWorld = allWorlds().get(world)) in findOrCreateWorld() 88 return createInstance(world); in findOrCreateWorld()
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
D | InjectedBundleScriptWorld.cpp | 50 PassRefPtr<InjectedBundleScriptWorld> InjectedBundleScriptWorld::getOrCreate(DOMWrapperWorld* world) in getOrCreate() argument 52 if (world == mainThreadNormalWorld()) in getOrCreate() 55 if (InjectedBundleScriptWorld* existingWorld = allWorlds().get(world)) in getOrCreate() 58 return adoptRef(new InjectedBundleScriptWorld(world)); in getOrCreate() 63 …static InjectedBundleScriptWorld* world = adoptRef(new InjectedBundleScriptWorld(mainThreadNormalW… in normalWorld() local 64 return world; in normalWorld() 67 InjectedBundleScriptWorld::InjectedBundleScriptWorld(PassRefPtr<DOMWrapperWorld> world) in InjectedBundleScriptWorld() argument 68 : m_world(world) in InjectedBundleScriptWorld()
|
/external/webkit/Source/WebCore/page/ |
D | PageGroup.cpp | 368 void PageGroup::addUserScriptToWorld(DOMWrapperWorld* world, const String& source, const KURL& url, in addUserScriptToWorld() argument 372 ASSERT_ARG(world, world); in addUserScriptToWorld() 377 UserScriptVector*& scriptsInWorld = m_userScripts->add(world, 0).first->second; in addUserScriptToWorld() 383 void PageGroup::addUserStyleSheetToWorld(DOMWrapperWorld* world, const String& source, const KURL& … in addUserStyleSheetToWorld() argument 389 ASSERT_ARG(world, world); in addUserStyleSheetToWorld() 394 UserStyleSheetVector*& styleSheetsInWorld = m_userStyleSheets->add(world, 0).first->second; in addUserStyleSheetToWorld() 403 void PageGroup::removeUserScriptFromWorld(DOMWrapperWorld* world, const KURL& url) in removeUserScriptFromWorld() argument 405 ASSERT_ARG(world, world); in removeUserScriptFromWorld() 410 UserScriptMap::iterator it = m_userScripts->find(world); in removeUserScriptFromWorld() 427 void PageGroup::removeUserStyleSheetFromWorld(DOMWrapperWorld* world, const KURL& url) in removeUserStyleSheetFromWorld() argument [all …]
|
/external/quake/quake/src/QW/server/ |
D | profile.txt | 7 1703.335 2.6 1713.442 2.6 2906788 _SV_RecursiveHullCheck (world.obj) 12 800.625 1.2 885.897 1.4 1446092 _SV_FindTouchedLeafs (world.obj) 18 478.937 0.7 498.020 0.8 776129 _SV_ClipToLinks (world.obj) 21 375.905 0.6 498.825 0.8 256663 _SV_TouchLinks (world.obj) 28 249.745 0.4 2904.674 4.5 153853 _SV_Move (world.obj) 33 183.088 0.3 1623.544 2.5 60223 _SV_LinkEdict (world.obj) 34 172.218 0.3 172.609 0.3 156480 _SV_HullForEntity (world.obj) 37 166.687 0.3 2052.738 3.1 156480 _SV_ClipMoveToEntity (world.obj)
|
/external/e2fsprogs/lib/ss/ |
D | test_script_expected | 4 Hello, world! 7 Hello, world! 10 Hello, world! 17 Hello, world! 21 Hello, world!
|
/external/llvm/test/CodeGen/X86/ |
D | 2009-03-25-TestBug.ll | 7 @world = internal constant [7 x i8] c"world\0A\00" 14 br i1 %tmp178, label %hello, label %world 20 world: 21 %w = tail call i32 (i8*, ...)* @printf( i8* getelementptr ([7 x i8]* @world, i32 0, i32 0))
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | LevelSystem.java | 123 TiledWorld world = new TiledWorld(byteStream); in loadLevel() local 148 mTileWidth, mTileHeight, world, tileIndex); in loadLevel() 156 mWidthInTiles = world.getWidth(); in loadLevel() 157 mHeightInTiles = world.getHeight(); in loadLevel() 162 collision.initialize(world, mTileWidth, mTileHeight); in loadLevel() 165 mSpawnLocations = world; in loadLevel() 170 hotSpots.setWorld(world); in loadLevel()
|
/external/jmonkeyengine/engine/src/bullet-native/ |
D | jmePhysicsSpace.cpp | 160 …btDiscreteDynamicsWorld* world = new btDiscreteDynamicsWorld(dispatcher, broadphase, solver, colli… in createPhysicsSpace() local 161 dynamicsWorld = world; in createPhysicsSpace() 166 world->getSimulationIslandManager()->setSplitIslands(false); in createPhysicsSpace() 167 world->getSolverInfo().m_numIterations = 4; in createPhysicsSpace() 168 …world->getSolverInfo().m_solverMode = SOLVER_SIMD + SOLVER_USE_WARMSTARTING; //+SOLVER_RANDMIZE_OR… in createPhysicsSpace() 169 world->getDispatchInfo().m_enableSPU = true; in createPhysicsSpace() 209 void jmePhysicsSpace::preTickCallback(btDynamicsWorld *world, btScalar timeStep) { in preTickCallback() argument 210 jmePhysicsSpace* dynamicsWorld = (jmePhysicsSpace*) world->getWorldUserInfo(); in preTickCallback() 223 void jmePhysicsSpace::postTickCallback(btDynamicsWorld *world, btScalar timeStep) { in postTickCallback() argument 224 jmePhysicsSpace* dynamicsWorld = (jmePhysicsSpace*) world->getWorldUserInfo(); in postTickCallback()
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | FrameLoadDelegate.cpp | 312 …ClearWindowObjectForFrameInScriptWorld(IWebView* webView, IWebFrame* frame, IWebScriptWorld* world) in didClearWindowObjectForFrameInScriptWorld() argument 316 ASSERT_ARG(world, world); in didClearWindowObjectForFrameInScriptWorld() 317 if (!webView || !frame || !world) in didClearWindowObjectForFrameInScriptWorld() 321 if (FAILED(world->standardWorld(&standardWorld))) in didClearWindowObjectForFrameInScriptWorld() 324 if (world == standardWorld) in didClearWindowObjectForFrameInScriptWorld() 327 didClearWindowObjectForFrameInIsolatedWorld(frame, world); in didClearWindowObjectForFrameInScriptWorld() 331 …LoadDelegate::didClearWindowObjectForFrameInIsolatedWorld(IWebFrame* frame, IWebScriptWorld* world) in didClearWindowObjectForFrameInIsolatedWorld() argument 337 JSGlobalContextRef ctx = framePrivate->globalContextForScriptWorld(world); in didClearWindowObjectForFrameInIsolatedWorld() 345 …thUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttr… in didClearWindowObjectForFrameInIsolatedWorld()
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundleFrame.h | 50 …ef WKBundleFrameGetJavaScriptContextForWorld(WKBundleFrameRef frame, WKBundleScriptWorldRef world); 54 …deForWorld(WKBundleFrameRef frame, WKBundleNodeHandleRef nodeHandle, WKBundleScriptWorldRef world); 55 …ForWorld(WKBundleFrameRef frame, WKBundleRangeHandleRef rangeHandle, WKBundleScriptWorldRef world);
|