/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:
|
/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
|
/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/third_party/WebKit/Source/bindings/v8/ |
ScriptPreprocessor.cpp | 49 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(ScriptPreprocessorIsolatedWorldId, DOMWrapperWorld::mainWorldExtensionGroup); local 50 m_scriptState = ScriptState::from(toV8Context(frame, *world));
|
V8WindowShell.h | 82 DOMWrapperWorld& world() { return *m_world; } function in class:WebCore::V8WindowShell
|
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...] |
V8AbstractEventListener.h | 113 virtual DOMWrapperWorld& world() const { return scriptState()->world(); } function in class:WebCore::V8AbstractEventListener
|
WorkerScriptController.h | 96 DOMWrapperWorld& world() const { return *m_world; } function in class:WebCore::WorkerScriptController
|
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();
|
ScriptState.h | 70 DOMWrapperWorld& world() const { return *m_world; } function in class:WebCore::ScriptState
|
ScriptController.cpp | 204 V8WindowShell* ScriptController::existingWindowShell(DOMWrapperWorld& world) 206 if (world.isMainWorld()) 209 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world.worldId()); 215 V8WindowShell* ScriptController::windowShell(DOMWrapperWorld& world) 218 if (world.isMainWorld()) 221 IsolatedWorldMap::iterator iter = m_isolatedWorlds.find(world.worldId()); 225 OwnPtr<V8WindowShell> isolatedWorldShell = V8WindowShell::create(m_frame, world, m_isolate); 227 m_isolatedWorlds.set(world.worldId(), isolatedWorldShell.release()); 230 if (!shell->isContextInitialized() && shell->initializeIfNeeded() && world.isMainWorld()) 240 DOMWrapperWorld& world = DOMWrapperWorld::current(m_isolate) 595 RefPtr<DOMWrapperWorld> world = DOMWrapperWorld::ensureIsolatedWorld(worldID, extensionGroup); local [all...] |
/external/llvm/test/tools/llvm-cov/Inputs/ |
test.cpp | 7 const char * hello = "world"; 8 const char * world = "hello"; variable
|
/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/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
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8XMLHttpRequestCustom.cpp | 60 DOMWrapperWorld& world = DOMWrapperWorld::current(info.GetIsolate()); local 61 if (world.isIsolatedWorld()) 62 securityOrigin = world.isolatedWorldSecurityOrigin();
|
/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];
|
/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...] |
/prebuilts/eclipse/maven/apache-maven-3.2.1/boot/ |
plexus-classworlds-2.5.1.jar | |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
sorter.py | 39 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'] == 'vm' 367 def world(self): member in class:AbstractSorter [all...] |
/external/icu/icu4c/source/test/intltest/ |
regiontst.cpp | 655 // Test to make sure that the set of territories contained in World and the set of all available 659 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/ |
SDL_macevents.c | 462 int world = SDLK_WORLD_0; local 617 MAC_keymap[i] = 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);
|
TiledVertexGrid.java | 54 public void setWorld(TiledWorld world) { 55 mWorld = world; 131 TiledWorld world = mWorld; local 133 if (!mGenerated && world != null && gl != null && mTexture != null) {
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
p5.cpp | 34 extern const char world[6]; 35 const char world[6] = "world"; member in namespace:pointer_to_object_parameters 38 (void)A<world>().get();
|
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/ |
org.eclipse.sisu.plexus-0.0.0.M5.jar | |