OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cst
(Results
126 - 150
of
219
) sorted by null
1
2
3
4
5
6
7
8
9
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form21s.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
;
Form22b.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
80
Constant
cst
= ci.getConstant();
local
82
if (!(
cst
instanceof CstLiteralBits)) {
86
CstLiteralBits cb = (CstLiteralBits)
cst
;
Form22s.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
80
Constant
cst
= ci.getConstant();
local
82
if (!(
cst
instanceof CstLiteralBits)) {
86
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;
107
Constant
cst
= ci.getConstant();
local
109
return (
cst
instanceof CstType) ||
110
(
cst
instanceof CstFieldRef) ||
111
(
cst
instanceof CstString);
Form32s.java
23
import com.android.dx.rop.
cst
.Constant;
24
import com.android.dx.rop.
cst
.CstLiteralBits;
84
Constant
cst
= ci.getConstant();
local
86
if (!(
cst
instanceof CstLiteralBits)) {
90
CstLiteralBits cb = (CstLiteralBits)
cst
;
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))) {
Form41c.java
24
import com.android.dx.rop.
cst
.Constant;
25
import com.android.dx.rop.
cst
.CstFieldRef;
26
import com.android.dx.rop.
cst
.CstType;
110
Constant
cst
= ci.getConstant();
local
112
return (
cst
instanceof CstType) ||
113
(
cst
instanceof CstFieldRef);
Form5rc.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;
79
Constant
cst
= ci.getConstant();
local
81
if (!((
cst
instanceof CstMethodRef) ||
82
(
cst
instanceof CstType))) {
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java
23
import com.android.dx.rop.
cst
.Constant;
24
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
...]
/external/dexmaker/src/dx/java/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
;
CstType.java
17
package com.android.dx.rop.
cst
;
127
CstType
cst
= interns.get(type);
local
129
if (
cst
== null) {
130
cst
= new CstType(type);
131
interns.put(type,
cst
);
134
return
cst
;
/external/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;
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstType.java
17
package com.android.dexgen.rop.
cst
;
126
CstType
cst
= interns.get(type);
local
128
if (
cst
== null) {
129
cst
= new CstType(type);
130
interns.put(type,
cst
);
133
return
cst
;
/dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java
17
package com.android.dx.cf.
cst
;
19
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Class;
20
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Double;
21
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Fieldref;
22
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Float;
23
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Integer;
24
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_InterfaceMethodref;
25
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Long;
26
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_Methodref;
27
import static com.android.dx.cf.
cst
.ConstantTags.CONSTANT_NameAndType
156
Constant
cst
= pool.getOrNull(i);
local
251
Constant
cst
= pool.getOrNull(idx);
local
[
all
...]
/dalvik/dx/src/com/android/dx/rop/cst/
CstType.java
17
package com.android.dx.rop.
cst
;
126
CstType
cst
= interns.get(type);
local
128
if (
cst
== null) {
129
cst
= new CstType(type);
130
interns.put(type,
cst
);
133
return
cst
;
/dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java
21
import com.android.dexgen.rop.
cst
.*;
122
Constant
cst
= values.get(i);
local
123
out.writeByte((byte) ((CstLiteral32)
cst
).getIntBits());
129
Constant
cst
= values.get(i);
local
130
out.writeShort((short) ((CstLiteral32)
cst
).getIntBits());
136
Constant
cst
= values.get(i);
local
137
out.writeInt(((CstLiteral32)
cst
).getIntBits());
143
Constant
cst
= values.get(i);
local
144
out.writeLong(((CstLiteral64)
cst
).getLongBits());
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form35c.java
24
import com.android.dexgen.rop.
cst
.Constant;
25
import com.android.dexgen.rop.
cst
.CstMethodRef;
26
import com.android.dexgen.rop.
cst
.CstType;
86
Constant
cst
= ci.getConstant();
local
87
if (!((
cst
instanceof CstMethodRef) ||
88
(
cst
instanceof CstType))) {
Form3rc.java
24
import com.android.dexgen.rop.
cst
.Constant;
25
import com.android.dexgen.rop.
cst
.CstMethodRef;
26
import com.android.dexgen.rop.
cst
.CstType;
115
Constant
cst
= ci.getConstant();
local
116
if (!((
cst
instanceof CstMethodRef) ||
117
(
cst
instanceof CstType))) {
/dalvik/dx/src/com/android/dx/dex/code/
ArrayData.java
22
import com.android.dx.rop.
cst
.Constant;
23
import com.android.dx.rop.
cst
.CstLiteral32;
24
import com.android.dx.rop.
cst
.CstLiteral64;
25
import com.android.dx.rop.
cst
.CstType;
124
Constant
cst
= values.get(i);
local
125
out.writeByte((byte) ((CstLiteral32)
cst
).getIntBits());
131
Constant
cst
= values.get(i);
local
132
out.writeShort((short) ((CstLiteral32)
cst
).getIntBits());
138
Constant
cst
= values.get(i);
local
139
out.writeInt(((CstLiteral32)
cst
).getIntBits())
145
Constant
cst
= values.get(i);
local
[
all
...]
/dalvik/dx/src/com/android/dx/dex/code/form/
Form35c.java
24
import com.android.dx.rop.
cst
.Constant;
25
import com.android.dx.rop.
cst
.CstMethodRef;
26
import com.android.dx.rop.
cst
.CstType;
87
Constant
cst
= ci.getConstant();
local
88
if (!((
cst
instanceof CstMethodRef) ||
89
(
cst
instanceof CstType))) {
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/radeon/drm/
radeon_drm_cs.h
68
struct radeon_cs_context *
cst
;
member in struct:radeon_drm_cs
Completed in 296 milliseconds
1
2
3
4
5
6
7
8
9