HomeSort by relevance Sort by last modified time
    Searched refs:world (Results 1 - 25 of 146) 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/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/tools/gyp/test/build-option/
gyptest-build.py 8 Verifies simplest-possible build of a "Hello, world!" program
18 test.run_built_executable('hello', stdout="Hello, world!\n")
  /external/chromium_org/tools/gyp/test/hello/
gyptest-default.py 8 Verifies simplest-possible build of a "Hello, world!" program
20 test.run_built_executable('hello', stdout="Hello, world!\n")
gyptest-target.py 8 Verifies simplest-possible build of a "Hello, world!" program
20 test.run_built_executable('hello', stdout="Hello, world!\n")
gyptest-all.py 8 Verifies simplest-possible build of a "Hello, world!" program
20 test.run_built_executable('hello', stdout="Hello, world!\n")
  /external/chromium_org/tools/gyp/test/module/
gyptest-default.py 8 Verifies simple build of a "Hello, world!" program with loadable modules. The
  /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...]
Cube.java 22 public Cube(GLWorld world, float left, float bottom, float back, float right, float top, float front) {
23 super(world);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MessagePort.h 86 void setOnmessage(PassRefPtr<EventListener> listener, DOMWrapperWorld* world)
88 setAttributeEventListener(eventNames().messageEvent, listener, world);
91 EventListener* onmessage(DOMWrapperWorld* world) { return getAttributeEventListener(eventNames().messageEvent, world); }
EventListener.h 49 virtual DOMWrapperWorld* world() const { return 0; } function in class:WebCore::EventListener
  /external/chromium_org/tools/gyp/test/relative/
gyptest-default.py 8 Verifies simplest-possible build of a "Hello, world!" program
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
ifcritical-err.asm 3 teststring db "Hello, world"
  /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/chromium_org/third_party/WebKit/Source/bindings/v8/
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...]
ScriptEventListener.cpp 99 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->world());
115 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->world());
129 v8::Handle<v8::Context> v8Context = frame->script()->windowShell(v8Listener->world())->context();
140 v8::Handle<v8::Context> context = toV8Context(document, v8Listener->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);
LevelBuilder.java 120 int width, int height, int tileWidth, int tileHeight, TiledWorld world,
158 bg.setWorld(world);
166 if (world.getWidth() > world.getHeight()) {
  /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...]
  /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/tools/gyp/test/library/
gyptest-shared.py 8 Verifies simple build of a "Hello, world!" program with shared libraries,
gyptest-static.py 8 Verifies simple build of a "Hello, world!" program with static libraries,
  /external/clang/test/Lexer/
pragma-operators.cpp 27 #define pragma_hello _Pragma(u8R"x(message R"y("Hello", world!)y")x")
35 // CHECK: #pragma message("\042Hello\042, world!")
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
cat.py 55 json_root['roots'].append([sorter.world, sorter.name])
83 def _fill_world(dump, bucket_set, sorters, world):
86 root['name'] = world
87 if world == 'vm':
89 elif world == 'malloc':
94 unit_set = UnitSet(world)
95 if world == 'vm':
100 elif world == 'malloc':
109 for sorter in sorters.iter_world(world):
  /external/chromium_org/tools/gyp/test/product/
gyptest-product.py 8 Verifies simplest-possible build of a "Hello, world!" program

Completed in 1211 milliseconds

1 2 3 4 5 6