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

1 2 3 4 5 6

  /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")
  /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/core/events/
ErrorEvent.h 57 static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
59 return adoptRefWillBeNoop(new ErrorEvent(message, fileName, lineNumber, columnNumber, world));
65 static PassRefPtrWillBeRawPtr<ErrorEvent> createSanitizedError(DOMWrapperWorld* world)
67 return adoptRefWillBeNoop(new ErrorEvent("Script error.", String(), 0, 0, world));
82 DOMWrapperWorld* world() const { return m_world.get(); } function in class:blink::FINAL
ErrorEvent.cpp 66 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world)
72 , m_world(world)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
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)
98 PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
100 RefPtr<ScriptStateForTesting> scriptState = adoptRef(new ScriptStateForTesting(context, world));
107 ScriptStateForTesting::ScriptStateForTesting(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world)
108 : ScriptState(context, world)
DOMWrapperWorld.h 60 // This class represent a collection of DOM wrappers for a specific world.
74 static DOMWrapperWorld& world(v8::Handle<v8::Context> context) function in class:blink::DOMWrapperWorld
76 return ScriptState::from(context)->world();
84 // we cache the world of the initializing window on worldOfInitializingWindow.
88 return world(isolate->GetCurrentContext());
97 // Associates an isolated world (see above for description) with a security
98 // origin. XMLHttpRequest instances used in that world will be considered
103 // Associated an isolated world with a Content Security Policy. Resources
104 // embedded into the main world's DOM from script executed in an isolated
105 // world should be restricted based on the isolated world's DOM, not th
141 DOMWrapperWorld* world() const { return m_world; } function in class:blink::DOMWrapperWorld::DOMObjectHolderBase
    [all...]
DOMWrapperWorld.cpp 138 RefPtr<DOMWrapperWorld> world = result.storedValue->value; local
139 if (world) {
140 ASSERT(world->worldId() == worldId);
141 ASSERT(world->extensionGroup() == extensionGroup);
142 return world.release();
145 world = DOMWrapperWorld::create(worldId, extensionGroup);
146 result.storedValue->value = world.get();
148 return world.release();
238 holderBase->world()->unregisterDOMObjectHolder(holderBase);
V8DOMConfiguration.h 90 DOMWrapperWorld& world = DOMWrapperWorld::current(isolate); local
91 if (attribute.exposeConfiguration == OnlyExposedToPrivateScript && !world.isPrivateScriptIsolatedWorld())
96 if (world.isMainWorld()) {
139 v8::FunctionCallback callbackForWorld(const DOMWrapperWorld& world) const
141 return world.isMainWorld() && callbackForMainWorld ? callbackForMainWorld : callback;
160 // SymbolKeyedMethodConfiguration doesn't support per-world bindings.
170 DOMWrapperWorld& world = DOMWrapperWorld::current(isolate); local
171 if (callback.exposeConfiguration == OnlyExposedToPrivateScript && !world.isPrivateScriptIsolatedWorld())
174 v8::Local<v8::FunctionTemplate> functionTemplate = functionTemplateForCallback(signature, callback.callbackForWorld(world), callback.length, isolate);
  /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 48 json_root['roots'].append([sorter.world, sorter.name])
54 for world in ['vm', 'malloc']:
55 orders['worlds'][world] = OrderedDict()
56 orders['worlds'][world]['breakdown'] = OrderedDict()
57 for sorter in sorters.iter_world(world):
62 orders['worlds'][world]['breakdown'][sorter.name] = order
96 def _fill_world(dump, bucket_set, sorters, world):
99 root['name'] = world
100 if world == 'vm':
102 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/chromium_org/tools/gyp/test/target/
gyptest-target.py 8 Verifies simplest-possible build of a "Hello, world!" program
  /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/chromium_org/chrome/common/extensions/docs/server2/
chroot_file_system.py 14 |fs|, so ChrootFileSystem(fs, 'hello').Read(['world']) is equivalent to
15 fs.Read(['hello/world']) with the 'hello' prefix stripped from the result.
  /external/deqp/framework/delibs/deutil/
deCommandLine.c 169 const char* cmdLine = "hello world";
170 const char* ref[] = { "hello", "world" };
174 const char* cmdLine = "hello/world";
175 const char* ref[] = { "hello/world" };
179 const char* cmdLine = "hello/world --help";
180 const char* ref[] = { "hello/world", "--help" };
184 const char* cmdLine = "hello/world --help foo";
185 const char* ref[] = { "hello/world", "--help", "foo" };
189 const char* cmdLine = "hello\\world --help foo";
190 const char* ref[] = { "hello\\world", "--help", "foo" }
    [all...]

Completed in 1341 milliseconds

1 2 3 4 5 6