HomeSort by relevance Sort by last modified time
    Searched refs:world (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGen/
2008-01-28-PragmaMark.c 2 #pragma mark LLVM's world
4 #error LLVM's world
  /external/webkit/Source/WebKit/mac/WebView/
WebScriptWorld.mm 38 RefPtr<DOMWrapperWorld> world;
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)
    [all...]
WebScriptWorld.h 35 + (WebScriptWorld *)world; variable
WebScriptWorldInternal.h 34 + (WebScriptWorld *)findOrCreateWorld:(WebCore::DOMWrapperWorld*)world;
  /external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.h 45 inline void* wrapperContext(DOMWrapperWorld* world, Node*)
47 return world;
50 inline JSDOMWrapper* getInlineCachedWrapper(DOMWrapperWorld* world, Node* node)
52 if (!world->isNormal())
57 inline bool setInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper)
59 if (!world->isNormal())
62 node->setWrapper(*world->globalData(), wrapper, wrapperOwner(world, node), wrapperContext(world, node));
66 inline bool clearInlineCachedWrapper(DOMWrapperWorld* world, Node* node, JSDOMWrapper* wrapper
    [all...]
WebCoreJSClientData.h 55 void rememberWorld(DOMWrapperWorld* world)
57 ASSERT(!m_worldSet.contains(world));
58 m_worldSet.add(world);
60 void forgetWorld(DOMWrapperWorld* world)
62 ASSERT(m_worldSet.contains(world));
63 m_worldSet.remove(world);
JSDOMGlobalObject.cpp 45 JSDOMGlobalObject::JSDOMGlobalObject(JSGlobalData& globalData, Structure* structure, PassRefPtr<DOMWrapperWorld> world, JSObject* thisValue)
48 , m_world(world)
108 JSDOMGlobalObject* toJSDOMGlobalObject(Document* document, DOMWrapperWorld* world)
110 return toJSDOMWindow(document->frame(), world);
113 JSDOMGlobalObject* toJSDOMGlobalObject(ScriptExecutionContext* scriptExecutionContext, DOMWrapperWorld* world)
116 return toJSDOMGlobalObject(static_cast<Document*>(scriptExecutionContext), world);
ScriptState.cpp 69 ScriptState* scriptStateFromNode(DOMWrapperWorld* world, Node* node)
81 return frame->script()->globalObject(world)->globalExec();
84 ScriptState* scriptStateFromPage(DOMWrapperWorld* world, Page* page)
86 return page->mainFrame()->script()->globalObject(world)->globalExec();
ScriptController.h 78 JSDOMWindowShell* windowShell(DOMWrapperWorld* world)
80 ShellMap::iterator iter = m_windowShells.find(world);
81 return (iter != m_windowShells.end()) ? iter->second.get() : initScript(world);
83 JSDOMWindowShell* existingWindowShell(DOMWrapperWorld* world) const
85 ShellMap::const_iterator iter = m_windowShells.find(world);
88 JSDOMWindow* globalObject(DOMWrapperWorld* world)
90 return windowShell(world)->window();
172 JSDOMWindowShell* initScript(DOMWrapperWorld* world);
JSNamedNodeMapCustom.cpp 56 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); local
57 uncacheWrapper(world, jsNamedNodeMap->impl(), jsNamedNodeMap);
66 inline void* wrapperContext(DOMWrapperWorld* world, NamedNodeMap*)
68 return world;
DOMWrapperWorld.h 47 inline JSDOMWrapperOwner::JSDOMWrapperOwner(DOMWrapperWorld* world)
48 : m_world(world)
60 // Free as much memory held onto by this world as possible.
92 return static_cast<JSDOMGlobalObject*>(exec->lexicalGlobalObject())->world();
JSNodeCustom.cpp 83 static bool isObservable(JSNode* jsNode, Node* node, DOMWrapperWorld* world)
117 if (world->m_wrappers.get(style))
123 if (JSDOMWrapper* wrapper = world->m_wrappers.get(context).get()) {
130 if (world->m_wrappers.get(sheet))
135 if (world->m_wrappers.get(sheet))
141 if (world->m_wrappers.get(sheet))
149 static inline bool isReachableFromDOM(JSNode* jsNode, Node* node, DOMWrapperWorld* world, MarkStack& markStack)
172 return isObservable(jsNode, node, world) && markStack.containsOpaqueRoot(root(node));
178 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); local
179 return isReachableFromDOM(jsNode, jsNode->impl(), world, markStack)
185 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); local
    [all...]
ScriptController.cpp 101 void ScriptController::destroyWindowShell(DOMWrapperWorld* world)
103 ASSERT(m_windowShells.contains(world));
104 m_windowShells.remove(world);
105 world->didDestroyWindowShell(this);
108 JSDOMWindowShell* ScriptController::createWindowShell(DOMWrapperWorld* world)
110 ASSERT(!m_windowShells.contains(world));
111 Strong<JSDOMWindowShell> windowShell(*world->globalData(), new JSDOMWindowShell(m_frame->domWindow(), world));
113 m_windowShells.add(world, windowShell);
114 world->didCreateWindowShell(this)
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebscriptworld_p.h 34 world = o;
41 WTF::RefPtr<WebCore::DOMWrapperWorld> world; member in class:QWebScriptWorldPrivate
qwebscriptworld.cpp 51 DOMWrapperWorld* QWebScriptWorld::world() const function in class:QWebScriptWorld
53 return d ? d->world.get() : 0;
qwebscriptworld.h 42 WebCore::DOMWrapperWorld* world() const;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleScriptWorld.cpp 42 RefPtr<InjectedBundleScriptWorld> world = InjectedBundleScriptWorld::create(); local
43 return toAPI(world.release().releaseRef());
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleScriptWorld.cpp 50 PassRefPtr<InjectedBundleScriptWorld> InjectedBundleScriptWorld::getOrCreate(DOMWrapperWorld* world)
52 if (world == mainThreadNormalWorld())
55 if (InjectedBundleScriptWorld* existingWorld = allWorlds().get(world))
58 return adoptRef(new InjectedBundleScriptWorld(world));
63 static InjectedBundleScriptWorld* world = adoptRef(new InjectedBundleScriptWorld(mainThreadNormalWorld())).leakRef(); local
64 return world;
67 InjectedBundleScriptWorld::InjectedBundleScriptWorld(PassRefPtr<DOMWrapperWorld> world)
68 : m_world(world)
  /external/webkit/Source/WebKit/win/
WebScriptWorld.cpp 42 inline WebScriptWorld::WebScriptWorld(PassRefPtr<DOMWrapperWorld> world)
44 , m_world(world)
46 ASSERT_ARG(world, m_world);
48 ASSERT_ARG(world, !allWorlds().contains(m_world.get()));
75 COMPtr<WebScriptWorld> WebScriptWorld::createInstance(PassRefPtr<DOMWrapperWorld> world)
77 return new WebScriptWorld(world);
80 COMPtr<WebScriptWorld> WebScriptWorld::findOrCreateWorld(DOMWrapperWorld* world)
82 if (world == mainThreadNormalWorld())
85 if (WebScriptWorld* existingWorld = allWorlds().get(world))
88 return createInstance(world);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 31 GLWorld world = new GLWorld(); local
52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1);
53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1);
54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1);
56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3);
57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3);
58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3);
60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5);
61 mCubes[7] = new Cube(world, c2, c4, c4, c3, c5, c5);
62 mCubes[8] = new Cube(world, c4, c4, c4, c5, c5, c5)
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
anchor.js 4 ["hello, world", "hello, world"],
  /external/webkit/Source/WebCore/page/
PageGroup.cpp 368 void PageGroup::addUserScriptToWorld(DOMWrapperWorld* world, const String& source, const KURL& url,
372 ASSERT_ARG(world, world);
377 UserScriptVector*& scriptsInWorld = m_userScripts->add(world, 0).first->second;
383 void PageGroup::addUserStyleSheetToWorld(DOMWrapperWorld* world, const String& source, const KURL& url,
389 ASSERT_ARG(world, world);
394 UserStyleSheetVector*& styleSheetsInWorld = m_userStyleSheets->add(world, 0).first->second;
403 void PageGroup::removeUserScriptFromWorld(DOMWrapperWorld* world, const KURL& url)
405 ASSERT_ARG(world, world)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
TimeUtilsTest.java 87 String[] world = new String[] { local
386 for (int i = 0; i < world.length; i += 2) {
387 String country = world[i];
388 String name = world[i + 1];
405 String[] world = new String[] { local
410 for (int i = 0; i < world.length; i += 2) {
411 String country = world[i];
412 String name = world[i + 1];
  /external/webkit/Source/WebCore/bindings/v8/
MainThreadDOMData.cpp 58 return *context->world()->domDataStore();
  /external/replicaisland/src/com/replica/replicaisland/
LevelSystem.java 123 TiledWorld world = new TiledWorld(byteStream); local
148 mTileWidth, mTileHeight, world, tileIndex);
155 // Collision always defines the world boundaries.
156 mWidthInTiles = world.getWidth();
157 mHeightInTiles = world.getHeight();
162 collision.initialize(world, mTileWidth, mTileHeight);
165 mSpawnLocations = world;
170 hotSpots.setWorld(world);

Completed in 298 milliseconds

1 2 3 4 5 6