Searched defs:count (Results 151 - 175 of 617) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/file/
H A DT7068451.java130 int count; field in class:T7068451.Proc
132 if (roundEnv.processingOver() || count++ > 0) {
/openjdk7/langtools/test/tools/javac/nio/compileTest/
H A DCompileTest.java83 count++;
84 System.err.println("Test " + count + " " + Arrays.asList(opts) + " " + className);
87 Path classes = Files.createDirectory(Paths.get("classes." + count));
111 File expect = new File("classes." + count + "/" + className + ".class");
168 int count; field in class:CompileTest
/openjdk7/langtools/test/tools/javadoc/6958836/
H A DTest.java57 System.err.println("Test " + (++count) + ": " + pkg + " " + testOpts);
58 File testOutDir = new File("test" + count);
118 int count; field in class:Test
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultText.java109 * @param count The number of 16-bit units to extract.
111 * <code>count</code> exceeds the <code>length</code>, then all 16-bit
116 * <code>data</code>, or if the specified <code>count</code> is
122 int count)
160 * @param count The number of 16-bit units to delete. If the sum of
161 * <code>offset</code> and <code>count</code> exceeds
167 * <code>data</code>, or if the specified <code>count</code> is
172 int count)
181 * @param count The number of 16-bit units to replace. If the sum of
182 * <code>offset</code> and <code>count</cod
121 substringData(int offset, int count) argument
171 deleteData(int offset, int count) argument
196 replaceData(int offset, int count, String arg) argument
[all...]
H A DTextImpl.java107 * @param count The number of 16-bit units to extract.
109 * <code>count</code> exceeds the <code>length</code>, then all 16-bit
114 * <code>data</code>, or if the specified <code>count</code> is
120 int count)
123 if(count < 0 || offset < 0 || offset > fData.length())
125 if(offset+count >= fData.length())
127 return fData.substring(offset, offset+count);
119 substringData(int offset, int count) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DSerializerTraceWriter.java74 private int count; field in class:SerializerTraceWriter
85 count = 0;
118 if (count > 0)
120 char[] chars = new char[count];
121 for(int i=0; i<count; i++)
131 count = 0;
186 if (count >= buf_length)
191 buf[count++] = (byte) (c);
195 buf[count++] = (byte) (0xc0 + (c >> 6));
196 buf[count
[all...]
H A DWriterToUTF8Buffered.java70 * <tt>m_outputBytes[0]</tt> through <tt>m_outputBytes[count-1]</tt> contain valid
73 private int count; field in class:WriterToUTF8Buffered
94 count = 0;
121 // count = 0;
141 if (count >= BYTES_MAX)
146 m_outputBytes[count++] = (byte) (c);
150 m_outputBytes[count++] = (byte) (0xc0 + (c >> 6));
151 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
155 m_outputBytes[count++] = (byte) (0xe0 + (c >> 12));
156 m_outputBytes[count
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DNVListImpl.java67 public int count() method in class:NVListImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjectHistogramElement.java35 private long count; // Number of instances of klass field in class:ObjectHistogramElement
40 count = 0;
45 count = count + 1;
60 return count;
118 tty.print(count + "\t" + size + "\t");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DArguments.java75 private static String buildString(AddressField arrayField, long count) { argument
77 if (count > 0) {
79 for (long i = 1; i < count; i++) {
H A DObjectMonitor.java90 public long count() { return countField.getValue(addr); } method in class:ObjectMonitor
92 // void set_count(intptr_t count);
102 // for Solaris and Linux, contentions is same as count. for Windows
104 long count = count();
106 // don't count the owner of the monitor
107 return count > 0? count - 1 : 0;
110 return count;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DClip.java201 * <code>count</code> times, and finally continue playback to the end of
208 * A <code>count</code> value of 0 indicates that any current looping should
217 * @param count the number of times playback should loop back from the
222 public void loop(int count); argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DCharToGlyphMapper.java82 public abstract void charsToGlyphs(int count, argument
85 public abstract boolean charsToGlyphsNS(int count, argument
88 public abstract void charsToGlyphs(int count, argument
H A DTrueTypeGlyphMapper.java163 public void charsToGlyphs(int count, int[] unicodes, int[] glyphs) { argument
164 for (int i=0;i<count;i++) {
177 public void charsToGlyphs(int count, char[] unicodes, int[] glyphs) { argument
179 for (int i=0; i<count; i++) {
188 code <= HI_SURROGATE_END && i < count - 1) {
217 public boolean charsToGlyphsNS(int count, char[] unicodes, int[] glyphs) { argument
219 for (int i=0; i<count; i++) {
228 code <= HI_SURROGATE_END && i < count - 1) {
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedInputStream.java78 * elements <code>buf[0]</code> through <code>buf[count-1]
82 protected int count; field in class:BufferedInputStream
89 * through <code>count</code>. If it is less
90 * than <code>count</code>, then <code>buf[pos]</code>
92 * if it is equal to <code>count</code>, then
119 * of <code>count</code>, <code>pos</code>,
203 * hence pos > count.
234 count = pos;
237 count = n + pos;
253 if (pos >= count) {
[all...]
H A DByteArrayOutputStream.java55 protected int count; field in class:ByteArrayOutputStream
122 ensureCapacity(count + 1);
123 buf[count] = (byte) b;
124 count += 1;
140 ensureCapacity(count + len);
141 System.arraycopy(b, off, buf, count, len);
142 count += len;
148 * stream's write method using <code>out.write(buf, 0, count)</code>.
154 out.write(buf, 0, count);
158 * Resets the <code>count</cod
[all...]
H A DCharArrayReader.java49 protected int count; field in class:CharArrayReader
58 this.count = buf.length;
85 this.count = Math.min(offset + length, buf.length);
103 if (pos >= count)
130 if (pos >= count) {
133 if (pos + len > count) {
134 len = count - pos;
160 if (pos + n > count) {
161 n = count - pos;
180 return (count
[all...]
H A DCharArrayWriter.java52 protected int count; field in class:CharArrayWriter
80 int newcount = count + 1;
84 buf[count] = (char)c;
85 count = newcount;
103 int newcount = count + len;
107 System.arraycopy(c, off, buf, count, len);
108 count = newcount;
120 int newcount = count + len;
124 str.getChars(off, off + len, buf, count);
125 count
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DUID.java55 * <li><code>count</code>, a <code>short</code> to distinguish
102 private final short count; field in class:UID
141 count = lastCount++;
159 count = num;
165 private UID(int unique, long time, short count) { argument
168 this.count = count;
177 return (int) time + (int) count;
186 * <code>unique</code>, <code>time</code>, and <code>count</code>
198 count
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCyclicBarrier.java139 * can be active at a time (the one to which <tt>count</tt> applies)
164 private int count; field in class:CyclicBarrier
174 count = parties;
184 count = parties;
207 int index = --count;
273 this.count = parties;
478 return parties - count;
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DMemoryHandler.java81 int start, count; field in class:MemoryHandler
121 // Initialize. Size is a count of LogRecords.
125 count = 0;
176 int ix = (start+count)%buffer.length;
178 if (count < buffer.length) {
179 count++;
195 for (int i = 0; i < count; i++) {
202 count = 0;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.cpp68 G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) { argument
71 for (int i = 0; i < count; i++, elem_ptr++) {
H A Dg1SATBCardTableModRefBS.hpp80 template <class T> void write_ref_array_pre_work(T* dst, int count);
81 virtual void write_ref_array_pre(oop* dst, int count, bool dest_uninitialized) { argument
83 write_ref_array_pre_work(dst, count);
86 virtual void write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized) { argument
88 write_ref_array_pre_work(dst, count);
/openjdk7/hotspot/src/share/vm/memory/
H A DgcLocker.cpp44 int count = 0; local
48 count++;
51 if (_jni_lock_count != count) {
52 tty->print_cr("critical counts don't match: %d != %d", _jni_lock_count, count);
59 assert(_jni_lock_count == count, "must be equal");
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DEventRequest.java128 * the first <code>count - 1</code> times this filter is reached.
129 * To request a one-off event, call this method with a count of 1.
131 * Once the count reaches 0, any subsequent filters in this request
137 * @param count the number of ocurrences before generating an event.
141 * @throws IllegalArgumentException if <CODE>count</CODE>
144 void addCountFilter(int count); argument

Completed in 76 milliseconds

1234567891011>>