/external/javassist/sample/hotswap/logging/ |
HelloWorld.java | 1 public class HelloWorld { 3 System.out.println("** HelloWorld.print()");
|
/external/javassist/sample/hotswap/ |
HelloWorld.java | 1 public class HelloWorld {
|
Test.java | 7 new HelloWorld().print(); 9 File newfile = new File("logging/HelloWorld.class"); 14 hs.reload("HelloWorld", bytes); 15 new HelloWorld().print(); 17 newfile = new File("HelloWorld.class"); 22 hs.reload("HelloWorld", bytes); 23 new HelloWorld().print();
|
/external/smali/examples/HelloWorld/ |
HelloWorld.smali | 6 #java -jar smali.jar -o classes.dex HelloWorld.smali 7 #zip HelloWorld.zip classes.dex 8 #adb push HelloWorld.zip /data/local 9 #adb shell dalvikvm -cp /data/local/HelloWorld.zip HelloWorld 12 #java -Xmx512m -jar smali.jar HelloWorld.smali
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
ArrayBufferBuilderTest.cpp | 57 const char data[] = "HelloWorld"; 77 const char data[] = "HelloWorld"; 91 const char data[] = "HelloWorld"; 105 const char data[] = "HelloWorld"; 126 const char data1[] = "HelloWorld"; 147 const char data[] = "HelloWorld"; 160 const char data1[] = "HelloWorld"; 190 const char data[] = "HelloWorld"; 206 const char data[] = "HelloWorld"; 225 const char data[] = "HelloWorld"; [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringTest.java | 27 String hw1 = "HelloWorld"; 29 String hw2 = "HelloWorld"; 31 String hwlc = "helloworld"; 33 String hwuc = "HELLOWORLD"; 170 String str = "!'123123.123HelloWorld!123123helloworld#"; 176 "!?.?HelloWorld!?helloworld#", "?"}; 192 String str = "!'123123.123HelloWorld!123123helloworld#"; [all...] |
/external/dexmaker/src/test/java/com/google/dexmaker/examples/ |
HelloWorldMaker.java | 34 // Generate a HelloWorld class. 35 TypeId<?> helloWorld = TypeId.get("LHelloWorld;"); 36 dexMaker.declare(helloWorld, "HelloWorld.generated", Modifier.PUBLIC, TypeId.OBJECT); 37 generateHelloMethod(dexMaker, helloWorld); 43 Class<?> helloWorldClass = loader.loadClass("HelloWorld");
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
WriteAbortedExceptionTest.java | 33 throw new WriteAbortedException("HelloWorld", 49 throw new WriteAbortedException("HelloWorld", 54 "HelloWorld; java.io.WriteAbortedException: ByeWorld"));
|
CharArrayWriterTest.java | 67 cw.write("HelloWorld", 5, 5); 69 cw.write("HelloWorld", 0, 5); 90 cw.write("HelloWorld", 0, 10); 95 "HelloWorld", new String(c, 0, 10)); 102 cw.write("HelloWorld", 5, 5); 145 cw.write("HelloWorld", 5, 5); 172 cw.write("HelloWorld", 0, 10); 175 assertEquals("Writer failed to write correct chars", "HelloWorld", sw
|
PipedWriterTest.java | 81 "HelloWorld".getChars(0, 10, buf, 0); 89 assertEquals("Failed to construct writer", "HelloWorld", new String( 99 "HelloWorld".getChars(0, 10, buf, 0); 118 "HelloWorld".getChars(0, 10, buf, 0); 127 assertEquals("Failed to write correct chars", "HelloWorld", new String( 137 "HelloWorld".getChars(0, 10, buf, 0); 144 assertEquals("Failed to flush chars", "HelloWorld", new String( 182 "HelloWorld".getChars(0, 10, buf, 0); 189 assertEquals("Failed to write correct chars", "HelloWorld", new String(
|
PipedOutputStreamTest.java | 142 out.write("HelloWorld".getBytes("UTF-8"), 0, 10); 145 assertEquals("Wrote incorrect bytes", "HelloWorld", reader.read(10)); 155 out.write("HelloWorld".getBytes("UTF-8"), 0, 10); 157 assertEquals("Wrote incorrect bytes", "HelloWorld", reader.read(10));
|
/art/test/HelloWorld/ |
HelloWorld.java | 17 class HelloWorld {
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
AnnotationTest.java | 48 Annotation ant = new Annotation("HelloWorld"); 50 "java.text.Annotation[value=HelloWorld]",ant.toString());
|
ParseExceptionTest.java | 31 df.parse("HelloWorld"); 44 df.parse("1999HelloWorld");
|
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/ |
HelloWorld.java | 28 public class HelloWorld { 33 JSilver jSilver = new JSilver(new ClassResourceLoader(HelloWorld.class));
|
/frameworks/base/tests/RenderScriptTests/HelloWorld/ |
AndroidManifest.xml | 18 package="com.example.android.rs.helloworld"> 22 <activity android:name="HelloWorld"
|
/frameworks/base/tests/RenderScriptTests/HelloWorld/src/com/example/android/rs/helloworld/ |
HelloWorld.java | 17 package com.example.android.rs.helloworld; 23 public class HelloWorld extends Activity {
|
HelloWorldRS.java | 17 package com.example.android.rs.helloworld; 46 mScript = new ScriptC_helloworld(mRS, mRes, R.raw.helloworld);
|
/external/ceres-solver/examples/ |
CMakeLists.txt | 31 ADD_EXECUTABLE(helloworld helloworld.cc) 32 TARGET_LINK_LIBRARIES(helloworld ceres)
|
/docs/source.android.com/src/devices/tech/test_infra/tradefed/ |
full_example.jd | 87 <code>helloworld.xml</code> file anywhere on your local filesystem (eg <code>/tmp/helloworld.xml</code>).</p> 102 <pre><code>tf> run /tmp/helloworld.xml 113 <p>Lets illustrate this now by moving the helloworld.xml into the tradefed core library.</p> 114 <p>Move the <code>helloworld.xml</code> file into 115 <code><tree>/tools/tradefederation/prod-tests/res/config/example/helloworld.xml</code>.</p> 120 example/helloworld: Runs the hello world test 123 <p>You can now run the helloworld config via the following command</p> 124 <pre><code>tf >run example/helloworld 171 allocated to HelloWorld.</p [all...] |
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
GenericSignatureFormatErrorTest.java | 47 * public class HelloWorld<U> { 48 * public HelloWorld(U t) {} 74 // Class clazz = df.loadClass("demo/HelloWorld", this.getClass().getClassLoader()); 79 Class clazz = cl.loadClass("demo/HelloWorld");
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
HelloWorld.java | 39 * <td >src/com.example.android.apis/app/HelloWorld.java</td> 48 public class HelloWorld extends Activity
|
/development/apps/launchperf/src/com/android/launchperf/ |
HelloWorldLaunchPerformance.java | 40 mIntent.setClassName(getTargetContext(), "com.example.android.apis.app.HelloWorld");
|
/development/samples/ApiDemos/res/layout/ |
hello_world.xml | 18 See corresponding Java code com.android.sdk.app.HelloWorld.java. -->
|
/development/samples/Support4Demos/res/layout/ |
hello_world.xml | 18 See corresponding Java code com.android.sdk.app.HelloWorld.java. -->
|