Searched refs:fv (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DFlowView.java339 void addDamage(FlowView fv, int offset) { argument
340 if (offset >= fv.getStartOffset() && offset < fv.getEndOffset()) {
343 damageStart = fv.getDocument().createPosition(offset);
367 public void insertUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) { argument
371 addDamage(fv, e.getOffset());
375 Component host = fv.getContainer();
380 fv.preferenceChanged(null, true, true);
392 public void removeUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) { argument
393 addDamage(fv,
414 changedUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) argument
430 getLogicalView(FlowView fv) argument
442 layout(FlowView fv) argument
504 layoutRow(FlowView fv, int rowIndex, int pos) argument
586 adjustRow(FlowView fv, int rowIndex, int desiredSpan, int x) argument
658 createView(FlowView fv, int startOffset, int spanLeft, int rowIndex) argument
[all...]
H A DTextLayoutStrategy.java69 public void insertUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) { argument
70 sync(fv);
71 super.insertUpdate(fv, e, alloc);
82 public void removeUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) { argument
83 sync(fv);
84 super.removeUpdate(fv, e, alloc);
96 public void changedUpdate(FlowView fv, DocumentEvent e, Rectangle alloc) { argument
97 sync(fv);
98 super.changedUpdate(fv, e, alloc);
107 * @param fv th
109 layout(FlowView fv) argument
126 layoutRow(FlowView fv, int rowIndex, int p0) argument
165 adjustRow(FlowView fv, int rowIndex, int desiredSpan, int x) argument
178 createView(FlowView fv, int startOffset, int spanLeft, int rowIndex) argument
290 sync(FlowView fv) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1422 FrameValue fv; local
1423 fv.location = location;
1424 fv.owner = owner;
1425 fv.priority = priority;
1426 fv.description = NEW_RESOURCE_ARRAY(char, strlen(description) + 1);
1427 strcpy(fv.description, description);
1428 _values.append(fv);
1439 FrameValue fv = _values.at(i); local
1440 if (fv.owner == -1) continue;
1442 prev = fv;
1491 FrameValue fv = _values.at(i); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DWrapperBeanGenerator.java128 FieldVisitor fv = cw.visitField(ACC_PUBLIC, field.fieldName, field.asmType.getDescriptor(), field.getSignature(), null);
132 AnnotationVisitor mime = fv.visitAnnotation("Ljavax/xml/bind/annotation/XmlMimeType;", true);
136 AnnotationVisitor ada = fv.visitAnnotation("Ljavax/xml/bind/annotation/adapters/XmlJavaTypeAdapter;", true);
142 AnnotationVisitor att = fv.visitAnnotation("Ljavax/xml/bind/annotation/XmlAttachmentRef;", true);
145 AnnotationVisitor list = fv.visitAnnotation("Ljavax/xml/bind/annotation/XmlList;", true);
148 AnnotationVisitor elem = fv.visitAnnotation("Ljavax/xml/bind/annotation/XmlElement;", true);
164 fv.visitEnd();
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DGen.java276 float fv = ((Float)value).floatValue();
277 if (Float.isInfinite(fv))
278 constString = ((fv < 0) ? "-" : "") + "Inff";
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java874 LValue fv;
876 fv = thisLValue.memberLValue(first, thread);
878 fv = null;
880 if (fv != null) {
881 return nFields(fv, izer, thread);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassReader.java692 FieldVisitor fv = classVisitor.visitField(access,
698 if (fv != null) {
709 fv.visitAnnotation(readUTF8(v, c), j != 0));
717 fv.visitAttribute(cattrs);
720 fv.visitEnd();
1713 float[] fv = new float[size];
1715 fv[i] = Float.intBitsToFloat(readInt(items[readUnsignedShort(v)]));
1718 av.visit(name, fv);

Completed in 56 milliseconds