/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/ |
H A D | SPARCInstruction.java | 41 protected static String spaces = "\t"; field in class:SPARCInstruction
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psGenerationCounters.cpp | 32 int ordinal, int spaces, 49 cname = PerfDataManager::counter_name(_name_space, "spaces"); 51 spaces, CHECK); 31 PSGenerationCounters(const char* name, int ordinal, int spaces, PSVirtualSpace* v) argument
|
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | generationCounters.cpp | 29 void GenerationCounters::initialize(const char* name, int ordinal, int spaces, argument 44 cname = PerfDataManager::counter_name(_name_space, "spaces"); 46 spaces, CHECK); 64 int ordinal, int spaces, 68 initialize(name, ordinal, spaces, 73 int ordinal, int spaces, 77 initialize(name, ordinal, spaces, min_capacity, max_capacity, curr_capacity); 63 GenerationCounters(const char* name, int ordinal, int spaces, VirtualSpace* v) argument 72 GenerationCounters(const char* name, int ordinal, int spaces, size_t min_capacity, size_t max_capacity, size_t curr_capacity) argument
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/ |
H A D | QPDecoderStream.java | 47 protected int spaces = 0; field in class:QPDecoderStream 71 if (spaces > 0) { 73 spaces--; 82 spaces++; 85 // If the non-space char is CR/LF/EOF, the spaces we got 87 spaces = 0; 89 // The non-space char is NOT CR/LF, the spaces are valid.
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | SerializationHandler.java | 87 * Set the number of spaces to indent for each indentation level. 88 * @param spaces the number of spaces to indent for each indentation level. 90 public void setIndentAmount(int spaces); argument
|
H A D | EmptySerializer.java | 177 public void setIndentAmount(int spaces) argument
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1MonitoringSupport.cpp | 32 int ordinal, int spaces, 36 : GenerationCounters(name, ordinal, spaces, min_capacity, 40 // contains three spaces (eden and two survivors). 43 : G1GenerationCounters(g1mm, name, 0 /* ordinal */, 3 /* spaces */, 54 : G1GenerationCounters(g1mm, name, 1 /* ordinal */, 1 /* spaces */, 138 // The "0, 3" are paremeters for the n-th genertaion (=0) with 3 spaces. 30 G1GenerationCounters(G1MonitoringSupport* g1mm, const char* name, int ordinal, int spaces, size_t min_capacity, size_t max_capacity, size_t curr_capacity) argument
|
/openjdk7/jdk/test/sun/util/resources/TimeZone/ |
H A D | IntlTest.java | 198 log.print(spaces.substring(0, distance * 2)); 225 private final String spaces = " "; field in class:IntlTest
|
/openjdk7/jdk/test/java/util/Locale/ |
H A D | LocaleTestFmwk.java | 240 log.print(spaces.substring(0, distance * 2)); 268 private final String spaces = " "; field in class:LocaleTestFmwk
|
/openjdk7/jdk/test/java/util/ResourceBundle/ |
H A D | RBTestFmwk.java | 234 log.print(spaces.substring(0, distance * 2)); 261 private final String spaces = " "; field in class:RBTestFmwk
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | X86Instruction.java | 127 protected static String spaces = "\t"; field in class:X86Instruction
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/ |
H A D | Bytecode.java | 35 static final String spaces = " "; field in class:Bytecode 110 buf.append(spaces);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/ |
H A D | HtmlDocWriter.java | 346 * Print the appropriate spaces to format the class tree in the class page. 348 * @param len Number of spaces. 350 public String spaces(int len) { method in class:HtmlDocWriter 383 * Print ten non-breaking spaces(" ").
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/ |
H A D | PrintingProcessor.java | 517 private static final String [] spaces = { field in class:PrintingProcessor.PrintingElementVisitor 535 final int maxIndex = spaces.length - 1; 538 writer.print(spaces[maxIndex]); 541 writer.print(spaces[indentation]);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/ |
H A D | BasicWriter.java | 107 if (w < spaces.length && spaces[w] != null) 108 return spaces[w]; 115 if (w < spaces.length) 116 spaces[w] = s; 121 private String[] spaces = new String[80]; field in class:BasicWriter
|
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/ |
H A D | PrintAP.java | 63 static String [] spaces = { field in class:PrintAP.PrintingVisitors 83 return spaces[indentation]; 87 sb.append(spaces[indentation]); 90 sb.append(spaces[indentation]);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/ |
H A D | HTMLGenerator.java | 167 private final String spaces; field in class:HTMLGenerator 179 spaces = " "; 182 spaces = " "; 707 buf.headerCell("bci" + spaces); 717 buf.cell(Integer.toString(lineNumber) + spaces); 719 buf.cell(Integer.toString(curBci) + spaces); 1219 tmpBuf.append(spaces);
|
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | dfa.cpp | 117 static void cost_check(FILE *fp, const char *spaces, argument 145 fprintf(fp, "%sif (STATE__NOT_YET_VALID(%s) || _cost[%s] > %s) {\n", spaces, arrayIdx, arrayIdx, cost->as_string()); 150 if( debug_output ) { fprintf(fp, "%s// %s KNOWN_INVALID \n", spaces, arrayIdx); } 159 fprintf(fp, "%sif ( /* %s KNOWN_VALID || */ _cost[%s] > %s) {\n", spaces, arrayIdx, arrayIdx, cost->as_string()); 167 fprintf(fp, "%s %s(%s, %s_rule, %s)", spaces, production, arrayIdx, rule, cost->as_string() ); 175 fprintf(fp, "%s}\n", spaces); 213 Expr *ArchDesc::calc_cost(FILE *fp, const char *spaces, MatchList &mList, ProductionState &status) { argument 214 fprintf(fp, "%sunsigned int c = ", spaces);
|