Home
last modified time | relevance | path

Searched refs:System (Results 1 – 25 of 948) sorted by relevance

12345678910>>...38

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DProxySelectorTest.java117 System.setProperty("http.proxyHost", HTTP_PROXY_HOST); in test_selectLjava_net_URI_SelectExact()
118 System.setProperty("http.proxyPort", String.valueOf(HTTP_PROXY_PORT)); in test_selectLjava_net_URI_SelectExact()
120 System.setProperty("https.proxyHost", HTTPS_PROXY_HOST); in test_selectLjava_net_URI_SelectExact()
121 System.setProperty("https.proxyPort", String.valueOf(HTTPS_PROXY_PORT)); in test_selectLjava_net_URI_SelectExact()
123 System.setProperty("ftp.proxyHost", FTP_PROXY_HOST); in test_selectLjava_net_URI_SelectExact()
124 System.setProperty("ftp.proxyPort", String.valueOf(FTP_PROXY_PORT)); in test_selectLjava_net_URI_SelectExact()
126 System.setProperty("socksProxyHost", SOCKS_PROXY_HOST); in test_selectLjava_net_URI_SelectExact()
127 System.setProperty("socksProxyPort", String.valueOf(SOCKS_PROXY_PORT)); in test_selectLjava_net_URI_SelectExact()
158 System.setProperty("http.proxyHost", HTTP_PROXY_HOST); in test_selectLjava_net_URI_SelectExact_NullHost()
159 System.setProperty("http.proxyPort", String.valueOf(HTTP_PROXY_PORT)); in test_selectLjava_net_URI_SelectExact_NullHost()
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DSystemTest.java38 InputStream orgIn = System.in; in test_setInLjava_io_InputStream()
40 System.setIn(in); in test_setInLjava_io_InputStream()
41 assertTrue("in not set", System.in == in); in test_setInLjava_io_InputStream()
42 System.setIn(orgIn); in test_setInLjava_io_InputStream()
49 PrintStream orgOut = System.out; in test_setOutLjava_io_PrintStream()
51 System.setOut(out); in test_setOutLjava_io_PrintStream()
52 assertTrue("out not set", System.out == out); in test_setOutLjava_io_PrintStream()
53 System.setOut(orgOut); in test_setOutLjava_io_PrintStream()
60 PrintStream orgErr = System.err; in test_setErrLjava_io_PrintStream()
62 System.setErr(err); in test_setErrLjava_io_PrintStream()
[all …]
/external/jdiff/src/jdiff/
DAPI.java87 for (int i = 0; i < indent; i++) System.out.print(" "); in dumpPackage()
88 System.out.println("Package Name: " + pkg.name_); in dumpPackage()
95 System.out.print("Package doc block:"); in dumpPackage()
96 System.out.println("\"" + pkg.doc_ + "\""); in dumpPackage()
107 for (int i = 0; i < indent; i++) System.out.print(" "); in dumpClass()
109 System.out.println("Interface name: " + c.name_); in dumpClass()
111 System.out.println("Class Name: " + c.name_); in dumpClass()
113 for (int i = 0; i < indent; i++) System.out.print(" "); in dumpClass()
114 System.out.println("Extends: " + c.extends_); in dumpClass()
117 for (int i = 0; i < indent; i++) System.out.print(" "); in dumpClass()
[all …]
DJDiff.java30 System.out.println("JDiff: doclet started ..."); in start()
42 long startTime = System.currentTimeMillis(); in startGeneration()
63System.out.println("Error: file '" + tempOldFileName + "' does not exist for the old API"); in startGeneration()
78System.out.println("Error: file '" + tempNewFileName + "' does not exist for the new API"); in startGeneration()
84System.out.print("JDiff: reading the old API in from file '" + tempOldFileName + "'..."); in startGeneration()
90System.out.print("JDiff: reading the new API in from file '" + tempNewFileName + "'..."); in startGeneration()
112System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'..."); in startGeneration()
115 System.out.println(" (the comments file will be created)"); in startGeneration()
128System.out.println("JDiff: writing the comments out to file '" + commentsFileName + "'..."); in startGeneration()
132System.out.print("JDiff: finished (took " + (System.currentTimeMillis() - startTime)/1000 + "s"); in startGeneration()
[all …]
DOptions.java153 System.out.println("Command line arguments: "); in validOptions()
158 System.out.print(" " + options[i][j]); in validOptions()
162 System.out.println(); in validOptions()
386 System.out.println("JDiff version: " + JDiff.version); in validOptions()
387 System.exit(0); in validOptions()
391 System.exit(0); in validOptions()
404 System.err.println("JDiff version: " + JDiff.version); in usage()
405 System.err.println(""); in usage()
406 System.err.println("Valid JDiff arguments:"); in usage()
407 System.err.println(""); in usage()
[all …]
/external/webkit/Source/WebCore/manual-tests/resources/
DArrayParameterTestApplet.java31 System.out.println("arrayFunction called"); in arrayFunction()
33 System.out.println(array[i]); in arrayFunction()
37 System.out.println("booleanArray called"); in booleanFunction()
39 System.out.println(array[i]); in booleanFunction()
43 System.out.println("byteArray called"); in byteFunction()
45 System.out.println(array[i]); in byteFunction()
49 System.out.println("charArray called"); in charFunction()
51 System.out.println(array[i]); in charFunction()
55 System.out.println("shortArray called"); in shortFunction()
57 System.out.println(array[i]); in shortFunction()
[all …]
/external/proguard/src/proguard/
DInitializer.java70 … WarningPrinter classReferenceWarningPrinter = new WarningPrinter(System.err, configuration.warn); in execute()
71 … WarningPrinter dependencyWarningPrinter = new WarningPrinter(System.err, configuration.warn); in execute()
91 … WarningPrinter memberReferenceWarningPrinter = new WarningPrinter(System.err, configuration.warn); in execute()
119 …WarningPrinter dynamicClassReferenceNotePrinter = new WarningPrinter(System.out, configuration.not… in execute()
120 …WarningPrinter classForNameNotePrinter = new WarningPrinter(System.out, configuration.not… in execute()
134 WarningPrinter getMemberNotePrinter = new WarningPrinter(System.out, configuration.note); in execute()
157 …WarningPrinter fullyQualifiedClassNameNotePrinter = new WarningPrinter(System.out, configuration.n… in execute()
158 …WarningPrinter descriptorKeepNotePrinter = new WarningPrinter(System.out, configuration.n… in execute()
232 System.out.println("Note: there were " + fullyQualifiedNoteCount + in execute()
234 System.out.println(" You should check your configuration for typos."); in execute()
[all …]
DProGuard.java62 System.out.println(VERSION); in execute()
169System.out.println("Printing configuration to [" + fileName(configuration.printConfiguration) + "]… in printConfiguration()
191 System.out.println("Reading input..."); in readInput()
207 System.out.println("Initializing..."); in initialize()
221 System.out.println("Setting target versions..."); in target()
236 System.out.println("Printing kept classes, fields, and methods..."); in printSeeds()
278 System.out.println("Shrinking..."); in shrink()
283 System.out.println("Explaining why classes and class members are being kept..."); in shrink()
289System.out.println("Printing usage to [" + fileName(configuration.printUsage) + "]..."); in shrink()
306 System.out.println("Inlining subroutines..."); in inlineSubroutines()
[all …]
/external/emma/core/java12/com/vladium/jcd/parser/
DClassDefParser.java107 if (DEBUG) System.out.println (s_line); in class_table()
111 if (DEBUG) System.out.println (s_line); in class_table()
117 if (DEBUG) System.out.println (s_line); in class_table()
120 if (DEBUG) System.out.println (s_line); in class_table()
123 if (DEBUG) System.out.println (s_line); in class_table()
126 if (DEBUG) System.out.println (s_line); in class_table()
129 if (DEBUG) System.out.println (s_line); in class_table()
138 if (DEBUG) System.out.println ("magic: [" + Long.toHexString (magic) + ']'); in magic()
151 System.out.println ("major_version: [" + major_version + ']'); in version()
152 System.out.println ("minor_version: [" + minor_version + ']'); in version()
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DSerializationStressTest1.java372 System.out.println("Obj = " + objToSave); in test_18_1_writeObject()
383 System.out.println("Error when obj = " + objToSave); in test_18_1_writeObject()
399 System.out.println("Obj = " + objToSave); in test_18_2_writeObject()
409 System.out.println("Error when obj = " + objToSave); in test_18_2_writeObject()
426 System.out.println("Obj = " + objToSave); in test_18_3_writeObject()
437 System.out.println("Error when obj = " + objToSave); in test_18_3_writeObject()
454 System.out.println("Obj = " + objToSave); in test_18_4_writeObject()
465 System.out.println("Error when obj = " + objToSave); in test_18_4_writeObject()
482 System.out.println("Obj = " + objToSave); in test_18_5_writeObject()
493 System.out.println("Error when obj = " + objToSave); in test_18_5_writeObject()
[all …]
DSerializationStressTest3.java392 System.out.println("Error " + err + " when testing BLOCKDATALONG"); in test_18_81_writeObject()
408 System.out.println("Obj = " + objToSave); in test_18_82_writeObject()
420 System.out.println("Error when obj = " + objToSave); in test_18_82_writeObject()
437 System.out.println("Obj = " + objToSave); in test_18_83_writeObject()
449 System.out.println("Error when obj = " + objToSave); in test_18_83_writeObject()
466 System.out.println("Obj = " + objToSave); in test_18_84_writeObject()
478 System.out.println("Error when obj = " + objToSave); in test_18_84_writeObject()
495 System.out.println("Obj = " + objToSave); in test_18_85_writeObject()
507 System.out.println("Error when obj = " + objToSave); in test_18_85_writeObject()
524 System.out.println("Obj = " + objToSave); in test_18_86_writeObject()
[all …]
DSerializationStressTest4.java65 System.out.println("Obj = " + objToSave); in test_writeObject_EventObject()
81 System.out.println("Error when obj = " + objToSave); in test_writeObject_EventObject()
97 System.out.println("Obj = " + objToSave); in test_writeObject_Collections_EmptySet()
113 System.out.println("Error when obj = " + objToSave); in test_writeObject_Collections_EmptySet()
130 System.out.println("Obj = " + objToSave); in test_writeObject_Collections_EmptyMap()
146 System.out.println("Error when obj = " + objToSave); in test_writeObject_Collections_EmptyMap()
163 System.out.println("Obj = " + objToSave); in test_writeObject_Character()
175 System.out.println("Error when obj = " + objToSave); in test_writeObject_Character()
192 System.out.println("Obj = " + objToSave); in test_writeObject_Collections_UnmodifiableCollection()
214 System.out.println("Error when obj = " + objToSave); in test_writeObject_Collections_UnmodifiableCollection()
[all …]
DSerializationStressTest2.java819 System.out.println("Obj = " + objToSave); in test_18_41_writeObject()
831 System.out.println("Error when obj = " + objToSave); in test_18_41_writeObject()
848 System.out.println("Obj = " + objToSave); in test_18_42_writeObject()
865 System.out.println("Error when obj = " + objToSave); in test_18_42_writeObject()
883 System.out.println("Obj = " + objToSave); in test_18_43_writeObject()
897 System.out.println("Error when obj = " + objToSave); in test_18_43_writeObject()
916 System.out.println("Obj = " + objToSave); in test_18_44_writeObject()
929 System.out.println("Error when obj = " + objToSave); in test_18_44_writeObject()
946 System.out.println("Obj = " + objToSave); in test_18_45_writeObject()
962 System.out.println("Error when obj = " + objToSave); in test_18_45_writeObject()
[all …]
/external/clang/lib/Frontend/
DInitHeaderSearch.cpp122 if ((Group == System || Group == CXXSystem) && !IgnoreSysRoot && in AddPath()
457 AddPath("/usr/local/include", System, true, false, false); in AddDefaultCIncludePaths()
468 AddPath(P.str(), System, false, false, false, /*IgnoreSysRoot=*/ true); in AddDefaultCIncludePaths()
479 AddPath(*i, System, false, false, false); in AddDefaultCIncludePaths()
488 AddPath(VSDir + "\\VC\\include", System, false, false, false); in AddDefaultCIncludePaths()
490 AddPath(WindowsSDKDir + "\\include", System, false, false, false); in AddDefaultCIncludePaths()
493 System, false, false, false); in AddDefaultCIncludePaths()
497 System, false, false, false); in AddDefaultCIncludePaths()
499 System, false, false, false); in AddDefaultCIncludePaths()
502 System, false, false, false); in AddDefaultCIncludePaths()
[all …]
/external/proguard/src/proguard/gui/
DReTraceRunnable.java73 InputStream oldIn = System.in; in run()
74 PrintStream oldOut = System.out; in run()
75 PrintStream oldErr = System.err; in run()
83 System.setIn(inputStream); in run()
84 System.setOut(printStream); in run()
85 System.setErr(printStream); in run()
100 System.out.println(ex.getMessage()); in run()
111 System.gc(); in run()
114 System.out.println(msg("outOfMemory")); in run()
127 System.setIn(oldIn); in run()
[all …]
DProGuardRunnable.java69 PrintStream oldOut = System.out; in run()
70 PrintStream oldErr = System.err; in run()
75 System.setOut(printStream); in run()
76 System.setErr(printStream); in run()
87 System.out.println("Processing completed successfully"); in run()
94 System.out.println(ex.getMessage()); in run()
105 System.gc(); in run()
108 System.out.println(msg("outOfMemoryInfo", configurationFileName)); in run()
122 System.setOut(oldOut); in run()
123 System.setErr(oldErr); in run()
/external/antlr/src/org/antlr/runtime/debug/
DTraceDebugEventListener.java41 public void enterRule(String ruleName) { System.out.println("enterRule "+ruleName); } in enterRule()
42 public void exitRule(String ruleName) { System.out.println("exitRule "+ruleName); } in exitRule()
43 public void enterSubRule(int decisionNumber) { System.out.println("enterSubRule"); } in enterSubRule()
44 public void exitSubRule(int decisionNumber) { System.out.println("exitSubRule"); } in exitSubRule()
45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);} in location()
53 System.out.println("consumeNode "+ID+" "+text+" "+type); in consumeNode()
60 System.out.println("LT "+i+" "+ID+" "+text+" "+type); in LT()
65 public void nilNode(Object t) {System.out.println("nilNode "+adaptor.getUniqueID(t));} in nilNode()
71 System.out.println("create "+ID+": "+text+", "+type); in createNode()
78 System.out.println("create "+ID+": "+tokenIndex); in createNode()
[all …]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
DORAddressTest.java44 System.out.print(prefix + "0x" + tail + delimiter); in printAsHex()
47 System.out.println(); in printAsHex()
50 System.out.println(); in printAsHex()
58 System.out.println(""); in testORAddress()
59 System.out.println("ORAddress:"); in testORAddress()
61 System.out.println(""); in testORAddress()
64 System.out.println("GeneralName:"); in testORAddress()
66 System.out.println(""); in testORAddress()
70 System.out.println("GeneralNames:"); in testORAddress()
72 System.out.println(""); in testORAddress()
DEDIPartyNameTest.java46 System.out.print(prefix + "0x" + tail + delimiter); in printAsHex()
49 System.out.println(); in printAsHex()
52 System.out.println(); in printAsHex()
75 System.out.println("Got encoded form of EDIPartyName is:"); in _testEDIPartyName1()
77 System.out.println("But should be like this:"); in _testEDIPartyName1()
79 System.out.println(""); in _testEDIPartyName1()
97 System.out.println("Got encoded form of GeneralName is:"); in _testEDIPartyName1()
99 System.out.println("But should be like this:"); in _testEDIPartyName1()
101 System.out.println(""); in _testEDIPartyName1()
121 System.out.println("Got encoded form of GeneralNames is:"); in _testEDIPartyName1()
[all …]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DSSLEngineImplTest.java56 System.out.println(""); in setUp()
57 System.out.println("========================"); in setUp()
58 System.out.println("====== Running the test: " + getName()); in setUp()
59 System.out.println("========================"); in setUp()
71 System.out.println("\n===== Interact over suite: " in testSelfInteraction()
220 System.arraycopy(supported, 0, in testGetEnabledCipherSuites()
269 System.arraycopy(supported, 0, in testSetEnabledCipherSuites()
271 System.arraycopy(supported, i, in testSetEnabledCipherSuites()
329 System.arraycopy(supported, i, in testGetEnabledProtocols()
504 System.out.println("\nError processing test:"); in testCloseInbound2()
[all …]
DSSLSocketFactoriesTest.java51 System.out.println("========================"); in setUp()
52 System.out.println("====== Running the test: " + getName()); in setUp()
53 System.out.println("========================"); in setUp()
93 System.out.println( in testSocketCreation()
102 System.out.println( in testSocketCreation()
110 System.out.println( in testSocketCreation()
118 System.out.println("*** ServerSocketFactory." in testSocketCreation()
132 System.out.println( in testSocketCreation()
142 System.out.println( in testSocketCreation()
151 System.out.println("=== SocketFactory.createSocket(" in testSocketCreation()
[all …]
/external/protobuf/examples/
DListPeople.java13 System.out.println("Person ID: " + person.getId()); in Print()
14 System.out.println(" Name: " + person.getName()); in Print()
16 System.out.println(" E-mail address: " + person.getEmail()); in Print()
22 System.out.print(" Mobile phone #: "); in Print()
25 System.out.print(" Home phone #: "); in Print()
28 System.out.print(" Work phone #: "); in Print()
31 System.out.println(phoneNumber.getNumber()); in Print()
40 System.err.println("Usage: ListPeople ADDRESS_BOOK_FILE"); in main()
41 System.exit(-1); in main()
/external/antlr/src/org/antlr/runtime/
DDFA.java66 System.err.println("Enter DFA.predict for decision "+decisionNumber); in predict()
72 …if ( debug ) System.err.println("DFA "+decisionNumber+" state "+s+" LA(1)="+(char)input.LA(1)+"("+… in predict()
77 System.err.println("DFA "+decisionNumber+ in predict()
82 System.err.println("DFA "+decisionNumber+ in predict()
93 if ( debug ) System.err.println("accept; predict "+accept[s]+" from state "+s); in predict()
106 if ( debug ) System.err.println("EOT transition"); in predict()
124 if ( debug ) System.err.println("EOT transition"); in predict()
130 if ( debug ) System.err.println("accept via EOF; predict "+accept[eof[s]]+" from "+eof[s]); in predict()
135 System.err.println("min["+s+"]="+min[s]); in predict()
136 System.err.println("max["+s+"]="+max[s]); in predict()
[all …]
/external/proguard/src/proguard/optimize/evaluation/
DPartialEvaluator.java184 System.err.println("Unexpected error while performing partial evaluation:"); in visitCodeAttribute()
185 System.err.println(" Class = ["+clazz.getName()+"]"); in visitCodeAttribute()
186System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); in visitCodeAttribute()
187System.err.println(" Exception = ["+ex.getClass().getName()+"] ("+ex.getMessage()+")"); in visitCodeAttribute()
204 System.out.println(); in visitCodeAttribute0()
205System.out.println("Partial evaluation: "+clazz.getName()+"."+method.getName(clazz)+method.getDesc… in visitCodeAttribute0()
206 System.out.println(" Max locals = "+codeAttribute.u2maxLocals); in visitCodeAttribute0()
207 System.out.println(" Max stack = "+codeAttribute.u2maxStack); in visitCodeAttribute0()
231 System.out.println("Evaluation results:"); in visitCodeAttribute0()
238 System.out.println("Branch target from ["+branchOriginValues[offset]+"]:"); in visitCodeAttribute0()
[all …]
/external/valgrind/main/
Ddarwin9.supp13 obj:/System/Library/Frameworks/CoreFoundation*
14 obj:/System/Library/Frameworks/ApplicationServices*
22 obj:/System/Library/Frameworks/CoreFoundation*
23 obj:/System/Library/Frameworks/CoreServices*
31 obj:/System/Library/Frameworks/CoreFoundation*
32 obj:/System/Library/Frameworks/Carbon*
40 obj:/System/Library/Frameworks/CoreFoundation*
41 obj:/System/Library/Frameworks/CoreFoundation*
49 obj:/System/Library/Frameworks/CoreFoundation*
50 obj:/System/Library/Frameworks/AppKit*
[all …]

12345678910>>...38