Home
last modified time | relevance | path

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

12345678910>>...105

/external/vogar/src/vogar/
DVogar.java44 return new File(System.getProperty("user.home", "."), name); in dotFile()
105 boolean ansi = !"dumb".equals(System.getenv("TERM"));
197 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]..."); in printUsage()
198 System.out.println(); in printUsage()
199 System.out.println(" <actions>: .java files, directories, or class names."); in printUsage()
200 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks"); in printUsage()
201 System.out.println(" or executable Java classes."); in printUsage()
202 System.out.println(); in printUsage()
203System.out.println(" When passing in a JUnit test class, it may have \"#method_name\""); in printUsage()
204 System.out.println(" appended to it, to specify a single test method."); in printUsage()
[all …]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DTest.java77 System.out.println(j.toString()); in main()
81 System.out.println(j.toString(4)); in main()
82 System.out.println(XML.toString(j)); in main()
86 System.out.println(j.toString(4)); in main()
87 System.out.println(); in main()
90 System.out.println(j.toString()); in main()
91 System.out.println(JSONML.toString(j)); in main()
92 System.out.println(); in main()
95 System.out.println(a.toString(4)); in main()
96 System.out.println(JSONML.toString(a)); in main()
[all …]
/external/proguard/src/proguard/
DInitializer.java65 …WarningPrinter fullyQualifiedClassNameNotePrinter = new WarningPrinter(System.out, configuration.n… in execute()
79 … WarningPrinter getAnnotationNotePrinter = new WarningPrinter(System.out, configuration.note); in execute()
88 WarningPrinter getSignatureNotePrinter = new WarningPrinter(System.out, configuration.note); in execute()
97 … WarningPrinter getEnclosingClassNotePrinter = new WarningPrinter(System.out, configuration.note); in execute()
106 … WarningPrinter getEnclosingMethodNotePrinter = new WarningPrinter(System.out, configuration.note); in execute()
122 … WarningPrinter classReferenceWarningPrinter = new WarningPrinter(System.err, configuration.warn); in execute()
123 … WarningPrinter dependencyWarningPrinter = new WarningPrinter(System.err, configuration.warn); in execute()
143 …WarningPrinter programMemberReferenceWarningPrinter = new WarningPrinter(System.err, configuration… in execute()
144 …WarningPrinter libraryMemberReferenceWarningPrinter = new WarningPrinter(System.err, configuration… in execute()
179 …WarningPrinter dynamicClassReferenceNotePrinter = new WarningPrinter(System.out, configuration.not… in execute()
[all …]
DProGuard.java63 System.out.println(VERSION); in execute()
181System.out.println("Printing configuration to [" + fileName(configuration.printConfiguration) + "]… in printConfiguration()
203 System.out.println("Reading input..."); in readInput()
219 System.out.println("Initializing..."); in initialize()
233 System.out.println("Setting target versions..."); in target()
248 System.out.println("Printing kept classes, fields, and methods..."); in printSeeds()
270 System.out.println("Shrinking..."); in shrink()
275 System.out.println("Explaining why classes and class members are being kept..."); in shrink()
281System.out.println("Printing usage to [" + fileName(configuration.printUsage) + "]..."); in shrink()
298 System.out.println("Inlining subroutines..."); in inlineSubroutines()
[all …]
DConfigurationChecker.java96 String os = System.getProperty("os.name").toLowerCase(); in check()
113System.out.println("Note: you're writing the processed class files to a directory [" + entry.getNa… in check()
114System.out.println(" This will likely cause problems with obfuscated mixed-case class names."… in check()
115System.out.println(" You should consider writing the output to a jar file, or otherwise"); in check()
116 System.out.println(" specify '-dontusemixedcaseclassnames'."); in check()
129System.out.println("Note: you're specifying '-adaptresourcefilecontents' for all resource files."); in check()
130 System.out.println(" This will most likely cause problems with binary files."); in check()
134 … WarningPrinter keepClassMemberNotePrinter = new WarningPrinter(System.out, configuration.note); in check()
139 …WarningPrinter assumeNoSideEffectsNotePrinter = new WarningPrinter(System.out, configuration.note); in check()
147 System.out.println("Note: there were " + keepClassMemberNoteCount + in check()
[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/clang/tools/clang-format-vs/ClangFormat/
DResources.Designer.cs12 using System;
22 …[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResou…
23 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
27 private static global::System.Resources.ResourceManager resourceMan;
29 private static global::System.Globalization.CultureInfo resourceCulture;
31 …[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811…
38 …[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsa…
39 internal static global::System.Resources.ResourceManager ResourceManager {
42 …global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LLVM…
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/
DMessages.Designer.cs12 using System;
22 …[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResou…
23 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
27 private static global::System.Resources.ResourceManager resourceMan;
29 private static global::System.Globalization.CultureInfo resourceCulture;
31 …[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811…
38 …[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsa…
39 internal static global::System.Resources.ResourceManager ResourceManager {
42 …global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Antl…
[all …]
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
DMain.java149 long lexerStop = System.currentTimeMillis();
150 System.out.println(" lexed in " + (lexerStop - start) + "ms.");
154 System.out.println(" Parser Start");
155 long pStart = System.currentTimeMillis();
157 long stop = System.currentTimeMillis();
158 System.out.println(" Parsed in " + (stop - pStart) + "ms.");
181 System.out.println(" AST Walk Start${symbol_escape}n");
182 pStart = System.currentTimeMillis();
184 stop = System.currentTimeMillis();
185System.out.println("${symbol_escape}n AST Walked in " + (stop - pStart) + "ms.");
[all …]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DSettingsTest.java30 Settings.System.putInt(contentResolver, "property", 1); in whileApplicationStaysSame_shouldRememberOldSettings()
31 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(1)); in whileApplicationStaysSame_shouldRememberOldSettings()
35 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(1)); in whileApplicationStaysSame_shouldRememberOldSettings()
40 Settings.System.putInt(contentResolver, "property", 1); in whenApplicationChanges_shouldStartWithNewSettings()
41 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(1)); in whenApplicationChanges_shouldStartWithNewSettings()
46 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(0)); in whenApplicationChanges_shouldStartWithNewSettings()
51 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(0)); in testSystemGetInt()
52 assertThat(Settings.System.getInt(contentResolver, "property", 2), equalTo(2)); in testSystemGetInt()
54 Settings.System.putInt(contentResolver, "property", 1); in testSystemGetInt()
55 assertThat(Settings.System.getInt(contentResolver, "property", 0), equalTo(1)); in testSystemGetInt()
[all …]
/external/lzma/CS/7zip/Compress/LzmaAlone/Properties/
DResources.cs13 using System;
14 using System.IO;
15 using System.Resources;
27 private static System.Resources.ResourceManager _resMgr;
29 private static System.Globalization.CultureInfo _resCulture;
39 …[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advance…
40 public static System.Resources.ResourceManager ResourceManager
46System.Resources.ResourceManager temp = new System.Resources.ResourceManager("Resources", typeof(R…
57 …[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advance…
58 public static System.Globalization.CultureInfo Culture
/external/jmonkeyengine/engine/src/test/jme3test/post/
DSSAOUI.java55 System.out.println("----------------- Water UI Debugger --------------------"); in init()
56 System.out.println("-- Sample Radius : press Y to increase, H to decrease"); in init()
57 System.out.println("-- AO Intensity : press U to increase, J to decrease"); in init()
58 System.out.println("-- AO scale : press I to increase, K to decrease"); in init()
59 System.out.println("-- AO bias : press O to increase, P to decrease"); in init()
60 System.out.println("-- Toggle AO on/off : press space bar"); in init()
61 System.out.println("-- Use only AO : press Num pad 0"); in init()
62 System.out.println("-- Output config declaration : press P"); in init()
63 System.out.println("-------------------------------------------------------"); in init()
84 System.out.println("use AO : " + filter.isEnabled()); in init()
[all …]
DLightScatteringUI.java52 System.out.println("----------------- LightScattering UI Debugger --------------------"); in LightScatteringUI()
53 System.out.println("-- Sample number : press Y to increase, H to decrease"); in LightScatteringUI()
54 System.out.println("-- blur start : press U to increase, J to decrease"); in LightScatteringUI()
55 System.out.println("-- blur width : press I to increase, K to decrease"); in LightScatteringUI()
56 System.out.println("-- Light density : press O to increase, P to decrease"); in LightScatteringUI()
60 System.out.println("-------------------------------------------------------"); in LightScatteringUI()
80 System.out.println("Nb Samples : "+filter.getNbSamples()); in LightScatteringUI()
84 System.out.println("Nb Samples : "+filter.getNbSamples()); in LightScatteringUI()
87System.out.println("lightScatteringFilter.setNbSamples("+filter.getNbSamples()+");"); in LightScatteringUI()
88System.out.println("lightScatteringFilter.setBlurStart("+filter.getBlurStart()+"f);"); in LightScatteringUI()
[all …]
DBloomUI.java48 System.out.println("----------------- Bloom UI Debugger --------------------"); in BloomUI()
49 System.out.println("-- blur Scale : press Y to increase, H to decrease"); in BloomUI()
50 System.out.println("-- exposure Power : press U to increase, J to decrease"); in BloomUI()
51 System.out.println("-- exposure CutOff : press I to increase, K to decrease"); in BloomUI()
52 System.out.println("-- bloom Intensity : press O to increase, P to decrease"); in BloomUI()
53 System.out.println("-------------------------------------------------------"); in BloomUI()
70 System.out.println("blurScale : " + filter.getBlurScale()); in BloomUI()
74 System.out.println("blurScale : " + filter.getBlurScale()); in BloomUI()
78 System.out.println("exposurePower : " + filter.getExposurePower()); in BloomUI()
82 System.out.println("exposurePower : " + filter.getExposurePower()); in BloomUI()
[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/vogar/src/vogar/target/
DTestEnvironment.java62 private static final String JAVA_RUNTIME_VERSION = System.getProperty("java.runtime.version");
63 private static final String JAVA_VM_INFO = System.getProperty("java.vm.info");
64 private static final String JAVA_VM_VERSION = System.getProperty("java.vm.version");
65 private static final String JAVA_VM_VENDOR = System.getProperty("java.vm.vendor");
66 private static final String JAVA_VM_NAME = System.getProperty("java.vm.name");
71 this.tmpDir = System.getProperty("java.io.tmpdir"); in TestEnvironment()
75 System.setProperties(null); // Reset. in TestEnvironment()
79 System.setProperty("java.io.tmpdir", tmpDir); in TestEnvironment()
81 String userHome = System.getProperty("user.home"); in TestEnvironment()
82 String userDir = System.getProperty("user.dir"); in TestEnvironment()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/app/
DTestTempVars.java48 System.gc(); in main()
61 nanos = System.nanoTime(); in main()
65 milliseconds = (System.nanoTime() - nanos) / NANOS_TO_MS; in main()
66 System.out.println("100 million TempVars calls: " + milliseconds + " ms"); in main()
67 System.out.println(sumCompute); in main()
70 nanos = System.nanoTime(); in main()
74 milliseconds = (System.nanoTime() - nanos) / NANOS_TO_MS; in main()
75 System.out.println("100 million allocation calls: " + milliseconds + " ms"); in main()
76 System.out.println(sumCompute); in main()
78 nanos = System.nanoTime(); in main()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
DStats.cs34 using System.Collections.Generic;
37 using Math = System.Math;
93 [System.Obsolete]
98 [System.Obsolete]
103 [System.Obsolete]
108 [System.Obsolete]
117 System.IO.Directory.CreateDirectory(System.IO.Path.GetDirectoryName(absoluteFilename)); in WriteReport()
118 System.IO.File.AppendAllText(absoluteFilename, data); in WriteReport()
122 …string personalFolder = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal… in GetAbsoluteFileName()
123 return personalFolder + System.IO.Path.DirectorySeparatorChar + in GetAbsoluteFileName()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/network/
DTestSerialization.java119 date = new Date(System.currentTimeMillis()); in TestSerializationMessage()
126 System.out.println(cm.z); in messageReceived()
127 System.out.println(cm.b); in messageReceived()
128 System.out.println(cm.c); in messageReceived()
129 System.out.println(cm.s); in messageReceived()
130 System.out.println(cm.i); in messageReceived()
131 System.out.println(cm.f); in messageReceived()
132 System.out.println(cm.l); in messageReceived()
133 System.out.println(cm.d); in messageReceived()
134 System.out.println(Arrays.toString(cm.ia)); in messageReceived()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DArrays.java486 System.arraycopy(data, 0, copy, 0, data.length); in clone()
501 System.arraycopy(data, 0, existing, 0, existing.length); in clone()
547 System.arraycopy(data, 0, copy, 0, data.length); in clone()
560 System.arraycopy(data, 0, copy, 0, data.length); in clone()
575 System.arraycopy(data, 0, existing, 0, existing.length); in clone()
587 System.arraycopy(data, 0, copy, 0, data.length); in clone()
600 System.arraycopy(data, 0, copy, 0, data.length); in clone()
611 System.arraycopy(data, 0, tmp, 0, newLength); in copyOf()
615 System.arraycopy(data, 0, tmp, 0, data.length); in copyOf()
627 System.arraycopy(data, 0, tmp, 0, newLength); in copyOf()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
DDebug.java30 System.out.printf("%3d, ", output[i]); in print8x8()
33 System.out.println(); in print8x8()
41 System.out.printf("%3d, ", output[i]); in print8x8()
44 System.out.println(); in print8x8()
51 System.out.printf("%3d, ", output.get()); in print8x8()
53 System.out.println(); in print8x8()
61 System.out.printf("%3d, ", table[i]); in print()
64 System.out.println(); in print()
76 System.out.print(i); in print()
81 System.out.print(string); in print()
[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 …]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
DTestBNF.java80 System.out.println("===================================="); in testBNF()
81 System.out.println("BNF"); in testBNF()
82 System.out.println(rules); in testBNF()
83 System.out.println(bnf.getInternal()); in testBNF()
85 System.out.println(i + ": " + bnf.next()); in testBNF()
116 System.out.println("Match: " + value + ", " + pp); in testMatch()
141 System.out.println("Printing Counts"); in show()
144 System.out.println(i + ": " + counts[i]); in show()
146 System.out.println(); in show()
219 System.out.println("Start"); in printRandoms()
[all …]

12345678910>>...105