OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SYNTHETIC
(Results
1 - 17
of
17
) sorted by null
/cts/tools/dasm/src/dasm/
sym.java
15
static final int
SYNTHETIC
= 56;
ReservedWords.java
109
reserved_words.put("
synthetic
", new token(sym.
SYNTHETIC
));
parser.cup
75
ANNOTATION, ENUM, BRIDGE, VARARGS, STRICT,
SYNTHETIC
,
235
SYNTHETIC
{: access_val |= com.android.dx.rop.code.AccessFlags.ACC_SYNTHETIC; :}
/external/javassist/src/main/javassist/bytecode/
AccessFlag.java
37
public static final int
SYNTHETIC
= 0x1000;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java
76
//A
synthetic
accessor will be marked
synthetic
77
if ((encodedMethod.accessFlags & AccessFlags.
SYNTHETIC
.getValue()) == 0) {
87
//a
synthetic
method access should be either 2 or 3 instructions, depending on if the method returns
104
//a
synthetic
field access should be exactly 2 instructions. The set/put, and then the return
/libcore/luni/src/main/java/java/lang/reflect/
Modifier.java
96
public static final int
SYNTHETIC
= 0x1000;
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AccessFlags.java
49
SYNTHETIC
(0x1000, "
synthetic
", true, true, true),
/libcore/libart/src/main/java/java/lang/reflect/
AbstractMethod.java
97
return (artMethod.getAccessFlags() & Modifier.
SYNTHETIC
) != 0;
Field.java
108
* Indicates whether or not this field is
synthetic
.
110
* @return {@code true} if this field is
synthetic
, {@code false} otherwise
113
return (artField.getAccessFlags() & Modifier.
SYNTHETIC
) != 0;
[
all
...]
/libcore/libdvm/src/main/java/java/lang/reflect/
Constructor.java
256
* Indicates whether or not this constructor is
synthetic
(artificially
259
* @return {@code true} if this constructor is
synthetic
, {@code false}
264
return (mods & Modifier.
SYNTHETIC
) != 0;
Method.java
333
* Indicates whether or not this method is
synthetic
.
335
* @return {@code true} if this method is
synthetic
, {@code false} otherwise
339
return (modifiers & Modifier.
SYNTHETIC
) != 0;
Field.java
142
* Indicates whether or not this field is
synthetic
.
144
* @return {@code true} if this field is
synthetic
, {@code false} otherwise
148
return (flags & Modifier.
SYNTHETIC
) != 0;
[
all
...]
/libcore/libart/src/main/java/java/lang/
Class.java
698
// return a non-
synthetic
method in such situations. We may
699
// still return a
synthetic
method to handle situations like
702
int skipModifiers = Modifier.MIRANDA | Modifier.
SYNTHETIC
;
741
// so this potential result must be
synthetic
.
[
all
...]
/dalvik/dx/etc/
jasmin.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar
/external/robolectric/lib/main/
javassist-3.14.0-GA.jar
Completed in 106 milliseconds