Searched defs:world (Results 1 - 25 of 32) sorted by relevance

12

/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:
/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/bindings/core/v8/
H A DScriptPreprocessor.cpp50 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(ScriptPreprocessorIsolatedWorldId, DOMWrapperWorld::mainWorldExtensionGroup); local
51 m_scriptState = ScriptState::from(toV8Context(frame, *world));
H A DWindowProxy.h82 DOMWrapperWorld& world() { return *m_world; } function in class:blink::WindowProxy
H A DScriptPromisePropertyBase.cpp34 ScriptPromise ScriptPromisePropertyBase::promise(DOMWrapperWorld& world) argument
40 v8::Handle<v8::Context> context = toV8Context(executionContext(), world);
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 DV8AbstractEventListener.h113 virtual DOMWrapperWorld& world() const { return scriptState()->world(); } function in class:blink::V8AbstractEventListener
H A DScriptState.h70 DOMWrapperWorld& world() const { return *m_world; } function in class:blink::ScriptState
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 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 DV8DOMConfiguration.cpp45 DOMWrapperWorld& world = DOMWrapperWorld::current(isolate); local
47 if (accessors[i].exposeConfiguration == OnlyExposedToPrivateScript && !world.isPrivateScriptIsolatedWorld())
52 if (world.isMainWorld()) {
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 DWindowProxy.cpp78 PassOwnPtr<WindowProxy> WindowProxy::create(LocalFrame* frame, DOMWrapperWorld& world, v8::Isolate* isolate) argument
80 return adoptPtr(new WindowProxy(frame, &world, isolate));
83 WindowProxy::WindowProxy(LocalFrame* frame, PassRefPtr<DOMWrapperWorld> world, v8::Isolate* isolate) argument
86 , m_world(world)
215 // ActivityLogger for main world is updated within updateDocument().
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DErrorEvent.cpp66 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber, unsigned columnNumber, DOMWrapperWorld* world) argument
72 , m_world(world)
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
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp7 const char * hello = "world";
8 const char * world = "hello"; variable
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8XMLHttpRequestCustom.cpp62 DOMWrapperWorld& world = DOMWrapperWorld::current(info.GetIsolate()); local
63 if (world.isIsolatedWorld())
64 securityOrigin = world.isolatedWorldSecurityOrigin();
/external/replicaisland/src/com/replica/replicaisland/
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 DTiledVertexGrid.java54 public void setWorld(TiledWorld world) { argument
55 mWorld = world;
131 TiledWorld world = mWorld;
133 if (!mGenerated && world != null && gl != null && mTexture != null) {
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/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorRuntimeAgent.cpp219 DOMWrapperWorld& world = scriptState->world(); local
220 String humanReadableName = world.isIsolatedWorld() ? world.isolatedWorldHumanReadableName() : "";
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dregiontst.cpp659 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/chromium_org/tools/deep_memory_profiler/lib/
H A Dsorter.py39 in dmprof. (For example, the "vm" world and the "malloc" world.)
143 def __init__(self, world):
145 self._world = world
329 self._world = dct['world']
336 if dct['world'] == 'vm':
338 elif dct['world'] == 'malloc':
341 LOGGER.error('Unknown sorter world type')
346 print >> result, 'world=%s' % self._world
358 if sorter_dict['world']
367 def world(self): member in class:AbstractSorter
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dregiontst.cpp659 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/
H A DSDL_macevents.c462 int world = SDLK_WORLD_0; local
617 MAC_keymap[i] = world++;

Completed in 659 milliseconds

12