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

1 2 3 4 5 6 7

  /external/clang/test/CodeGen/
function-sections.c 13 void world() {} function
16 // PLAIN: world:
20 // FUNC_SECT: section .text.world,
21 // FUNC_SECT: world:
26 // DATA_SECT: world:
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/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")
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
LLandActivity.java 31 LLand world = (LLand) findViewById(R.id.world); local
32 world.setScoreField((TextView) findViewById(R.id.score));
33 world.setSplash(findViewById(R.id.welcome));
34 Log.v(LLand.TAG, "focus: " + world.requestFocus());
  /external/chromium_org/tools/gyp/test/build-option/
gyptest-build.py 8 Verifies simplest-possible build of a "Hello, world!" program
24 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
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DOMWrapperWorld.h 59 // This class represent a collection of DOM wrappers for a specific world.
72 static DOMWrapperWorld& world(v8::Handle<v8::Context> context) function in class:WebCore::DOMWrapperWorld
74 return ScriptState::from(context)->world();
82 // we cache the world of the initializing window on worldOfInitializingWindow.
86 return world(isolate->GetCurrentContext());
91 // Associates an isolated world (see above for description) with a security
92 // origin. XMLHttpRequest instances used in that world will be considered
97 // Associated an isolated world with a Content Security Policy. Resources
98 // embedded into the main world's DOM from script executed in an isolated
99 // world should be restricted based on the isolated world's DOM, not th
    [all...]
ScriptState.cpp 14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
16 RefPtr<ScriptState> scriptState = adoptRef(new ScriptState(context, world));
30 ScriptState::ScriptState(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
33 , m_world(world)
90 PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
92 RefPtr<ScriptStateForTesting> scriptState = adoptRef(new ScriptStateForTesting(context, world));
99 ScriptStateForTesting::ScriptStateForTesting(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
100 : ScriptState(context, world)
DOMWrapperWorld.cpp 127 RefPtr<DOMWrapperWorld> world = result.storedValue->value; local
128 if (world) {
129 ASSERT(world->worldId() == worldId);
130 ASSERT(world->extensionGroup() == extensionGroup);
131 return world.release();
134 world = DOMWrapperWorld::create(worldId, extensionGroup);
135 result.storedValue->value = world.get();
139 return world.release();
  /external/chromium_org/third_party/WebKit/Source/core/events/
ErrorEvent.h 56 static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
58 return adoptRefWillBeNoop(new ErrorEvent(message, fileName, lineNumber, columnNumber, world));
64 static PassRefPtrWillBeRawPtr<ErrorEvent> createSanitizedError(DOMWrapperWorld* world)
66 return adoptRefWillBeNoop(new ErrorEvent("Script error.", String(), 0, 0, world));
81 DOMWrapperWorld* world() const { return m_world.get(); } function in class:WebCore::FINAL
  /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/tools/gyp/test/relative/
gyptest-default.py 8 Verifies simplest-possible build of a "Hello, world!" program
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
cat.py 49 json_root['roots'].append([sorter.world, sorter.name])
55 for world in ['vm', 'malloc']:
56 orders['worlds'][world] = OrderedDict()
57 orders['worlds'][world]['breakdown'] = OrderedDict()
58 for sorter in sorters.iter_world(world):
63 orders['worlds'][world]['breakdown'][sorter.name] = order
97 def _fill_world(dump, bucket_set, sorters, world):
100 root['name'] = world
101 if world == 'vm':
103 elif world == 'malloc'
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
ifcritical-err.asm 3 teststring db "Hello, world"
  /external/valgrind/main/memcheck/tests/
client-msg.stderr.exp 1 hello <> <&>%s 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/tools/gyp/test/target/
gyptest-target.py 8 Verifies simplest-possible build of a "Hello, world!" program
  /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);
  /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,

Completed in 529 milliseconds

1 2 3 4 5 6 7