HomeSort by relevance Sort by last modified time
    Searched refs:System (Results 326 - 350 of 1931) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/
AssemblyInfo.cs 35 using System.Reflection;
36 using System.Runtime.CompilerServices;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedNotSetException.cs 35 using Exception = System.Exception;
36 using SerializationInfo = System.Runtime.Serialization.SerializationInfo;
37 using StreamingContext = System.Runtime.Serialization.StreamingContext;
39 [System.Serializable]
MismatchedTokenException.cs 35 using System.Collections.Generic;
36 using System.Collections.ObjectModel;
37 using ArgumentNullException = System.ArgumentNullException;
38 using Exception = System.Exception;
39 using SerializationInfo = System.Runtime.Serialization.SerializationInfo;
40 using StreamingContext = System.Runtime.Serialization.StreamingContext;
43 [System.Serializable]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver2.java 32 * System.out.println("Driver2 classloader: " +
33 * theDriver.getClass().getClassLoader() ); System.out.println("Driver2
39 System.out.println("Failed to register driver!");
TestHelper_Driver5.java 34 System.out.println("Failed to register driver!");
  /external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
KeyManagerFactoryImplTest.java 43 String def_keystore = System.getProperty("javax.net.ssl.keyStore");
45 System.setProperty("javax.net.ssl.keyStore", "abc");
51 System.clearProperty("javax.net.ssl.keyStore");
53 System.setProperty("javax.net.ssl.keyStore", def_keystore);
TrustManagerFactoryImplTest.java 43 String def_keystore = System.getProperty("javax.net.ssl.trustStore");
44 System.setProperty("javax.net.ssl.trustStore", "abc");
51 System.clearProperty("javax.net.ssl.trustStore");
53 System.setProperty("javax.net.ssl.trustStore", def_keystore);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
  /external/chromium_org/testing/android/junit/java/src/org/chromium/testing/local/
GtestListener.java 35 mRunStartTimeMillis = System.currentTimeMillis();
45 long elapsedTimeMillis = System.currentTimeMillis() - mRunStartTimeMillis;
55 mTestStartTimeMillis = System.currentTimeMillis();
62 long testElapsedTimeMillis = System.currentTimeMillis() - mTestStartTimeMillis;
JunitTestMain.java 36 String[] jarPaths = COLON.split(System.getProperty("java.class.path"));
56 System.err.println("Error while reading classes from " + jp);
66 System.err.println("Class not found: " + className);
68 System.err.println("Class definition not found: " + className);
70 System.err.println("Other exception while reading class: " + className);
79 GtestLogger logger = new GtestLogger(System.out);
92 System.exit(core.run(testRequest).wasSuccessful() ? 0 : 1);
  /external/chromium_org/tools/stats_viewer/
program.cs 5 using System;
6 using System.Windows.Forms;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 86 { System.err.println(Messages.getString("RSSFeedCommon.FeedURLError")); } //$NON-NLS-1$
99 System.out.println((i==0 && missingActions==2 ? Messages.getString("RSSFeedWatcherTask.WarningNoScriptAction") : Messages.getString("RSSFeedWatcherTask.WarningNoCommandlineParams")) + SP + feedWatchActions ); //$NON-NLS-1$ //$NON-NLS-2$
112 System.out.println(Messages.getString("RSSFeedWatcherTask.PleaseRunThisTaskLater") + SP + file); //$NON-NLS-1$
113 System.out.println(Messages.getString("RSSFeedWatcherTask.ToTheLatestVersion") + SP + feedURL); //$NON-NLS-1$
116 System.err.println(Messages.getString("RSSFeedWatcherTask.ErrorNoWatchActions")); //$NON-NLS-1$
125 System.err.println(Messages.getString("RSSFeedWatcherTask.ErrorDestinationFileIsADirectory")); //$NON-NLS-1$
131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
160 System.out.println(Messages.getString("RSSFeedWatcherTask.GotOldNodeContents") + CL + SP + oldContent); //$NON-NLS-1$
161 System.out.println(Messages.getString("RSSFeedWatcherTask.GotNewNodeContents") + CL + SP + newContent); //$NON-NLS-1$
184 System.out.println(Messages.getString("RSSFeedWatcherTask.RunExecTask") + CL + SP + action + SP + command (…)
    [all...]
  /external/emma/core/java13/com/vladium/util/exit/
ExitHookManager.java 76 System.out.println ("exception caught while adding a shutdown hook:");
77 e.printStackTrace (System.out);
101 System.out.println ("exception caught while removing a shutdown hook:");
102 e.printStackTrace (System.out);
  /external/guava/guava/src/com/google/common/base/
Platform.java 35 /** Calls {@link System#nanoTime()}. */
37 return System.nanoTime();
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Platform.java 45 // System.nanoTime() is not available in GWT, so we get milliseconds
47 return TimeUnit.MILLISECONDS.toNanos(System.currentTimeMillis());
  /external/javassist/sample/vector/
Test.j 30 System.out.println(iv.at(i));
36 System.out.println(sv.at(i));
  /external/lzma/CS/7zip/Compress/LZ/
IMatchFinder.cs 3 using System;
9 void SetStream(System.IO.Stream inStream);
  /external/nanohttpd/samples/src/main/java/fi/iki/elonen/
TempFilesServer.java 31 tmpdir = System.getProperty("java.io.tmpdir");
39 System.out.println("Created tempFile: " + tempFile.getName());
46 System.out.println("Cleaning up:");
50 System.out.println(" "+file.getName());
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
DebugWebSocket.java 24 System.out.println("P " + pongFrame);
41 System.out.println("C [" + (initiatedByRemote ? "Remote" : "Self") + "] " +
55 System.out.println("R " + frame);
63 System.out.println("S " + frame);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
ExternalHttp2Example.java 39 System.out.println("VERIFYING " + s);
45 System.out.println(responseCode);
49 System.out.println("PROTOCOL " + protocolValues.get(0));
56 System.out.println(line);
ExternalSpdyExample.java 39 System.out.println("VERIFYING " + s);
45 System.out.println(responseCode);
49 System.out.println("PROTOCOL " + protocolValues.get(0));
56 System.out.println(line);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
VerboseTestRunner.java 46 out = System.out;
76 System.exit(FAILURE_EXIT);
78 System.exit(SUCCESS_EXIT);
81 System.exit(EXCEPTION_EXIT);
Benchmark.java 82 t0 = System.nanoTime();
86 t1 = System.nanoTime();
91 t2 = System.nanoTime();
95 t3 = System.nanoTime();
100 t4 = System.nanoTime();
104 t5 = System.nanoTime();
113 System.err.println(String.format(
117 System.err.println(String.format(
121 System.err.println(String.format(
129 return System.identityHashCode(node) >> 24
    [all...]
  /art/test/115-native-bridge/src/
NativeBridgeMain.java 18 import java.lang.System;
101 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
116 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
147 System.out.println("Run " + i + " with " + (int)returns[i] + " vs " + (int)result);
154 String osArch = System.getProperty("os.arch");
174 System.out.println("Ready for native bridge tests.");
176 System.loadLibrary("arttest");
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 75 System.exit(2);
78 System.err.println("Failed: " + ioe);
80 System.exit(1);
83 System.exit(1);
126 System.err.println("Unable to open '" + fileName + "': " +
141 System.err.println("Unable to find '" + CLASSES_DEX +
154 //System.out.println("+++ using temp " + tempFile);
197 System.err.println("Unknown format '" + mOutputFormat +"'");
200 //System.out.println("+++ using format " + mOutputFormat);
204 System.err.println("Unknown option '" + arg + "'")
    [all...]

Completed in 520 milliseconds

<<11121314151617181920>>