Searched defs:compileCount (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java93 private static int compileCount = 0; field in class:CompileProperties
97 if ( compileCount > 0 ) {
98 String new_propfiles[] = new String[compileCount + args.length];
99 String new_outfiles[] = new String[compileCount + args.length];
100 String new_supers[] = new String[compileCount + args.length];
101 System.arraycopy(propfiles, 0, new_propfiles, 0, compileCount);
102 System.arraycopy(outfiles, 0, new_outfiles, 0, compileCount);
103 System.arraycopy(supers, 0, new_supers, 0, compileCount);
114 propfiles[compileCount] = args[++i];
115 outfiles[compileCount]
[all...]
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java73 private int compileCount = 0; field in class:CompileProperties
113 if ( ok && compileCount == 0 ) {
122 for ( int i = 0; i < compileCount && ok ; i++ ) {
132 if ( compileCount > 0 ) {
133 String new_propfiles[] = new String[compileCount + args.length];
134 String new_outfiles[] = new String[compileCount + args.length];
135 String new_supers[] = new String[compileCount + args.length];
136 System.arraycopy(propfiles, 0, new_propfiles, 0, compileCount);
137 System.arraycopy(outfiles, 0, new_outfiles, 0, compileCount);
138 System.arraycopy(supers, 0, new_supers, 0, compileCount);
[all...]

Completed in 698 milliseconds