Searched refs:getLength (Results 326 - 350 of 540) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java791 for (int i = 0; i < nodeList.getLength(); i++)
840 for (int i = 0; i < nodeList.getLength(); i++)
923 for(int i = 0; i < nodeList.getLength(); i++)
983 for(int i = 0; i < nl.getLength(); i++)
1051 public final int getLength() method in class:DTMNodeProxy
1806 int length = map.getLength();
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultCaret.java1162 dot = Math.min(dot, doc.getLength());
1391 int length = component.getDocument().getLength();
1688 int length = e.getLength();
1754 int length = component.getDocument().getLength();
1769 int offs1 = offs0 + e.getLength();
1838 setDot(e.getOffset() + e.getLength());
H A DUtilities.java531 int n = c.getDocument().getLength();
601 int n = c.getDocument().getLength();
636 int lineEnd = Math.min(line.getEndOffset(), doc.getLength());
670 int lineEnd = Math.min(line.getEndOffset(), doc.getLength());
723 int lineEnd = Math.min(line.getEndOffset(), doc.getLength());
H A DView.java555 pos = Math.min(pos + 1, getDocument().getLength());
1160 index1 = getViewIndex(pos + e.getLength(), Position.Bias.Forward);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormView.java728 value = doc.getText(0, doc.getLength());
750 path = doc.getText(0, doc.getLength());
769 return doc.getText(0, doc.getLength());
893 doc.remove(0, doc.getLength());
961 if (model.getLength() > 0) {
962 model.remove(0, model.getLength());
H A DHTMLDocument.java490 int end = Math.min(offset + length, getLength());
789 int endOffset = Math.min(getLength(), element.getEndOffset());
1060 * <code>setOuterHTML(getCharacterElement (getLength()),
1110 int startLength = getLength();
1122 int newLength = getLength();
1375 if (offset > getLength()) {
1573 if (end > getLength()) {
1603 Element endE = getCharacterElement(getLength());
2188 emptyDocument = (getLength() == 0);
2422 int length = getLength();
[all...]
H A DStyleSheet.java1770 topMargin = getLength(CSS.Attribute.MARGIN_TOP, a);
1771 bottomMargin = getLength(CSS.Attribute.MARGIN_BOTTOM, a);
1772 leftMargin = getLength(CSS.Attribute.MARGIN_LEFT, a);
1773 rightMargin = getLength(CSS.Attribute.MARGIN_RIGHT, a);
1826 inset += getLength(CSS.Attribute.PADDING_LEFT, a);
1832 inset += getLength(CSS.Attribute.PADDING_RIGHT, a);
1837 inset += getLength(CSS.Attribute.PADDING_TOP, a);
1842 inset += getLength(CSS.Attribute.PADDING_BOTTOM, a);
1905 int bw = (int) getLength(CSS.Attribute.BORDER_TOP_WIDTH, a);
1915 float getLength(CS method in class:StyleSheet.BoxPainter
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java822 int n = Array.getLength(a1);
915 long[] la = new long[Array.getLength(values)];
923 int[] ia = new int[Array.getLength(values)];
930 short[] sa = new short[Array.getLength(values)];
938 if (Array.getLength(values) == size) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java1462 for (int i = fBase.patternAnnotations.getLength()-1; i >= 0; --i) {
1687 final int typeList1Length = itemType != null ? itemType.getLength() : 0;
1688 final int typeList2Length = enumItemType != null ? enumItemType.getLength() : 0;
1790 int len = values.getLength();
2265 public int getLength() {
2272 if (index < 0 || index >= getLength()) {
2291 public int getLength() {
2303 if (index < 0 || index >= getLength()) {
2719 for (int i = 0; i < ((XSSimpleTypeDecl) type).getMemberTypes().getLength(); i++) {
2816 for (int i = 0; i < memberTypes.getLength();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDSimpleTypeTraverser.java306 for (int j = 0; j < dvs.getLength(); j++)
340 for (int j = 0; j < dvs.getLength(); j++) {
495 for (int i = 0; i < temp.getLength(); i++) {
H A DXSDAbstractTraverser.java350 enumAnnotations.addXSObject(enumAnnotations.getLength()-1,traverseAnnotationDecl(child, attrs, false, schemaDoc));
356 enumAnnotations.addXSObject(enumAnnotations.getLength()-1, traverseSyntheticAnnotation(content, text, attrs, false, schemaDoc));
589 for (int i = 0; i < members.getLength(); i++) {
648 int attrCount = attrUseS.getLength();
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java280 for ( i = 0 ; i < attrs.getLength() ; ++i ) {
532 for ( i = 0 ; i < attrs.getLength() ; ++i ) {
755 for ( i = 0 ; i < attrMap.getLength() ; ++i ) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java365 public int getLength() method in class:NodeSet
441 int nChildren = nodelist.getLength();
524 int nChildren = nodelist.getLength();
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java58 public int getLength() { method in class:IIONamedNodeMap
119 public int getLength() { method in class:IIONodeList
918 public int getLength() { method in class:IIOMetadataNode
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer11.java214 int attrsLength = attrs.getLength();
283 attrsLength = attrs.getLength();
424 int attrsLength = attrs.getLength();
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java757 doc.insertString(doc.getLength(), new String(buff, 0, nch),
818 progress.setMaximum(doc.getLength());
826 int charsLeft = doc.getLength();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java339 for (int i = 0; i < attributes.getLength(); ++i) {
351 for ( int i=0; i<attributes.getLength(); ++i ) {
753 for (int k = 0; k < attributes.getLength(); ++k) {
1323 for (int j = 0; j < children.getLength(); j++) {
1464 int length = attributes.getLength();
1522 public int getLength(){ method in class:DOMNormalizer.XMLAttributesProxy
1523 return(fAttributes != null)?fAttributes.getLength():0;
1800 int attrCount = attributes.getLength();
H A DParentNode.java682 * NodeList.getLength().
725 public int getLength() { method in class:ParentNode
805 * that have methods named getLength() or item(int). ChildAndParentNode
821 * @see NodeList.getLength()
823 public int getLength() {
825 } // getLength():int
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingChooser.java319 int Xlen = regular.getLength(X); // band coding header
585 int size = c.getLength(values, start, end);
656 BAND_HEADER + Math.max(favoredCoding.getLength(min),
657 favoredCoding.getLength(max));
659 final int ZERO_LEN = tokenCoding.getLength(0);
691 int thisVLen = favoredCoding.getLength(thisValue);
696 currentTSize += (tokenCoding.getLength(thisToken)
967 int size = plainCoding.getLength(val);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java98 this(c.getNameIndex(), c.getLength(), c.getMaxStack(), c.getMaxLocals(),
H A DConstantPool.java325 public int getLength() method in class:ConstantPool
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DAttributeHTML.java210 int end = (start + vars[i].getLength());
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltStrings.java124 for (int i = 0; i < nl.getLength(); i++)
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DDecimalFormatting.java134 final int nAttributes = _attributes.getLength();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DField.java210 final int length = itemValueType.getLength();

Completed in 348 milliseconds

<<11121314151617181920>>