/external/vogar/src/vogar/ |
D | Vogar.java | 44 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() 203 … System.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/ |
D | Test.java | 77 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/ |
D | Initializer.java | 65 …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 …]
|
D | ProGuard.java | 63 System.out.println(VERSION); in execute() 181 …System.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() 281 … System.out.println("Printing usage to [" + fileName(configuration.printUsage) + "]..."); in shrink() 298 System.out.println("Inlining subroutines..."); in inlineSubroutines() [all …]
|
D | ConfigurationChecker.java | 96 String os = System.getProperty("os.name").toLowerCase(); in check() 113 …System.out.println("Note: you're writing the processed class files to a directory [" + entry.getNa… in check() 114 …System.out.println(" This will likely cause problems with obfuscated mixed-case class names."… in check() 115 … System.out.println(" You should consider writing the output to a jar file, or otherwise"); in check() 116 System.out.println(" specify '-dontusemixedcaseclassnames'."); in check() 129 …System.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/ |
D | API.java | 87 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 …]
|
D | JDiff.java | 30 System.out.println("JDiff: doclet started ..."); in start() 42 long startTime = System.currentTimeMillis(); in startGeneration() 63 … System.out.println("Error: file '" + tempOldFileName + "' does not exist for the old API"); in startGeneration() 78 … System.out.println("Error: file '" + tempNewFileName + "' does not exist for the new API"); in startGeneration() 84 … System.out.print("JDiff: reading the old API in from file '" + tempOldFileName + "'..."); in startGeneration() 90 … System.out.print("JDiff: reading the new API in from file '" + tempNewFileName + "'..."); in startGeneration() 112 … System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'..."); in startGeneration() 115 System.out.println(" (the comments file will be created)"); in startGeneration() 128 … System.out.println("JDiff: writing the comments out to file '" + commentsFileName + "'..."); in startGeneration() 132 … System.out.print("JDiff: finished (took " + (System.currentTimeMillis() - startTime)/1000 + "s"); in startGeneration() [all …]
|
D | Options.java | 153 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/ |
D | Resources.Designer.cs | 12 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/ |
D | Messages.Designer.cs | 12 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/ |
D | Main.java | 149 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(); 185 … System.out.println("${symbol_escape}n AST Walked in " + (stop - pStart) + "ms."); [all …]
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | SettingsTest.java | 30 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/ |
D | Resources.cs | 13 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 46 …System.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/ |
D | SSAOUI.java | 55 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 …]
|
D | LightScatteringUI.java | 52 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() 87 … System.out.println("lightScatteringFilter.setNbSamples("+filter.getNbSamples()+");"); in LightScatteringUI() 88 … System.out.println("lightScatteringFilter.setBlurStart("+filter.getBlurStart()+"f);"); in LightScatteringUI() [all …]
|
D | BloomUI.java | 48 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/ |
D | ClassDefParser.java | 107 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/ |
D | TestEnvironment.java | 62 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/ |
D | TestTempVars.java | 48 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/ |
D | Stats.cs | 34 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/ |
D | TestSerialization.java | 119 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/ |
D | Arrays.java | 486 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/ |
D | Debug.java | 30 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/ |
D | ReTraceRunnable.java | 73 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/ |
D | TestBNF.java | 80 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 …]
|