Searched refs:cp (Results 1 - 25 of 412) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolKlass.cpp120 constantPoolOop cp = (constantPoolOop) obj; local
125 if (cp->tags() != NULL) {
127 oop* base = (oop*)cp->base();
128 for (int i = 0; i < cp->length(); i++) {
129 if (cp->is_pointer_entry(i)) {
135 MarkSweep::mark_and_push(cp->tags_addr());
136 MarkSweep::mark_and_push(cp->cache_addr());
137 MarkSweep::mark_and_push(cp->operands_addr());
138 MarkSweep::mark_and_push(cp->pool_holder_addr());
146 constantPoolOop cp local
173 constantPoolOop cp = (constantPoolOop) obj; local
203 constantPoolOop cp = (constantPoolOop) obj; local
231 constantPoolOop cp = (constantPoolOop) obj; local
269 constantPoolOop cp = (constantPoolOop) obj; local
290 constantPoolOop cp = (constantPoolOop) obj; local
311 constantPoolOop cp = constantPoolOop(obj); local
420 constantPoolOop cp = constantPoolOop(obj); local
447 constantPoolOop cp = constantPoolOop(obj); local
512 constantPoolOop cp = constantPoolOop(obj); local
519 constantPoolOop cp = constantPoolOop(obj); local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DPUSH.java77 * @param cp Constant pool
80 public PUSH(ConstantPoolGen cp, int value) { argument
88 instruction = new LDC(cp.addInteger(value));
92 * @param cp Constant pool
95 public PUSH(ConstantPoolGen cp, boolean value) { argument
100 * @param cp Constant pool
103 public PUSH(ConstantPoolGen cp, float value) { argument
111 instruction = new LDC(cp.addFloat(value));
115 * @param cp Constant pool
118 public PUSH(ConstantPoolGen cp, lon argument
131 PUSH(ConstantPoolGen cp, double value) argument
144 PUSH(ConstantPoolGen cp, String value) argument
155 PUSH(ConstantPoolGen cp, Number value) argument
172 PUSH(ConstantPoolGen cp, Character value) argument
180 PUSH(ConstantPoolGen cp, Boolean value) argument
[all...]
H A DFieldOrMethod.java85 ConstantPool cp = cpg.getConstantPool();
86 ConstantCP cmr = (ConstantCP)cp.getConstant(index);
87 ConstantNameAndType cnat = (ConstantNameAndType)cp.getConstant(cmr.getNameAndTypeIndex());
89 return ((ConstantUtf8)cp.getConstant(cnat.getSignatureIndex())).getBytes();
95 ConstantPool cp = cpg.getConstantPool();
96 ConstantCP cmr = (ConstantCP)cp.getConstant(index);
97 ConstantNameAndType cnat = (ConstantNameAndType)cp.getConstant(cmr.getNameAndTypeIndex());
98 return ((ConstantUtf8)cp.getConstant(cnat.getNameIndex())).getBytes();
104 ConstantPool cp = cpg.getConstantPool();
105 ConstantCP cmr = (ConstantCP)cp
[all...]
H A DStackInstruction.java82 public Type getType(ConstantPoolGen cp) { argument
/openjdk7/jdk/src/solaris/native/sun/net/dns/
H A DResolverConfigurationImpl.c61 char *cp = getenv("LOCALDOMAIN"); local
62 if (cp != NULL) {
63 jstring s = (*env)->NewStringUTF(env, cp);
95 char *cp; local
101 cp = strchr(buf, '.');
102 if (cp == NULL) {
105 s = (*env)->NewStringUTF(env, cp+1);
113 char *cp; local
118 cp = strchr(buf, '.');
119 if (cp !
[all...]
/openjdk7/jdk/test/java/nio/Buffer/
H A DLimitDirectMemory.sh47 echo "Testing: -XX:MaxDirectMemorySize=$* -cp ${TESTCLASSES} \
49 ${TESTJAVA}/bin/java -XX:MaxDirectMemorySize=$* -cp ${TESTCLASSES} \
64 runTest -XX:MaxDirectMemorySize=10 -cp ${TESTCLASSES} LimitDirectMemory true 10 1
65 runTest -XX:MaxDirectMemorySize=1k -cp ${TESTCLASSES} LimitDirectMemory true 1k 100
66 runTest -XX:MaxDirectMemorySize=10m -cp ${TESTCLASSES} LimitDirectMemory true 10m 10m
69 runTest -XX:MaxDirectMemorySize=65M -cp ${TESTCLASSES} \
73 runTest -cp ${TESTCLASSES} LimitDirectMemory false 10 1
74 runTest -Xmx64m -cp ${TESTCLASSES} LimitDirectMemory false 0 DEFAULT
75 runTest -Xmx64m -cp ${TESTCLASSES} LimitDirectMemory true 0 DEFAULT+1
78 runTest -XX:MaxDirectMemorySize=0 -cp
[all...]
/openjdk7/jdk/test/java/lang/ClassLoader/
H A DAssert.sh46 cp ${TESTSRC}/Assert.java .
47 cp -R ${TESTSRC}/package1 .
48 cp -R ${TESTSRC}/package2 .
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DSerialFieldTagImpl.java90 int cp;
91 for (; inx < len; inx += Character.charCount(cp)) {
92 cp = text.codePointAt(inx);
93 if (!Character.isWhitespace(cp)) {
101 cp = text.codePointAt(inx);
102 if (! Character.isJavaIdentifierStart(cp)) {
105 new String(Character.toChars(cp)), text);
109 for (inx += Character.charCount(cp); inx < len; inx += Character.charCount(cp)) {
110 cp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantObject.java71 public abstract Object getConstantValue(ConstantPool cp); argument
/openjdk7/jdk/test/java/lang/Character/
H A DCheckProp.java81 for (int cp = MIN_CODE_POINT; cp < MAX_CODE_POINT; cp++) {
82 int type = getType(cp);
83 if (isLowerCase(cp) !=
85 Arrays.binarySearch(otherLowercase, cp) >= 0))
88 System.err.printf("Wrong isLowerCase(U+%04x)\n", cp);
90 if (isUpperCase(cp) !=
92 Arrays.binarySearch(otherUppercase, cp) >= 0))
95 System.err.printf("Wrong isUpperCase(U+%04x)\n", cp);
[all...]
H A DCheckScript.java88 for (int cp = start; cp <= end; cp++) {
90 Character.UnicodeScript.of(cp);
93 "UnicodeScript failed: cp=" +
94 Integer.toHexString(cp) +
95 ", of(cp)=<" + script + "> but <" +
102 for (int cp = 0; cp < Character.MAX_CODE_POINT; cp
[all...]
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A Dsetcwd.sh36 cp ${TESTCLASSES}/SetCwd.class .
37 cp ${TESTCLASSES}/SetCwd.class foo
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6890943.sh38 cp ${TESTSRC}/Test6890943.java .
39 cp ${TESTSRC}/input6890943.txt .
40 cp ${TESTSRC}/output6890943.txt .
41 cp ${TESTSRC}/Test6890943.sh .
/openjdk7/jdk/test/java/lang/System/finalization/
H A DFinExit.sh29 x=`$TESTJAVA/bin/java -cp "$TESTCLASSES" FinExit | cut -c1`
/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineSetUp.sh55 cp ${TESTSRC}/Different_ExampleRedefine.java ExampleRedefine.java
56 cp ${TESTSRC}/Counter.java .
61 cp ${TESTSRC}/ExampleRedefine.java ExampleRedefine.java
62 cp ${TESTSRC}/Counter.java .
/openjdk7/jdk/test/java/rmi/reliability/benchmark/
H A DrunSerialBench.sh55 -cp $TESTCLASSES \
/openjdk7/jdk/test/sun/net/www/protocol/jar/
H A Dcopyin.sh30 cp $TESTSRC/$i $TESTCLASSES
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUTF_32Coder.java68 int cp;
71 cp = ((src.get() & 0xff) << 24) |
75 if (cp == BOM_BIG && expectedBO != LITTLE) {
78 } else if (cp == BOM_LITTLE && expectedBO != BIG) {
90 cp = getCP(src);
91 if (Character.isBmpCodePoint(cp)) {
95 dst.put((char) cp);
96 } else if (Character.isValidCodePoint(cp)) {
100 dst.put(Character.highSurrogate(cp));
101 dst.put(Character.lowSurrogate(cp));
121 put(int cp, ByteBuffer dst) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacterName.java63 int cp = 0;
69 cp = ((ba[cpOff++] & 0xff) << 16) |
73 cp++;
75 int hi = cp >> 8;
79 lookup[hi][cp&0xff] = (nameOff << 8) | len;
96 public static String get(int cp) { argument
101 if (lookup[cp>>8] == null ||
102 (off = lookup[cp>>8][cp&0xff]) == 0)
/openjdk7/jdk/test/java/io/File/
H A DListRoots.java42 String cp = f.getCanonicalPath();
44 if (cp.startsWith(rs[i].getPath())) break;
46 throw new Exception(cp + " does not have a recognized root");
H A DMacPathTest.sh39 export LC_ALL=en_US.UTF-8 ;${TESTJAVA}/bin/java -cp ${TESTCLASSES} MacPathTest
/openjdk7/hotspot/test/compiler/7070134/
H A DTest7070134.sh37 cp ${TESTSRC}/Stemmer.java .
38 cp ${TESTSRC}/words .
/openjdk7/jdk/test/java/util/ServiceLoader/
H A Dbasic.sh67 cp $TESTCLASSES/FooProvider$n.class $JARD
69 cp $TESTCLASSES/FooService.class $JARD
76 cp $TESTCLASSES/Load.class $TESTD
77 cp $TESTCLASSES/FooService.class $TESTD
78 cp $TESTCLASSES/FooProvider1.class $TESTD
94 cp="$1"; shift
95 if [ -z "$cp" ]; then cp="$TESTCLASSES"; else cp="$TESTCLASSES$SEP$cp"; f
[all...]
/openjdk7/jdk/test/java/nio/file/Path/
H A DMacPathTest.sh39 export LC_ALL=en_US.UTF-8; ${TESTJAVA}/bin/java -cp ${TESTCLASSES} MacPathTest
/openjdk7/jdk/test/sun/misc/Cleaner/
H A DexitOnThrow.sh42 if $TESTJAVA/bin/java -cp $TESTCLASSES ExitOnThrow; then

Completed in 212 milliseconds

1234567891011>>