Searched refs:world (Results 1 - 25 of 94) sorted by relevance

1234

/external/clang/test/CodeGen/
H A Dfunction-sections.c13 void world() {} function
16 // PLAIN: world:
20 // FUNC_SECT: section .text.world,
21 // FUNC_SECT: world:
26 // DATA_SECT: world:
H A D2008-01-28-PragmaMark.c2 #pragma mark LLVM's world
4 #error LLVM's world
/external/chromium_org/v8/test/preparser/
H A Dstrict-octal-regexp.js32 var re = /hello\040world/;
/external/chromium_org/v8/test/webkit/fast/js/
H A Dobject-prototype-toLocaleString.js33 shouldBe("Object.prototype.toLocaleString.call('Hello, world!')", '"Hello, world!"');
37 shouldBe("Object.prototype.toLocaleString.call('Hello, world!')", '"stringPrototypeToString"');
/external/llvm/test/MC/ELF/
H A Dcomdat-reloc.s7 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/core/events/
H A DErrorEvent.h57 static PassRefPtrWillBeRawPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world) argument
59 return adoptRefWillBeNoop(new ErrorEvent(message, fileName, lineNumber, columnNumber, world));
65 static PassRefPtrWillBeRawPtr<ErrorEvent> createSanitizedError(DOMWrapperWorld* world) argument
67 return adoptRefWillBeNoop(new ErrorEvent("Script error.", String(), 0, 0, world));
82 DOMWrapperWorld* world() const { return m_world.get(); } function in class:blink::FINAL
H A DErrorEvent.cpp66 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world) argument
72 , m_world(world)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.cpp14 PassRefPtr<ScriptState> ScriptState::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) argument
16 RefPtr<ScriptState> scriptState = adoptRef(new ScriptState(context, world));
30 ScriptState::ScriptState(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) argument
33 , m_world(world)
98 PassRefPtr<ScriptStateForTesting> ScriptStateForTesting::create(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) argument
100 RefPtr<ScriptStateForTesting> scriptState = adoptRef(new ScriptStateForTesting(context, world));
107 ScriptStateForTesting::ScriptStateForTesting(v8::Handle<v8::Context> context, PassRefPtr<DOMWrapperWorld> world) argument
108 : ScriptState(context, world)
H A DDOMWrapperWorld.h60 // 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 shoul
123 setWorldOfInitializingWindow(DOMWrapperWorld* world) argument
141 DOMWrapperWorld* world() const { return m_world; } function in class:blink::DOMWrapperWorld::DOMObjectHolderBase
142 setWorld(DOMWrapperWorld* world) argument
[all...]
H A DDOMWrapperWorld.cpp138 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);
H A DV8DOMConfiguration.h90 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);
H A DV8ErrorHandler.cpp57 if (errorEvent->world() && errorEvent->world() != &world())
H A DScriptFunction.cpp16 m_scriptState->world().registerDOMObjectHolder(isolate, this, wrapper);
/external/chromium_org/tools/deep_memory_profiler/subcommands/
H A Dcat.py48 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
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
H A Difcritical-err.asm3 teststring db "Hello, world"
/external/chromium_org/v8/test/mjsunit/regress/
H A Dstring-set-char-deopt.js36 var world = " world";
41 return string + world;
44 assertEquals("Hello " + "world", f("hello", false));
46 assertEquals("Hello " + "world", f("hello", true));
/external/valgrind/main/memcheck/tests/
H A Dclient-msg.stderr.exp1 hello <> <&>%s world
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelSystem.java123 TiledWorld world = new TiledWorld(byteStream);
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);
H A DLevelBuilder.java120 int width, int height, int tileWidth, int tileHeight, TiledWorld world,
158 bg.setWorld(world);
166 if (world.getWidth() > world.getHeight()) {
119 addTileMapLayer(GameObject background, int priority, float scrollSpeed, int width, int height, int tileWidth, int tileHeight, TiledWorld world, int theme) argument
H A DHotSpotSystem.java22 * how to act in that particular area of the game world. Hot spots are commonly used to direct AI
91 public final void setWorld(TiledWorld world) { argument
92 mWorld = world;
/external/deqp/framework/delibs/deutil/
H A DdeCommandLine.c169 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", "
[all...]
/external/chromium_org/tools/deep_memory_profiler/
H A Daccumulate.py34 world = template[0]
38 for rule, _ in snapshot[world]['breakdown'][breakdown].iteritems():
53 world = template[0]
61 for rule, match in snapshot[world]['breakdown'][breakdown].iteritems():
67 subtotal += units_dict[world][unit_id]
81 if subworld == world:
82 # Break down in the same world: consider units.
88 subremainder_total += units_dict[world][unit_id]
96 # Break down in a different world: consider only the total size.
/external/clang/test/Lexer/
H A Dpragma-operators.cpp27 #define pragma_hello _Pragma(u8R"x(message R"y("Hello", world!)y")x")
35 // CHECK: #pragma message("\042Hello\042, world!")
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp7 const char * hello = "world";
8 const char * world = "hello"; variable
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c557 * expression is: meaning='hello';meaning=meaning+' '+'world';
560 * root.meaning='hello';root.meaning=root.meaning+' '+'world';
876 * expression is: meaning='hello';meaning=meaning+' '+'world';
879 * root.meaning='hello';root.meaning=root.meaning+' '+'world';

Completed in 9483 milliseconds

1234