Searched defs:fv (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
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...]
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...]
/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...]

Completed in 54 milliseconds