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

/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 Dfunique-sections.c7 void world() {} function
12 // UNIQUE: .section .text.world,"ax",@progbits
/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/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp7 const char * hello = "world";
8 const char * world = "hello"; variable
/external/pdfium/fpdfsdk/src/
H A Dfpdftext_embeddertest.cpp40 static const char expected[] = "Hello, world!\r\nGoodbye, world!";
150 std::unique_ptr<unsigned short, pdfium::FreeDeleter> world = local
151 GetFPDFWideString(L"world");
174 // Two occurences of "world" in test page.
175 search = FPDFText_FindStart(textpage, world.get(), 0, 2);
182 // First occurence of "world" in this test page.
187 // Last occurence of "world" in this test page.
209 search = FPDFText_FindStart(textpage, world.get(),
/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;
H A DCollisionSystem.java26 * world. This version is based on a collision world of line segments, organized into an array of
36 * can be used to run user code over the collision world by passing different TileVisitor
85 /* Sets the current collision world to the supplied tile world. */
86 public void initialize(TiledWorld world, int tileWidth, int tileHeight) { argument
87 mWorld = world;
94 * Casts a ray into the collision world. The ray is bound by the start and end points supplied.
98 * @param startPoint The starting point for the ray in world units.
99 * @param endPoint The end point for the ray in world unit
[all...]
H A DGameObjectFactory.java574 public void spawnFromWorld(TiledWorld world, int tileWidth, int tileHeight) { argument
575 // Walk the world and spawn objects based on tile indexes.
576 final float worldHeight = world.getHeight() * tileHeight;
579 for (int y = 0; y < world.getHeight(); y++) {
580 for (int x = 0; x < world.getWidth(); x++) {
581 int index = world.getTile(x, y);
/external/icu/icu4c/source/test/intltest/
H A Dregiontst.cpp673 const Region *world = Region::getInstance("001",status); local
678 StringEnumeration *containedInWorld = world->getContainedRegions(URGN_TERRITORY, status);
680 errln("world->getContainedRegions(URGN_TERRITORY, status) failed: %s", u_errorName(status));
706 errln("Available territories and all territories contained in world should be the same set.\nAvailable = %s\nContained in World = %s",
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp5.cpp34 extern const char world[6];
35 const char world[6] = "world"; member in namespace:pointer_to_object_parameters
38 (void)A<world>().get();
/external/gmock/test/
H A Dgmock-actions_test.cc491 Action<std::string()> a2 = Return("world");
492 EXPECT_EQ("world", a2.Perform(make_tuple()));
734 a = SetArgPointee<1>("world");
738 EXPECT_STREQ("world", ptr);
743 Action<MyFunction> a = SetArgPointee<0>(L"world");
746 EXPECT_STREQ(L"world", ptr);
751 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
754 EXPECT_EQ(L"world", str);
771 char world_array[] = "world";
772 char* const world local
792 wchar_t* const world = world_array; local
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-actions_test.cc491 Action<std::string()> a2 = Return("world");
492 EXPECT_EQ("world", a2.Perform(make_tuple()));
730 a = SetArgPointee<1>("world");
734 EXPECT_STREQ("world", ptr);
739 Action<MyFunction> a = SetArgPointee<0>(L"world");
742 EXPECT_STREQ(L"world", ptr);
747 Action<MyStringFunction> a2 = SetArgPointee<0>(L"world");
750 EXPECT_EQ(L"world", str);
767 char world_array[] = "world";
768 char* const world local
788 wchar_t* const world = world_array; local
[all...]

Completed in 388 milliseconds