OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getIntBits
(Results
26 - 50
of
62
) sorted by null
1
2
3
/dalvik/dx/src/com/android/dx/rop/cst/
CstLiteral64.java
78
public final int
getIntBits
() {
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstBoolean.java
97
return (
getIntBits
() == 0) ? false : true;
CstKnownNull.java
85
// See comment in
getIntBits
().
96
public int
getIntBits
() {
CstLiteral32.java
78
public final int
getIntBits
() {
CstLiteral64.java
78
public final int
getIntBits
() {
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form11n.java
85
return cb.fitsInInt() && signedFitsInNibble(cb.
getIntBits
());
99
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form21s.java
84
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
98
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22b.java
86
return cb.fitsInInt() && signedFitsInByte(cb.
getIntBits
());
100
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22s.java
86
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
100
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form21h.java
90
int bits = cb.
getIntBits
();
113
bits = (short) (cb.
getIntBits
() >>> 16);
Form31i.java
96
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
/dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java
123
out.writeByte((byte) ((CstLiteral32) cst).
getIntBits
());
130
out.writeShort((short) ((CstLiteral32) cst).
getIntBits
());
137
out.writeInt(((CstLiteral32) cst).
getIntBits
());
/dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java
125
out.writeByte((byte) ((CstLiteral32) cst).
getIntBits
());
132
out.writeShort((short) ((CstLiteral32) cst).
getIntBits
());
139
out.writeInt(((CstLiteral32) cst).
getIntBits
());
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
ArrayData.java
123
out.writeByte((byte) ((CstLiteral32) cst).
getIntBits
());
130
out.writeShort((short) ((CstLiteral32) cst).
getIntBits
());
137
out.writeInt(((CstLiteral32) cst).
getIntBits
());
/dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java
86
return cb.fitsInInt() && signedFitsInNibble(cb.
getIntBits
());
104
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form21h.java
91
int bits = cb.
getIntBits
();
118
bits = (short) (cb.
getIntBits
() >>> 16);
Form21s.java
85
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
103
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22b.java
87
return cb.fitsInInt() && signedFitsInByte(cb.
getIntBits
());
106
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22s.java
87
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
106
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11n.java
87
return cb.fitsInInt() && signedFitsInNibble(cb.
getIntBits
());
105
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form21h.java
92
int bits = cb.
getIntBits
();
119
bits = (short) (cb.
getIntBits
() >>> 16);
Form21s.java
86
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
104
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22b.java
88
return cb.fitsInInt() && signedFitsInByte(cb.
getIntBits
());
107
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form22s.java
88
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
107
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Form32s.java
92
return cb.fitsInInt() && signedFitsInShort(cb.
getIntBits
());
111
((CstLiteralBits) ((CstInsn) insn).getConstant()).
getIntBits
();
Completed in 838 milliseconds
1
2
3