/external/vogar/src/vogar/ |
D | Vogar.java | 55 return new File(System.getProperty("user.home", "."), name); in dotFile() 59 if (System.console() == null) { in maybeAnsiTerminal() 62 String terminal = System.getenv("TERM"); in maybeAnsiTerminal() 70 String terminal = System.getenv("TERM"); in maybeColorTerminal() 227 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]..."); in printUsage() 228 System.out.println(); in printUsage() 229 System.out.println(" <actions>: .java files, directories, or class names."); in printUsage() 230 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks"); in printUsage() 231 System.out.println(" or executable Java classes."); in printUsage() 232 System.out.println(); in printUsage() [all …]
|
/external/skia/experimental/xps_to_png/ |
D | xps_to_png.cs | 22 static int ceil(double x) { return (int)System.Math.Ceiling(x); } in ceil() 25 System.Windows.Xps.Packaging.XpsDocument xpsDoc = in convert() 26 new System.Windows.Xps.Packaging.XpsDocument( in convert() 27 path, System.IO.FileAccess.Read); in convert() 29 throw new System.Exception("XpsDocumentfailed"); in convert() 31 System.Windows.Documents.FixedDocumentSequence docSeq = in convert() 34 throw new System.Exception("GetFixedDocumentSequence failed"); in convert() 36 System.Windows.Documents.DocumentReferenceCollection drc = docSeq.References; in convert() 38 foreach (System.Windows.Documents.DocumentReference dr in drc) { in convert() 39 System.Windows.Documents.FixedDocument dp = dr.GetDocument(false); in convert() [all …]
|
/external/skqp/experimental/xps_to_png/ |
D | xps_to_png.cs | 22 static int ceil(double x) { return (int)System.Math.Ceiling(x); } in ceil() 25 System.Windows.Xps.Packaging.XpsDocument xpsDoc = in convert() 26 new System.Windows.Xps.Packaging.XpsDocument( in convert() 27 path, System.IO.FileAccess.Read); in convert() 29 throw new System.Exception("XpsDocumentfailed"); in convert() 31 System.Windows.Documents.FixedDocumentSequence docSeq = in convert() 34 throw new System.Exception("GetFixedDocumentSequence failed"); in convert() 36 System.Windows.Documents.DocumentReferenceCollection drc = docSeq.References; in convert() 38 foreach (System.Windows.Documents.DocumentReference dr in drc) { in convert() 39 System.Windows.Documents.FixedDocument dp = dr.GetDocument(false); in convert() [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 …]
|
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/ |
D | DotPrinterTest.java | 36 String expectedOutput = "digraph {" + System.lineSeparator(); in testWithType() 37 expectedOutput += "n0 [label=\"root (MethodCallExpr)\"];" + System.lineSeparator(); in testWithType() 38 expectedOutput += "n1 [label=\"name (SimpleName)\"];" + System.lineSeparator(); in testWithType() 39 expectedOutput += "n0 -> n1;" + System.lineSeparator(); in testWithType() 40 expectedOutput += "n2 [label=\"identifier='x'\"];" + System.lineSeparator(); in testWithType() 41 expectedOutput += "n1 -> n2;" + System.lineSeparator(); in testWithType() 42 expectedOutput += "n3 [label=\"arguments\"];" + System.lineSeparator(); in testWithType() 43 expectedOutput += "n0 -> n3;" + System.lineSeparator(); in testWithType() 44 expectedOutput += "n4 [label=\"argument (IntegerLiteralExpr)\"];" + System.lineSeparator(); in testWithType() 45 expectedOutput += "n3 -> n4;" + System.lineSeparator(); in testWithType() [all …]
|
/external/icu/android_icu4j/src/samples/java/android/icu/samples/text/datetimepatterngenerator/ |
D | DateTimePatternGeneratorSample.java | 33 … System.out.println("========================================================================"); in getBestPatternExample() 34 System.out.println(" getBestPatternExample()"); in getBestPatternExample() 35 System.out.println(); in getBestPatternExample() 36 System.out.println(" Use DateTimePatternGenerator to create customized date/time pattern:"); in getBestPatternExample() 37 System.out.println(" yQQQQ,yMMMM, MMMMd, hhmm, jjmm per locale"); in getBestPatternExample() 38 … System.out.println("========================================================================"); in getBestPatternExample() 54 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN"); in getBestPatternExample() 56 System.out.printf("%-20s", skeleton); in getBestPatternExample() 65 System.out.printf("%-35s",sdf.format(date)); in getBestPatternExample() 67 System.out.println("\n"); in getBestPatternExample() [all …]
|
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/datetimepatterngenerator/ |
D | DateTimePatternGeneratorSample.java | 32 … System.out.println("========================================================================"); in getBestPatternExample() 33 System.out.println(" getBestPatternExample()"); in getBestPatternExample() 34 System.out.println(); in getBestPatternExample() 35 System.out.println(" Use DateTimePatternGenerator to create customized date/time pattern:"); in getBestPatternExample() 36 System.out.println(" yQQQQ,yMMMM, MMMMd, hhmm, jjmm per locale"); in getBestPatternExample() 37 … System.out.println("========================================================================"); in getBestPatternExample() 53 System.out.printf("%-20s%-35s%-35s%-35s\n\n", "Skeleton", "en_US", "fr_FR","zh_CN"); in getBestPatternExample() 55 System.out.printf("%-20s", skeleton); in getBestPatternExample() 64 System.out.printf("%-35s",sdf.format(date)); in getBestPatternExample() 66 System.out.println("\n"); in getBestPatternExample() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in WrappersReflection() 63 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 66 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 71 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 76 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 83 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 89 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 100 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 108 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/capstone/bindings/java/ |
D | TestX86.java | 47 System.out.printf("0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr); in print_ins_detail() 51 System.out.printf("\tPrefix: %s\n", array2hex(operands.prefix)); in print_ins_detail() 53 System.out.printf("\tOpcode: %s\n", array2hex(operands.opcode)); in print_ins_detail() 56 System.out.printf("\trex: 0x%x\n", operands.rex); in print_ins_detail() 59 System.out.printf("\taddr_size: %d\n", operands.addrSize); in print_ins_detail() 62 System.out.printf("\tmodrm: 0x%x\n", operands.modrm); in print_ins_detail() 66 System.out.printf("\tmodrm offset: 0x%x\n", operands.encoding.modrmOffset); in print_ins_detail() 70 System.out.printf("\tdisp: 0x%x\n", operands.disp); in print_ins_detail() 74 System.out.printf("\tdisp offset: 0x%x\n", operands.encoding.dispOffset); in print_ins_detail() 79 System.out.printf("\tdisp size: 0x%x\n", operands.encoding.dispSize); in print_ins_detail() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.Examples/ |
D | Math.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in MathReflection() 53 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 56 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 61 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 66 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 73 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 80 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 88 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 99 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/ |
D | UnittestCustomOptionsProto3.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in UnittestCustomOptionsProto3Reflection() 263 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 266 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 271 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 276 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 283 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 295 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 303 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 313 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
D | UnittestIssues.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in UnittestIssuesReflection() 94 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 97 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 102 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 107 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 114 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 119 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 124 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 129 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/tcpdump/tests/ |
D | lacp-ev.out | 3 System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 6 System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 13 System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 16 System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 23 System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 26 System 00:0e:83:16:f5:00, System Priority 32768, Key 13, Port 25, Port Priority 32768 33 System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 36 System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 43 System 00:13:c4:12:0f:00, System Priority 32768, Key 13, Port 22, Port Priority 32768 46 System 00:00:00:00:00:00, System Priority 0, Key 0, Port 0, Port Priority 0 [all …]
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | Messages.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in MessagesReflection() 100 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 103 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 108 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 113 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 120 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 126 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 137 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 145 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
D | Payloads.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in PayloadsReflection() 52 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 55 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 60 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 65 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 72 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 79 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 87 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 98 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuide.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in RouteGuideReflection() 66 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 69 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 74 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 79 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 86 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 93 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 101 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 112 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/apache-commons-bcel/src/examples/ |
D | ClassDumper.java | 119 System.out.println("Java Class Dump"); in processID() 120 System.out.println(" file: " + file_name); in processID() 121 System.out.printf("%nClass header:%n"); in processID() 122 System.out.printf(" magic: %X%n", magic); in processID() 132 System.out.printf(" minor version: %s%n", minor); in processVersion() 135 System.out.printf(" major version: %s%n", major); in processVersion() 150 System.out.printf("%nConstant pool(%d):%n", constant_pool_count - 1); in processConstantPool() 156 System.out.printf(" #%1d = ", i); in processConstantPool() 158 System.out.printf(" #%2d = ", i); in processConstantPool() 160 System.out.printf(" #%d = ", i); in processConstantPool() [all …]
|
/external/brotli/csharp/org/brotli/dec/ |
D | BrotliInputStream.cs | 13 public class BrotliInputStream : System.IO.Stream 42 public BrotliInputStream(System.IO.Stream source) in BrotliInputStream() 63 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize) in BrotliInputStream() 89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() 93 throw new System.ArgumentException("Bad buffer size:" + byteReadBufferSize); in BrotliInputStream() 97 throw new System.ArgumentException("source is null"); in BrotliInputStream() 108 throw new System.IO.IOException("Brotli decoder initialization failed", ex); in BrotliInputStream() 145 throw new System.ArgumentException("Bad offset: " + destOffset); in Read() 149 throw new System.ArgumentException("Bad length: " + destLen); in Read() 153 …throw new System.ArgumentException("Buffer overflow: " + (destOffset + destLen) + " > " + destBuff… in Read() [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 …]
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/ |
D | Helloworld.cs | 9 using scg = global::System.Collections.Generic; 23 byte[] descriptorData = global::System.Convert.FromBase64String( in HelloworldReflection() 47 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 50 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 55 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 60 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 67 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 72 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 80 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 88 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/CoreStats/ |
D | Stats.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in StatsReflection() 49 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 52 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 57 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 62 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 69 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 76 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 84 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 95 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 11 using scg = global::System.Collections.Generic; 25 byte[] descriptorData = global::System.Convert.FromBase64String( in DescriptorReflection() 199 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 202 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 207 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 212 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 219 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 225 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 235 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] 240 [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [all …]
|
/external/antlr/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/llvm-project/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/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 …]
|