Searched defs:insertAt (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DProviderList.java91 return insertAt(providerList, p, -1);
94 public static ProviderList insertAt(ProviderList providerList, Provider p, method in class:ProviderList
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java141 * Inserts a node with a given opcode and opdata at insertAt. The node relative next
145 * @param insertAt Index at which to insert the new node in the program
147 void nodeInsert(char opcode, int opdata, int insertAt) argument
152 // Move everything from insertAt to the end down nodeSize elements
153 System.arraycopy(instruction, insertAt, instruction, insertAt + RE.nodeSize, lenInstruction - insertAt);
154 instruction[insertAt + RE.offsetOpcode] = opcode;
155 instruction[insertAt + RE.offsetOpdata] = (char)opdata;
156 instruction[insertAt
[all...]

Completed in 31 milliseconds