Searched defs:index (Results 626 - 650 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java86 * The bottom index of the current frame (relative to <code>_stackFrames</code>).
105 * Get the element at the given index, regardless of stackframe.
107 * @param i index from zero.
109 * @return The item at the given index.
236 * @param index Local variable index relative to the current stack
241 public void setLocalVariable(int index, XObject val) argument
243 _stackFrames[index + _currentFrameBottom] = val;
250 * @param index Local variable index relativ
256 setLocalVariable(int index, XObject val, int stackFrame) argument
275 getLocalVariable(XPathContext xctxt, int index) argument
307 getLocalVariable(int index, int frame) argument
332 getLocalVariable(XPathContext xctxt, int index, boolean destructiveOK) argument
362 isLocalSet(int index) argument
396 setGlobalVariable(final int index, final XObject val) argument
415 getGlobalVariable(XPathContext xctxt, final int index) argument
442 getGlobalVariable(XPathContext xctxt, final int index, boolean destructiveOK) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DPredicatedNodeTest.java181 * Get a predicate expression at the given index.
184 * @param index Index of the predicate.
188 public Expression getPredicate(int index) argument
190 return m_predicates[index];
218 * Get the index of the last node that can be itterated to.
223 * @return the index of the last node that can be itterated to.
230 * @param predicateIndex The index of the predicate where the proximity
269 * @param i The index into the m_proximityPositions array.
281 * @param i The index into the m_proximityPositions array, where the increment
306 * @return The current predicate index, o
625 PredOwner(int index) argument
[all...]
H A DUnionPathIterator.java497 iterOwner(int index) argument
499 m_index = index;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java241 * Returns the character at the specified index. An index ranges
243 * of the sequence is at index <code>0</code>, the next at index
246 * @param index the index of the character.
247 * @return the character at the specified index of this string.
248 * The first character is at index <code>0</code>.
249 * @exception IndexOutOfBoundsException if the <code>index</code>
253 public char charAt(int index) argument
[all...]
H A DXStringForFSB.java216 * Returns the character at the specified index. An index ranges
218 * of the sequence is at index <code>0</code>, the next at index
221 * @param index the index of the character.
222 * @return the character at the specified index of this string.
223 * The first character is at index <code>0</code>.
224 * @exception IndexOutOfBoundsException if the <code>index</code>
228 public char charAt(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DStepPattern.java258 * @param i The index of the predicate.
514 * Get the proximity position index of the current node based on this
522 * @return the proximity position index of the current node based on the
620 * Get the proximity position index of the current node based on this
626 * @return the proximity position index of the current node based on the
637 * selection. In XSLT 1-based indexing, this count is the index of the last
942 PredOwner(int index) argument
944 m_index = index;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java77 /** Current element index. */
278 int index = attRawName.indexOf(':');
279 if (index != -1) {
280 attPrefix = attRawName.substring(0, index);
282 attLocalpart = attRawName.substring(index + 1);
335 * @param index The index of the attribute to normalize
337 private boolean normalizeAttrValue(XMLAttributes attributes, int index) { argument
344 String attrValue = attributes.getValue(index);
384 attributes.setValue(index, newValu
[all...]
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamReader.java383 /** Returns the qname of the attribute at the provided index
385 * @param index the position of the attribute
389 public QName getAttributeName(int index); argument
393 * index
394 * @param index the position of the attribute
398 public String getAttributeNamespace(int index); argument
402 * index
403 * @param index the position of the attribute
407 public String getAttributeLocalName(int index); argument
411 * provided index
416 getAttributePrefix(int index) argument
425 getAttributeType(int index) argument
434 getAttributeValue(int index) argument
443 isAttributeSpecified(int index) argument
465 getNamespacePrefix(int index) argument
475 getNamespaceURI(int index) argument
[all...]
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DStreamReaderDelegate.java156 public QName getAttributeName(int index) { argument
157 return reader.getAttributeName(index);
160 public String getAttributePrefix(int index) { argument
161 return reader.getAttributePrefix(index);
164 public String getAttributeNamespace(int index) { argument
165 return reader.getAttributeNamespace(index);
168 public String getAttributeLocalName(int index) { argument
169 return reader.getAttributeLocalName(index);
172 public String getAttributeType(int index) { argument
173 return reader.getAttributeType(index);
176 getAttributeValue(int index) argument
180 isAttributeSpecified(int index) argument
188 getNamespacePrefix(int index) argument
192 getNamespaceURI(int index) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyBasicImpl.java55 index = NO_INDEX;
61 index = NO_INDEX;
75 index = NO_INDEX;
86 index = NO_INDEX;
148 public boolean seek(int index) { argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DInterfaceGen.java418 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream)
422 index = structHelperType (index, indent, tcoffsets, name, entry, stream);
436 return index;
439 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
452 return index;
455 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
457 return index;
504 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream)
508 index
519 read(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
546 write(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
[all...]
H A DMethodGen.java140 Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index)
148 this.methodIndex = index;
163 protected void localstub (Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index, InterfaceEntry i) argument
168 this.methodIndex = index;
182 protected void skeleton (Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index) argument
187 this.methodIndex = index;
201 protected void dispatchSkeleton (Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index) argument
206 this.methodIndex = index;
336 // determine the index at which the attribute name starts in the full name
337 int index
139 stub(String className, boolean isAbstract, Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index) argument
[all...]
H A DStructGen.java296 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
302 String membersName = "_members" + index++;
311 index = ((JavaGenerator)member.generator ()).type (index, indent, innerOffsets, tcOfMembers, member, stream);
326 return index;
329 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
331 return index;
341 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
358 index = ((JavaGenerator)member.generator ()).read (index, inden
410 write(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
[all...]
H A DUnionGen.java593 public int helperType (int index, String indent, TCOffsets tcoffsets, argument
598 String discTypeCode = "_disTypeCode" + index;
599 String membersName = "_members" + index;
603 index = ((JavaGenerator)u.type ().generator ()).type (index + 1, indent,
634 index = ((JavaGenerator)member.generator ()).type (index, indent, innerOffsets, tcOfMembers, member, stream);
673 index = ((JavaGenerator)member.generator ()).type (index, indent, innerOffsets, tcOfMembers, member, stream);
695 return index;
698 type(int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
717 read(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
738 readBoolean(String disName, int index, String indent, String name, UnionEntry u, PrintWriter stream) argument
802 readNonBoolean(String disName, int index, String indent, String name, UnionEntry u, PrintWriter stream) argument
860 readBranch(int index, String indent, String name, String disName, TypedefEntry entry, PrintWriter stream) argument
886 write(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
904 writeBoolean(String disName, int index, String indent, String name, UnionEntry u, PrintWriter stream) argument
967 writeNonBoolean(String disName, int index, String indent, String name, UnionEntry u, PrintWriter stream) argument
1010 writeBranch(int index, String indent, String name, TypedefEntry entry, PrintWriter stream) argument
[all...]
H A DValueGen.java443 public int helperType (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) argument
448 String members = "_members" + index++;
486 index = ((JavaGenerator)member.generator ()).type (index, indent, tcoffsets, tcOfMembers, member, stream);
507 return index;
510 public int type (int index, String indent, TCOffsets tcoffsets, String name, SymtabEntry entry, PrintWriter stream) { argument
512 return index;
603 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
611 return index;
631 index
687 write(int index, String indent, String name, SymtabEntry entry, PrintWriter stream) argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DDynAny.java714 * Moves the internal pointer to the given index. Logically, this method
717 * @param index an <code>int</code> indicating the position to which
721 * index. If this <code>DynAny</code> object is associated with a
722 * basic type, this method returns <code>false</code> for any index
725 public boolean seek(int index) ; argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DInstructionDecoder.java97 static int readInt32(byte[] bytesArray, int index) { argument
99 ret = readByte(bytesArray, index);
100 ret |= readByte(bytesArray, index+1) << 8;
101 ret |= readByte(bytesArray, index+2) << 16;
102 ret |= readByte(bytesArray, index+3) << 24;
105 static int readInt16(byte[] bytesArray, int index) { argument
107 ret = readByte(bytesArray, index);
108 ret |= readByte(bytesArray, index+1) << 8;
111 static int readByte(byte[] bytesArray, int index) { argument
113 if (index < bytesArra
129 decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapSet.java109 /** returns the OopMap at a given index */
110 public OopMap getMapAt(int index) { argument
112 Assert.that((index >= 0) && (index <= getSize()),"bad index");
115 Address oopMapAddr = omDataAddr.getAddressAt(index * VM.getVM().getAddressSize());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/amd64/
H A DAMD64ThreadContext.java90 public String getRegisterName(int index) { argument
91 return regNames[index];
94 public void setRegister(int index, long value) { argument
95 data[index] = value;
98 public long getRegister(int index) { argument
99 return data[index];
108 public abstract void setRegisterAsAddress(int index, Address value); argument
112 public abstract Address getRegisterAsAddress(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFSectionHeader.java28 /** Undefined section header index. */
30 /** Lower bound section header index. */
32 /** Lower bound section header index reserved for processor specific
35 /** Upper bound section header index reserved for processor specific
45 /** Upper bound section header index. */
106 /** Returns the symbol at the specified index. The ELF symbol at index 0
108 public ELFSymbol getELFSymbol(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/sparc/
H A DSPARCThreadContext.java116 public String getRegisterName(int index) { argument
117 return regNames[index];
120 public void setRegister(int index, long value) { argument
121 data[index] = value;
124 public long getRegister(int index) { argument
125 return data[index];
134 public abstract void setRegisterAsAddress(int index, Address value); argument
138 public abstract Address getRegisterAsAddress(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/x86/
H A DX86ThreadContext.java101 public String getRegisterName(int index) { argument
102 return regNames[index];
105 public void setRegister(int index, long value) { argument
106 data[index] = value;
109 public long getRegister(int index) { argument
110 return data[index];
119 public abstract void setRegisterAsAddress(int index, Address value); argument
123 public abstract Address getRegisterAsAddress(int index); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMethodImpl.java107 Type argumentType(int index) throws ClassNotLoadedException { argument
109 String signature = (String)argumentSignatures().get(index);
H A DThreadReferenceImpl.java186 public StackFrame frame(int index) throws IncompatibleThreadStateException { argument
187 List list = privateFrames(index, 1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DDataLayout.java87 int cellAt(int index) { argument
89 return (int)data.getCIntegerAt(offset + cellOffset(index), MethodData.cellSize, false);
92 Oop oopAt(int index) { argument
97 handle = data.getOopHandleAt(offset + cellOffset(index));
101 public Address addressAt(int index) { argument
104 return data.getAddressAt(offset + cellOffset(index));
106 return data.getOopHandleAt(offset + cellOffset(index));
190 public static int cellOffset(int index) { argument
191 return MethodData.cellSize + index * MethodData.cellSize;

Completed in 65 milliseconds

<<21222324252627282930>>