/ndk/build/awk/ |
check-awk.awk | 25 s1="A real world example" 26 if (! match(s1,"world")) { 34 if (s2 != "world") {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_frozen.py | 34 'Hello world...\nHello world...\nHello world...\n')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_frozen.py | 34 'Hello world...\nHello world...\nHello world...\n')
|
/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...] |
/packages/experimental/DreamTheater/src/com/android/dreamtheater/ |
BouncyDroid.java | 47 public static class World { 130 World mWorld; 133 HashMap<Integer, World.Vec> mFingers = new HashMap<Integer, World.Vec>(); 134 World.Body mBody; 135 World.Vec mGrabSpot; 202 mWorld = new World(); 204 mBody = new World.Body(mass, new World.Vec(200,200)); 221 mBody.applyImpulse(new World.Vec(400000, -200000)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_stringptr.py | 17 b = c_buffer("Hello, World") 28 self.assertRaises(TypeError, setattr, x, "str", "Hello, World") 38 x.str = "Hello, World" 39 self.assertEqual(x.str, "Hello, World") 40 b = c_buffer("Hello, World")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_stringptr.py | 17 b = c_buffer("Hello, World") 28 self.assertRaises(TypeError, setattr, x, "str", "Hello, World") 38 x.str = "Hello, World" 39 self.assertEqual(x.str, "Hello, World") 40 b = c_buffer("Hello, World")
|
/hardware/ti/omap4xxx/security/tee_client_api/ |
schannel6_protocol.h | 168 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 176 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 177 uint32_t nDeviceContextID; /* an opaque Normal World identifier for the device context */ 185 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 199 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 215 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 229 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 240 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 252 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */ 263 uint32_t nOperationID; /* an opaque Normal World identifier for the operation * [all...] |
/external/chromium/net/base/ |
data_url_unittest.cc | 64 "hello world" }, 72 { "data:text/html,%3Chtml%3E%3Cbody%3E%3Cb%3Ehello%20world" 77 "<html><body><b>hello world</b></body></html>" }, 79 { "data:text/html,<html><body><b>hello world</b></body></html>", 83 "<html><body><b>hello world</b></body></html>" }, 112 "hello world" }, 119 "hello world" },
|
/libcore/luni/src/test/java/libcore/java/util/ |
ObjectsTest.java | 39 String[] o2 = new String[] { "world" }; 51 assertFalse(Objects.deepEquals("hello", "world")); 68 assertEquals(-1107615551, Objects.hash("hello", "world")); 69 assertEquals(23656287, Objects.hash("hello", "world", null)); 112 assertEquals("hello", Objects.toString(new Hello(), "world")); 113 assertEquals("world", Objects.toString(null, "world"));
|
/external/chromium_org/third_party/sqlite/src/test/ |
fts1j.test | 28 INSERT INTO t3 (rowid, content) VALUES(1, "hello world"); 33 INSERT INTO t1 (rowid, content) VALUES(1, "hello world"); 35 INSERT INTO t1 (rowid, content) VALUES(3, "cruel world"); 59 INSERT INTO t2 (rowid, content) VALUES(1, "hello world"); 61 INSERT INTO t2 (rowid, content) VALUES(3, "cruel world"); 78 INSERT INTO two.t3 (rowid, content) VALUES(3, "cruel world");
|
fts2j.test | 28 INSERT INTO t3 (rowid, content) VALUES(1, "hello world"); 33 INSERT INTO t1 (rowid, content) VALUES(1, "hello world"); 35 INSERT INTO t1 (rowid, content) VALUES(3, "cruel world"); 59 INSERT INTO t2 (rowid, content) VALUES(1, "hello world"); 61 INSERT INTO t2 (rowid, content) VALUES(3, "cruel world"); 78 INSERT INTO two.t3 (rowid, content) VALUES(3, "cruel world");
|
fts3aj.test | 28 INSERT INTO t3 (rowid, content) VALUES(1, "hello world"); 33 INSERT INTO t1 (rowid, content) VALUES(1, "hello world"); 35 INSERT INTO t1 (rowid, content) VALUES(3, "cruel world"); 59 INSERT INTO t2 (rowid, content) VALUES(1, "hello world"); 61 INSERT INTO t2 (rowid, content) VALUES(3, "cruel world"); 78 INSERT INTO two.t3 (rowid, content) VALUES(3, "cruel world");
|
incrblobfault.test | 21 INSERT INTO blob VALUES(1, 'hello world'); 22 INSERT INTO blob VALUES(2, 'world hello'); 65 faultsim_test_result {0 {hello world}}
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
HelloWorld.java | 29 * Hello World</a></h3> 34 App/Activity/Hello World 40 * <td >The Hello World Screen implementation</td>
|
/external/chromium_org/courgette/ |
difference_estimator_unittest.cc | 16 static const char kString1[] = "Hello world"; 18 const char kString2[] = "Hello world"; 28 static const char kString1[] = "Hello world";
|
/external/chromium_org/net/quic/crypto/ |
null_decrypter_test.cc | 26 0, "hello world!", StringPiece(reinterpret_cast<const char*>(expected), 45 0, "hello world!", StringPiece(reinterpret_cast<const char*>(expected), 60 0, "hello world!", StringPiece(reinterpret_cast<const char*>(expected),
|
/external/chromium_org/v8/test/webkit/fast/js/ |
object-prototype-toLocaleString-expected.txt | 31 PASS Object.prototype.toLocaleString.call('Hello, world!') is "Hello, world!" 32 PASS Object.prototype.toLocaleString.call('Hello, world!') is "stringPrototypeToString"
|
object-prototype-toLocaleString.js | 33 shouldBe("Object.prototype.toLocaleString.call('Hello, world!')", '"Hello, world!"'); 37 shouldBe("Object.prototype.toLocaleString.call('Hello, world!')", '"stringPrototypeToString"');
|
/art/test/HelloWorld/ |
HelloWorld.java | 19 System.logI("Hello, world!");
|
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmEventTest.java | 31 attributes.put("Hello World", attributes); 32 attributes.put("Hello", "World"); 33 attributes.put("World", ""); 41 checkGetAttributeWithEventType(attributes, "World", true); 42 checkGetAttributeWithEventType(attributes, "Hello World", true); 50 checkGetAttributeWithEventType(attributes, "World", false); 51 checkGetAttributeWithEventType(attributes, "Hello World", false); 58 checkGetMessageWithEventType("Hello World", true); 63 checkGetMessageWithEventType("Hello World", false);
|
/development/tutorials/MoarRam/res/values/ |
strings.xml | 6 <string name="hello_world">Hello world!</string>
|
/external/apache-harmony/support/src/test/resources/tests/resources/ |
Inserted_Entry_Manifest.jar | |
Inserted_Entry_Manifest_with_DigestCode.jar | |
Integrate.jar | |