Searched refs:sigch (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DSignature.java203 char sigch ;
206 switch (sigch = sig.charAt(sigp)) {
221 sb.append(sigch);
224 } while (sigch != ';');
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1706 char sigch = (char) signature.getByteAt(0);
1708 CellTypeState[] eff = sigcharToEffect(sigch, bci, temp);
1873 CellTypeState[] sigcharToEffect (char sigch, int bci, CellTypeState[] out) { argument
1875 if (sigch=='L' || sigch=='[') {
1880 if (sigch == 'J' || sigch == 'D' ) return vvCTS; // Long and Double
1881 if (sigch == 'V' ) return epsilonCTS; // Void
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1909 char sigch = (char)*(signature->base()); local
1911 CellTypeState *eff = sigchar_to_effect(sigch, bci, temp);
1967 CellTypeState *GenerateOopMap::sigchar_to_effect(char sigch, int bci, CellTypeState *out) { argument
1969 if (sigch=='L' || sigch=='[') {
1974 if (sigch == 'J' || sigch == 'D' ) return vvCTS; // Long and Double
1975 if (sigch == 'V' ) return epsilonCTS; // Void
H A DgenerateOopMap.hpp412 CellTypeState *sigchar_to_effect (char sigch, int bci, CellTypeState *out);

Completed in 47 milliseconds