Searched refs:insertAt (Results 1 - 3 of 3) sorted by relevance

/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...]
/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/jdk/src/share/classes/java/security/
H A DSecurity.java363 ProviderList newList = ProviderList.insertAt(list, provider, position - 1);

Completed in 33 milliseconds