Searched refs:opcode (Results 1 - 25 of 26) sorted by relevance

12

/forgerock/opendj-b2.6/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2.6.2/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2-jel-hg/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/opendj2-hg/ext/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/forgerock/web-agents-v4/pcre/
H A Dpcre_compile.c533 "internal error: unknown opcode in find_fixedlength()\0"
693 between adjacent character-type opcodes. The left-hand (repeated) opcode is
694 used to select the row, and the right-hand opcode is use to select the column.
699 because of what their opcode values are, but the table values should always be
732 left-hand (repeated) opcode is used to select the row, and the right-hand
733 opcode is used to select the column. The values are as follows:
1650 Returns: pointer to the first significant opcode
1716 or -4 if an unknown opcode was encountered (internal error)
2050 Returns: pointer to the opcode for the bracket, or NULL if not found
2185 Returns: pointer to the opcode fo
[all...]
H A Dpcre_jit_compile.c292 /* Points to the starting opcode. */
308 /* Points to the starting opcode. */
323 /* Maps private data offset to each opcode. */
490 /* These two locals can be used by the current opcode. */
823 /* Only AUTO_CALLOUT can insert this opcode. We do
6415 pcre_uchar opcode; local
6446 opcode = *cc;
6447 SLJIT_ASSERT(opcode >= OP_ASSERT && opcode <= OP_ASSERTBACK_NOT);
6448 found = (opcode
6933 pcre_uchar opcode; local
7472 pcre_uchar opcode; local
7746 get_iterator_parameters(compiler_common *common, pcre_uchar *cc, pcre_uchar *opcode, pcre_uchar *type, int *max, int *min, pcre_uchar **end) argument
7848 pcre_uchar opcode; local
8157 pcre_uchar opcode = *cc; local
8544 pcre_uchar opcode; local
8805 int opcode, stacksize, alt_count, alt_max; local
9327 pcre_uchar opcode = *current->cc; local
[all...]
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/jmac/provider/
H A DBaseAuthConfig.java141 // we cannot determine the opcode of a request at runtime.
388 int opcode) throws ClassNotFoundException, NoSuchMethodException {
396 // one time initialization of the opcode to authContext array.
436 if (opcode >=0 && opcode < contextsForOpcodes_.size()) {
437 rvalue = contextsForOpcodes_.get(opcode);
438 } else if (opcode < 0) {
439 //we don't know the opcode, so lets try to see if
447 protected Object getContextForOpCode(StreamingHandler handler, int opcode) argument
449 Object rvalue = getExplicitContextForOpCode(handler,opcode);
387 getExplicitContextForOpCode(StreamingHandler handler, int opcode) argument
[all...]
H A DClientAuthConfig.java140 getAuthContextForOpCode(StreamingHandler handler, int opcode) throws argument
142 return (ClientAuthContext) getContextForOpCode(handler,opcode);
H A DServerAuthConfig.java142 getAuthContextForOpCode(StreamingHandler handler, int opcode) throws argument
144 return (ServerAuthContext) getContextForOpCode(handler,opcode);
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/
H A DASMMethod.java127 int opcode, String owner, String name, String desc) {
130 // new Object[]{AbstractVisitor.OPCODES[opcode], owner, name, desc});
145 int opcode, String owner, String name, String desc) {
148 // AbstractVisitor.OPCODES[opcode], owner, name, desc});
153 @Override public void visitTypeInsn(int opcode, String desc) { argument
156 // AbstractVisitor.OPCODES[opcode], desc});
157 switch (opcode) {
171 // getClass().getName() + ".warning1", AbstractVisitor.OPCODES[opcode]); // NOI18N
126 visitFieldInsn( int opcode, String owner, String name, String desc) argument
144 visitMethodInsn( int opcode, String owner, String name, String desc) argument
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/session/management/
H A DSessionAttributeMetadata.java68 private Operation opcode; field in class:SessionAttributeMetadata
84 * @param opcode
89 public SessionAttributeMetadata(String attributeName, Operation opcode, byte[] data) { argument
91 this.opcode = opcode;
110 return opcode;
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DCodeAttribute.java145 if (insn != null && insn.opcode() != Insn.opc_target)
H A DInsn.java54 /* A special magic opcode for branch target pseudo instructions */
57 /* The opcode of this instruction */
151 * Return the opcode for this instruction
153 public int opcode() { method in class:Insn
196 * Return the name of the operation for a given opcode
198 public static String opName(int opcode) { argument
199 if (opcode == opc_target)
201 if (opcode >=0 && opcode <= VMOp.ops.length)
202 return VMOp.ops[opcode]
554 loadStoreDataType(int opcode) argument
[all...]
H A DInsnConstOp.java58 int n = VMOp.ops[opcode()].nStackArgs();
61 switch (opcode()) {
68 return (opcode() == opc_putfield) ? 3 : 2;
69 return (opcode() == opc_putfield) ? 2 : 1;
81 ((opcode() == opc_invokestatic) ? 0 : 1);
84 throw new InsnError("unexpected variable opcode");//NOI18N
89 int n = VMOp.ops[opcode()].nStackResults();
92 switch (opcode()) {
113 throw new InsnError("unexpected variable opcode");//NOI18N
118 switch (opcode()) {
[all...]
H A DInsnIInc.java125 buf[index++] = (byte) opcode();
H A DInsnIntOp.java56 return VMOp.ops[opcode()].nStackArgs();
60 return VMOp.ops[opcode()].nStackResults();
64 return VMOp.ops[opcode()].argTypes();
68 return VMOp.ops[opcode()].resultTypes();
72 return opcode() == opc_ret;
106 if (opcode() == opc_newarray)
109 out.println(offset() + " " + opName(opcode()) + " " + operandValue);//NOI18N
118 buf[index++] = (byte) opcode();
129 switch(opcode()) {
159 throw new InsnError ("invalid instruction " + opName(opcode())
[all...]
H A DInsnInterfaceInvoke.java123 buf[index++] = (byte) opcode();
H A DInsnLookupSwitch.java156 buf[index++] = (byte) opcode();
H A DInsnMultiDimArrayNew.java144 buf[index++] = (byte) opcode();
H A DInsnSingle.java52 return VMOp.ops[opcode()].nStackArgs();
56 return VMOp.ops[opcode()].nStackResults();
63 return VMOp.ops[opcode()].argTypes();
70 return VMOp.ops[opcode()].resultTypes();
74 switch (opcode()) {
93 out.println(offset() + " " + opName(opcode()));//NOI18N
97 buf[index] = (byte) opcode();
105 /* Construct an instruction. The opcode must be one which requires
269 throw new InsnError ("attempt to create an " + opName(opcode()) +//NOI18N
H A DInsnTableSwitch.java141 buf[index++] = (byte) opcode();
H A DInsnTargetOp.java58 return VMOp.ops[opcode()].nStackArgs();
62 return VMOp.ops[opcode()].nStackResults();
66 return VMOp.ops[opcode()].argTypes();
70 return VMOp.ops[opcode()].resultTypes();
96 out.println(offset() + " " + opName(opcode()) + " " + //NOI18N
101 buf[index++] = (byte) opcode();
103 if (opcode() == opc_goto_w || opcode() == opc_jsr_w)
110 if (opcode() == opc_goto_w || opcode()
[all...]
H A DVMOp.java47 /* The opcode value */
50 /* The name of the opcode */
68 * Return the opcode value
70 final public int opcode() { method in class:VMOp
75 * Return the opcode name
541 if (op.opcode() != i)
542 throw new InsnError ("bad opcode for " + i);//NOI18N
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DMethodAnnotater.java415 switch(insn.opcode()) {
578 if (dep != null && dep.opcode() == opc_aload_0 && !method.isStatic()) {
663 && dep.opcode() == opc_aload_0
745 && dep.opcode() == opc_aload_0
778 switch(insn.opcode()) {
813 int valueType = Insn.loadStoreDataType(insn.opcode());
822 switch(insn.opcode()) {
894 switch(insn.opcode()) {
1157 switch(insn.opcode()) {
1221 if (insn.opcode() !
[all...]

Completed in 109 milliseconds

12