HomeSort by relevance Sort by last modified time
    Searched defs:world (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/WebKit/mac/WebView/
WebScriptWorld.h 35 + (WebScriptWorld *)world; variable
  /external/webkit/Source/WebKit/qt/Api/
qwebscriptworld.cpp 51 DOMWrapperWorld* QWebScriptWorld::world() const function in class:QWebScriptWorld
53 return d ? d->world.get() : 0;
qwebscriptworld_p.h 34 world = o;
41 WTF::RefPtr<WebCore::DOMWrapperWorld> world; member in class:QWebScriptWorldPrivate
  /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/WebKit/win/
WebScriptWorld.h 46 WebCore::DOMWrapperWorld* world() const { return m_world.get(); } function in class:WebScriptWorld
  /external/webkit/Source/WebCore/bindings/v8/
V8IsolatedContext.h 48 // JavaScript. Each isolated world executes in parallel with the main
49 // JavaScript world. An isolated world has access to the same DOM data
50 // structures as the main world but none of the JavaScript pointers.
53 // worlds or between an isolated world and the main world. Because
55 // to avoid having pointers to the main world's DOM wrappers (which are
59 // Creates an isolated world. To destroy it, call destroy().
60 // This will delete the isolated world when the context it owns is GC'd.
64 // Call this to destroy the isolated world. It will be deleted sometim
94 IsolatedWorld* world() const { return m_world.get(); } function in class:WebCore::V8IsolatedContext
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSDOMWindowShell.h 43 JSDOMWindowShell(PassRefPtr<DOMWindow>, DOMWrapperWorld* world);
66 DOMWrapperWorld* world() { return m_world.get(); } function in class:WebCore::JSDOMWindowShell
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;
JSNodeListCustom.cpp 57 DOMWrapperWorld* world = static_cast<DOMWrapperWorld*>(context); local
58 uncacheWrapper(world, jsNodeList->impl(), jsNodeList);
67 inline void* wrapperContext(DOMWrapperWorld* world, NodeList*)
69 return world;
ScriptCachedFrameData.cpp 83 DOMWrapperWorld* world = iter->first.get(); local
86 if (JSDOMWindow* window = m_windows.get(world).get())
JSDOMGlobalObject.h 68 DOMWrapperWorld* world() { return m_world.get(); } function in class:WebCore::JSDOMGlobalObject
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...]
  /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)
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 125 String[] world = new String[] { local
424 for (int i = 0; i < world.length; i += 2) {
425 String country = world[i];
426 String name = world[i + 1];
455 String[] world = new String[] { local
460 for (int i = 0; i < world.length; i += 2) {
461 String country = world[i];
462 String name = world[i + 1];
  /frameworks/base/core/tests/coretests/src/android/util/
TimeUtilsTest.java 89 String[] world = new String[] { local
388 for (int i = 0; i < world.length; i += 2) {
389 String country = world[i];
390 String name = world[i + 1];
407 String[] world = new String[] { local
412 for (int i = 0; i < world.length; i += 2) {
413 String country = world[i];
414 String name = world[i + 1];
  /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/qemu/distrib/sdl-1.2.12/src/video/maccommon/
SDL_macevents.c 462 int world = SDLK_WORLD_0; local
617 MAC_keymap[i] = world++;
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 34 extern const char world[6];
35 const char world[6] = "world"; member in namespace:pointer_to_object_parameters
38 (void)A<world>().get();
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.cpp 417 unsigned LayoutTestController::worldIDForWorld(WKBundleScriptWorldRef world)
421 if (it->second == world)
430 // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world
432 WKRetainPtr<WKBundleScriptWorldRef> world; local
434 world.adopt(WKBundleScriptWorldCreateWorld());
439 world = worldSlot;
446 JSGlobalContextRef jsContext = WKBundleFrameGetJavaScriptContextForWorld(frame, world.get());
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 491 Action<std::string()> a2 = Return("world");
492 EXPECT_EQ("world", a2.Perform(make_tuple()));
729 a = SetArgPointee<1>("world");
733 EXPECT_STREQ("world", ptr);
738 Action<MyFunction> a = SetArgPointee<0>(L"world");
741 EXPECT_STREQ(L"world", ptr);
746 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
749 EXPECT_EQ(L"world", str);
766 char world_array[] = "world";
767 char* const world = world_array local
787 wchar_t* const world = world_array; local
    [all...]
  /external/quake/quake/src/QW/client/
r_draw.c 86 float *world; local
100 world = &pv0->position[0];
103 VectorSubtract (world, modelorg, local);
129 world = &pv1->position[0];
132 VectorSubtract (world, modelorg, local);
  /external/quake/quake/src/WinQuake/
r_draw.cpp 86 float *world; local
100 world = &pv0->position[0];
103 VectorSubtract (world, modelorg, local);
129 world = &pv1->position[0];
132 VectorSubtract (world, modelorg, local);
  /external/quake/quake/src/QW/progs/
progdefs.h 8 int world; member in struct:__anon10564
  /external/quake/quake/src/QW/server/
progdefs.h 27 int world; member in struct:__anon10612

Completed in 1265 milliseconds