Searched defs:advance (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DContentModelState.java174 public ContentModelState advance(Object token) { method in class:ContentModelState
179 new ContentModelState(model, next, value + 1)).advance(token);
183 return next.advance(token);
192 return new ContentModelState(model.content, this).advance(token);
195 return next.advance(token);
202 return new ContentModelState(model.content, next).advance(token);
205 return next.advance(token);
213 return new ContentModelState(m, next).advance(token);
224 return new ContentModelState(m, next).advance(token);
227 new ContentModelState(model, next, value + 1)).advance(toke
[all...]
H A DTagStack.java133 boolean advance(Element elem) { method in class:TagStack
138 ContentModelState newState = state.advance(elem);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dassembler_zero.cpp68 void MacroAssembler::advance(int bytes) { function in class:MacroAssembler
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphMetrics.java65 * components of the advance, the visual bounds, and the left and right
70 * contain both X and Y components. Usually the advance only has one
73 * The advance of a glyph is the distance from the glyph's origin to the
77 * glyph's advance, because of kerning or other positioning adjustments.
85 * rectangle to the next glyph origin (the origin plus the advance). If
116 * The x-component of the advance.
121 * The y-component of the advance.
175 * @param advance the advance width of the glyph
179 public GlyphMetrics(float advance, Rectangle2 argument
[all...]
H A DTextLine.java72 public final float advance; field in class:TextLine.TextLineMetrics
77 float advance) {
81 this.advance = advance;
153 float advance = 0;
206 // for the advance before we can create the metrics object
306 // ok, build fMetrics since we have the final advance
307 advance = x;
308 fMetrics = new TextLineMetrics(ascent, descent, leading, advance);
1411 float advance
74 TextLineMetrics(float ascent, float descent, float leading, float advance) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DServiceRegistry.java804 advance();
807 private void advance() { method in class:FilterIterator
828 advance();
/openjdk7/jdk/src/solaris/native/sun/font/
H A DX11FontScaler.c238 jfloat advance = 0.0f; local
241 return advance;
256 advance = AWTCharAdvance(xcs);
264 advance = AWTCharAdvance(xcs);
267 return (jfloat)(advance/context->scale);
340 * advance : no need to set yMaxLinearAdvanceWidth - it will be zero.
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentLinkedQueue.java131 * head to advance. A dequeued Node may remain in use
145 * self-link implicitly means to advance to head.
690 advance();
697 private E advance() { method in class:ConcurrentLinkedQueue.Itr
737 return advance();
H A DLinkedBlockingDeque.java1051 * under lock (in advance()) even if it was in the process of
1100 void advance() { method in class:LinkedBlockingDeque.AbstractItr
1121 advance();
H A DConcurrentHashMap.java1327 advance();
1334 final void advance() { method in class:ConcurrentHashMap.HashIterator
1357 advance();
H A DConcurrentLinkedDeque.java1331 advance();
1338 private void advance() { method in class:ConcurrentLinkedDeque.AbstractItr
1365 advance();
H A DLinkedTransferQueue.java219 * this in our implementation, upon CASing to advance the head
624 } // advance and retry
677 (s = t.next) != null && // advance and retry
830 private void advance(Node prev) { method in class:LinkedTransferQueue.Itr
835 * advance: Upon Itr.remove, we may need to catch up links
889 advance(null);
900 advance(p);
947 h.forgetNext(); // advance head
H A DConcurrentSkipListMap.java2222 final void advance() { method in class:ConcurrentSkipListMap.Iter
2253 advance();
2261 advance();
2270 advance();
3028 final void advance() { method in class:ConcurrentSkipListMap.SubMap.SubMapIter
3083 advance();
3091 advance();
3100 advance();
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java79 // input stream, and advance it as necessary.
99 // advance the input
100 private void advance(){ method in class:SignatureParser
195 // utilities current(), getNext() and/or advance().
235 advance();
242 advance();
271 advance();
310 advance();
318 advance();
336 advance();
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp461 uint advance = _second_bit[mask_bits(current,window_mask)]; local
462 _current = current >> advance;
463 _value = value + advance;
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java54 // Returns the advance give a glyph code. It should be used only
163 float advance = getCachedNativeGlyphAdvance(nativeFont.getMapper().charToGlyph(cp));
176 advance = (float) (advance * glyphScaleX / devScaleX);
177 return useFractionalMetrics() ? advance : Math.round(advance);
180 // calculate an advance, and round if not using fractional metrics
181 private float getScaledAdvanceForAdvance(float advance) { argument
183 advance *= invDevTx.getScaleX();
185 advance *
198 getScaledPointForAdvance(float advance) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLayoutEngine.cpp403 LEPoint advance; local
407 fFontInstance->getGlyphAdvance(glyphStorage[i], advance);
408 x += advance.fX;
409 y += advance.fY;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java1822 void advance(int n) { method in class:DefaultStyledDocument.ElementBuffer
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c510 /* max advance */
549 jfloat advance; local
556 advance = info->advanceX;
560 return advance;
806 if (!ftglyph->advance.y) {
808 (float) ROUND(FT26Dot6ToFloat(ftglyph->advance.x));
810 } else if (!ftglyph->advance.x) {
813 (float) ROUND(FT26Dot6ToFloat(-ftglyph->advance.y));
815 glyphInfo->advanceX = FT26Dot6ToFloat(ftglyph->advance.x);
816 glyphInfo->advanceY = FT26Dot6ToFloat(-ftglyph->advance
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp1700 int advance = target - (__ offset() % modulus); local
1701 if (advance < 0) advance += modulus;
1702 if (advance > 0) __ nop(advance);
H A DstubGenerator_x86_64.cpp328 __ addptr(c_rarg2, wordSize); // advance to next parameter
2561 int advance = target - (__ offset() % modulus); local
2562 if (advance < 0) advance += modulus;
2563 if (advance > 0) __ nop(advance);

Completed in 153 milliseconds