OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cst
(Results
101 - 125
of
219
) sorted by null
1
2
3
4
5
6
7
8
9
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
ValueEncoder.java
21
import com.android.dx.rop.
cst
.Constant;
22
import com.android.dx.rop.
cst
.CstAnnotation;
23
import com.android.dx.rop.
cst
.CstArray;
24
import com.android.dx.rop.
cst
.CstBoolean;
25
import com.android.dx.rop.
cst
.CstByte;
26
import com.android.dx.rop.
cst
.CstChar;
27
import com.android.dx.rop.
cst
.CstDouble;
28
import com.android.dx.rop.
cst
.CstEnumRef;
29
import com.android.dx.rop.
cst
.CstFieldRef;
30
import com.android.dx.rop.
cst
.CstFloat
281
Constant
cst
= list.get(i);
local
[
all
...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form21h.java
23
import com.android.dexgen.rop.
cst
.Constant;
24
import com.android.dexgen.rop.
cst
.CstLiteralBits;
80
Constant
cst
= ci.getConstant();
local
82
if (!(
cst
instanceof CstLiteralBits)) {
86
CstLiteralBits cb = (CstLiteralBits)
cst
;
/dalvik/dexgen/src/com/android/dexgen/rop/code/
PlainInsn.java
19
import com.android.dexgen.rop.
cst
.Constant;
112
Constant
cst
= (Constant) lastType;
local
126
getResult(), newSources,
cst
);
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstArray.java
17
package com.android.dexgen.rop.
cst
;
CstInteger.java
17
package com.android.dexgen.rop.
cst
;
CstMemberRef.java
17
package com.android.dexgen.rop.
cst
;
CstNat.java
17
package com.android.dexgen.rop.
cst
;
/dalvik/dx/src/com/android/dx/dex/code/form/
Form11n.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
78
Constant
cst
= ci.getConstant();
local
80
if (!(
cst
instanceof CstLiteralBits)) {
84
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form21c.java
24
import com.android.dx.rop.
cst
.Constant;
25
import com.android.dx.rop.
cst
.CstFieldRef;
26
import com.android.dx.rop.
cst
.CstString;
27
import com.android.dx.rop.
cst
.CstType;
107
Constant
cst
= ci.getConstant();
local
113
return (
cst
instanceof CstType) ||
114
(
cst
instanceof CstFieldRef) ||
115
(
cst
instanceof CstString);
Form21h.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
81
Constant
cst
= ci.getConstant();
local
83
if (!(
cst
instanceof CstLiteralBits)) {
87
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form21s.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
77
Constant
cst
= ci.getConstant();
local
79
if (!(
cst
instanceof CstLiteralBits)) {
83
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form22b.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
79
Constant
cst
= ci.getConstant();
local
81
if (!(
cst
instanceof CstLiteralBits)) {
85
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form22s.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
79
Constant
cst
= ci.getConstant();
local
81
if (!(
cst
instanceof CstLiteralBits)) {
85
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form31c.java
24
import com.android.dx.rop.
cst
.Constant;
25
import com.android.dx.rop.
cst
.CstFieldRef;
26
import com.android.dx.rop.
cst
.CstString;
27
import com.android.dx.rop.
cst
.CstType;
106
Constant
cst
= ci.getConstant();
local
108
return (
cst
instanceof CstType) ||
109
(
cst
instanceof CstFieldRef) ||
110
(
cst
instanceof CstString);
Form3rc.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstMethodRef;
25
import com.android.dx.rop.
cst
.CstType;
76
Constant
cst
= ci.getConstant();
local
82
if (!((
cst
instanceof CstMethodRef) ||
83
(
cst
instanceof CstType))) {
/dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java
19
import com.android.dx.rop.
cst
.Constant;
20
import com.android.dx.rop.
cst
.CstInteger;
113
Constant
cst
= (Constant) firstType;
local
116
newSources,
cst
);
118
newSources,
cst
);
123
Constant
cst
= (Constant) lastType;
local
131
if (opcode == RegOps.SUB &&
cst
instanceof CstInteger) {
133
cst
= CstInteger.make(-((CstInteger)
cst
).getValue());
135
newRop = Rops.ropFor(opcode, getResult(), newSources,
cst
);
[
all
...]
/dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java
17
package com.android.dx.rop.
cst
;
CstInteger.java
17
package com.android.dx.rop.
cst
;
CstMemberRef.java
17
package com.android.dx.rop.
cst
;
CstNat.java
17
package com.android.dx.rop.
cst
;
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_cl.c
264
OCSP_CERTSTATUS *
cst
;
local
266
cst
= single->certStatus;
267
ret =
cst
->type;
270
OCSP_REVOKEDINFO *rev =
cst
->value.revoked;
ocsp_prn.c
189
OCSP_CERTSTATUS *
cst
= NULL;
local
237
cst
= single->certStatus;
239
OCSP_cert_status_str(
cst
->type)) <= 0)
241
if (
cst
->type == V_OCSP_CERTSTATUS_REVOKED)
243
rev =
cst
->value.revoked;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form11n.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
79
Constant
cst
= ci.getConstant();
local
81
if (!(
cst
instanceof CstLiteralBits)) {
85
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form21c.java
24
import com.android.dx.rop.
cst
.Constant;
25
import com.android.dx.rop.
cst
.CstFieldRef;
26
import com.android.dx.rop.
cst
.CstString;
27
import com.android.dx.rop.
cst
.CstType;
108
Constant
cst
= ci.getConstant();
local
114
return (
cst
instanceof CstType) ||
115
(
cst
instanceof CstFieldRef) ||
116
(
cst
instanceof CstString);
Form21h.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
82
Constant
cst
= ci.getConstant();
local
84
if (!(
cst
instanceof CstLiteralBits)) {
88
CstLiteralBits cb = (CstLiteralBits)
cst
;
Completed in 136 milliseconds
1
2
3
4
5
6
7
8
9