Searched defs:spaces (Results 1 - 18 of 18) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCInstruction.java41 protected static String spaces = "\t"; field in class:SPARCInstruction
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsGenerationCounters.cpp32 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 DgenerationCounters.cpp29 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 DQPDecoderStream.java47 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 DSerializationHandler.java87 * 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 DEmptySerializer.java177 public void setIndentAmount(int spaces) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MonitoringSupport.cpp32 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 DIntlTest.java198 log.print(spaces.substring(0, distance * 2));
225 private final String spaces = " "; field in class:IntlTest
/openjdk7/jdk/test/java/util/Locale/
H A DLocaleTestFmwk.java240 log.print(spaces.substring(0, distance * 2));
268 private final String spaces = " "; field in class:LocaleTestFmwk
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DRBTestFmwk.java234 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 DX86Instruction.java127 protected static String spaces = "\t"; field in class:X86Instruction
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecode.java35 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 DHtmlDocWriter.java346 * 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 DPrintingProcessor.java517 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 DBasicWriter.java107 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 DPrintAP.java63 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 DHTMLGenerator.java167 private final String spaces; field in class:HTMLGenerator
179 spaces = "&nbsp;&nbsp;";
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 Ddfa.cpp117 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);

Completed in 1946 milliseconds