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

  /external/llvm/test/MC/ELF/
comdat-reloc.s 7 call world
10 .section .text.world,"axG",@progbits,world,comdat
11 .type world,@function
12 world: label
22 // CHECK-NEXT: Name: .text.world
27 // CHECK-NEXT: Name: .rela.text.world
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WindowShell.h 80 DOMWrapperWorld* world() { return m_world.get(); } function in class:WebCore::V8WindowShell
V8Initializer.cpp 106 DOMWrapperWorld* world = DOMWrapperWorld::current(); local
108 if (world && frame && frame->script()->existingWindowShell(world)) {
DOMWrapperWorld.cpp 75 if (DOMWrapperWorld* world = isolatedWorld(context))
76 return world;
90 DEFINE_STATIC_LOCAL(RefPtr<DOMWrapperWorld>, world, (adoptRef(new DOMWrapperWorld(DOMWrapperWorld::mainWorldId - 1, DOMWrapperWorld::mainWorldExtensionGroup - 1))));
91 return world.get();
149 RefPtr<DOMWrapperWorld> world = result.iterator->value; local
150 if (world) {
151 ASSERT(world->worldId() == worldId);
152 ASSERT(world->extensionGroup() == extensionGroup);
153 return world.release();
156 world = adoptRef(new DOMWrapperWorld(worldId, extensionGroup))
    [all...]
ScriptController.cpp 249 V8WindowShell* ScriptController::existingWindowShell(DOMWrapperWorld* world)
251 ASSERT(world);
253 if (world->isMainWorld())
257 if (world == existingWindowShellWorkaroundWorld())
260 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world->worldId());
266 V8WindowShell* ScriptController::windowShell(DOMWrapperWorld* world)
268 ASSERT(world);
271 if (world->isMainWorld())
274 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world->worldId());
278 OwnPtr<V8WindowShell> isolatedWorldShell = V8WindowShell::create(m_frame, world, m_isolate)
694 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(worldID, extensionGroup); local
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 85 String[] world = new String[] { local
90 for (int i = 0; i < world.length; i += 2) {
91 String country = world[i];
92 String name = world[i + 1];
  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventListener.h 49 virtual DOMWrapperWorld* world() const { return 0; } function in class:WebCore::EventListener
  /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/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp 159 //create dynamics world
160 btDiscreteDynamicsWorld* world = new btDiscreteDynamicsWorld(dispatcher, broadphase, solver, collisionConfiguration); local
161 dynamicsWorld = world;
166 world->getSimulationIslandManager()->setSplitIslands(false);
167 world->getSolverInfo().m_numIterations = 4;
168 world->getSolverInfo().m_solverMode = SOLVER_SIMD + SOLVER_USE_WARMSTARTING; //+SOLVER_RANDMIZE_ORDER;
169 world->getDispatchInfo().m_enableSPU = true;
209 void jmePhysicsSpace::preTickCallback(btDynamicsWorld *world, btScalar timeStep) {
210 jmePhysicsSpace* dynamicsWorld = (jmePhysicsSpace*) world->getWorldUserInfo();
223 void jmePhysicsSpace::postTickCallback(btDynamicsWorld *world, btScalar timeStep)
    [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/chromium_org/tools/deep_memory_profiler/lib/
sorter.py 31 in dmprof. (For example, the "vm" world and the "malloc" world.)
135 def __init__(self, world):
137 self._world = world
331 self._world = dct['world']
338 if dct['world'] == 'vm':
340 elif dct['world'] == 'malloc':
343 LOGGER.error('Unknown sorter world type')
347 result.write('world=%s' % self._world)
358 if sorter_dict['world'] == 'vm'
367 def world(self): member in class:AbstractSorter
    [all...]
  /external/icu4c/test/intltest/
regiontst.cpp 655 // Test to make sure that the set of territories contained in World and the set of all available
659 const Region *world = Region::getInstance("001",status); local
664 StringEnumeration *containedInWorld = world->getContainedRegions(URGN_TERRITORY);
688 errln("Available territories and all territories contained in world should be the same set.\nAvailable = %s\nContained in World = %s",
  /external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macevents.c 462 int world = SDLK_WORLD_0; local
617 MAC_keymap[i] = world++;
  /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);
TiledVertexGrid.java 54 public void setWorld(TiledWorld world) {
55 mWorld = world;
131 TiledWorld world = mWorld; local
133 if (!mGenerated && world != null && gl != null && mTexture != null) {
  /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/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...]

Completed in 1268 milliseconds