OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypeUtils
(Results
1 - 25
of
66
) sorted by null
1
2
3
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Constants.java
29
TypeUtils
.parseSignature("void <clinit>()");
31
public static final Type TYPE_OBJECT_ARRAY =
TypeUtils
.parseType("Object[]");
32
public static final Type TYPE_CLASS_ARRAY =
TypeUtils
.parseType("Class[]");
33
public static final Type TYPE_STRING_ARRAY =
TypeUtils
.parseType("String[]");
35
public static final Type TYPE_OBJECT =
TypeUtils
.parseType("Object");
36
public static final Type TYPE_CLASS =
TypeUtils
.parseType("Class");
37
public static final Type TYPE_CLASS_LOADER =
TypeUtils
.parseType("ClassLoader");
38
public static final Type TYPE_CHARACTER =
TypeUtils
.parseType("Character");
39
public static final Type TYPE_BOOLEAN =
TypeUtils
.parseType("Boolean");
40
public static final Type TYPE_DOUBLE =
TypeUtils
.parseType("Double")
[
all
...]
VisibilityPredicate.java
28
pkg =
TypeUtils
.getPackageName(Type.getType(source));
40
return pkg.equals(
TypeUtils
.getPackageName(Type.getType(((Member)arg).getDeclaringClass())));
KeyFactory.java
56
TypeUtils
.parseSignature("String getName()");
58
TypeUtils
.parseSignature("Class getClass()");
60
TypeUtils
.parseSignature("int hashCode()");
62
TypeUtils
.parseSignature("boolean equals(Object)");
64
TypeUtils
.parseSignature("String toString()");
66
TypeUtils
.parseSignature("StringBuffer append(String)");
68
TypeUtils
.parseType("org.mockito.cglib.core.KeyFactory");
172
Type[] parameterTypes =
TypeUtils
.getTypes(newInstance.getParameterTypes());
184
TypeUtils
.parseConstructor(parameterTypes),
EmitUtils.java
27
TypeUtils
.parseConstructor("");
29
TypeUtils
.parseConstructor("Throwable");
32
TypeUtils
.parseSignature("String getName()");
34
TypeUtils
.parseSignature("int hashCode()");
36
TypeUtils
.parseSignature("boolean equals(Object)");
38
TypeUtils
.parseSignature("int length()");
40
TypeUtils
.parseSignature("char charAt(int)");
42
TypeUtils
.parseSignature("Class forName(String)");
44
TypeUtils
.parseSignature("long doubleToLongBits(double)");
46
TypeUtils
.parseSignature("int floatToIntBits(float)")
[
all
...]
ClassEmitter.java
83
TypeUtils
.toInternalNames(interfaces));
90
if (
TypeUtils
.isInterface(getAccess())) {
143
TypeUtils
.toInternalNames(exceptions));
144
if (sig.equals(Constants.SIG_STATIC) && !
TypeUtils
.isInterface(getAccess())) {
250
TypeUtils
.fromInternalName(superName),
251
TypeUtils
.fromInternalNames(interfaces),
275
TypeUtils
.fromInternalNames(exceptions));
CodeEmitter.java
28
TypeUtils
.parseSignature("boolean booleanValue()");
30
TypeUtils
.parseSignature("char charValue()");
32
TypeUtils
.parseSignature("long longValue()");
34
TypeUtils
.parseSignature("double doubleValue()");
36
TypeUtils
.parseSignature("float floatValue()");
38
TypeUtils
.parseSignature("int intValue()");
40
TypeUtils
.parseConstructor("");
42
TypeUtils
.parseConstructor("String");
80
localOffset =
TypeUtils
.isStatic(access) ? 0 : 1;
303
mv.visitInsn(
TypeUtils
.ICONST(i))
[
all
...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
DispatcherGenerator.java
30
TypeUtils
.parseType("org.mockito.cglib.proxy.Dispatcher");
32
TypeUtils
.parseType("org.mockito.cglib.proxy.ProxyRefDispatcher");
34
TypeUtils
.parseSignature("Object loadObject()");
36
TypeUtils
.parseSignature("Object loadObject(Object)");
47
if (!
TypeUtils
.isProtected(method.getModifiers())) {
FixedValueGenerator.java
26
TypeUtils
.parseType("org.mockito.cglib.proxy.FixedValue");
28
TypeUtils
.parseSignature("Object loadObject()");
NoOpGenerator.java
31
if (
TypeUtils
.isProtected(context.getOriginalModifiers(method)) &&
32
TypeUtils
.isPublic(method.getModifiers())) {
InvocationHandlerGenerator.java
29
TypeUtils
.parseType("org.mockito.cglib.proxy.InvocationHandler");
31
TypeUtils
.parseType("org.mockito.cglib.proxy.UndeclaredThrowableException");
33
TypeUtils
.parseType("java.lang.reflect.Method");
35
TypeUtils
.parseSignature("Object invoke(Object, java.lang.reflect.Method, Object[])");
MethodInterceptorGenerator.java
35
TypeUtils
.parseType("AbstractMethodError");
37
TypeUtils
.parseType("java.lang.reflect.Method");
39
TypeUtils
.parseType("org.mockito.cglib.core.ReflectUtils");
41
TypeUtils
.parseType("org.mockito.cglib.proxy.MethodProxy");
43
TypeUtils
.parseType("org.mockito.cglib.proxy.MethodInterceptor");
45
TypeUtils
.parseSignature("java.lang.reflect.Method[] getDeclaredMethods()");
47
TypeUtils
.parseSignature("Class getDeclaringClass()");
49
TypeUtils
.parseSignature("java.lang.reflect.Method[] findMethods(String[], java.lang.reflect.Method[])");
68
TypeUtils
.parseSignature("String toString()");
75
TypeUtils
.parseConstructor("String, String")
[
all
...]
LazyLoaderGenerator.java
28
TypeUtils
.parseSignature("Object loadObject()");
30
TypeUtils
.parseType("org.mockito.cglib.proxy.LazyLoader");
36
if (
TypeUtils
.isProtected(method.getModifiers())) {
MixinEmitter.java
32
TypeUtils
.parseConstructor("Object[]");
34
TypeUtils
.parseType("org.mockito.cglib.proxy.Mixin");
45
TypeUtils
.getTypes(getInterfaces(classes)),
/development/tools/apkcheck/src/com/android/apkcheck/
FieldInfo.java
45
mNameAndType = mName + ":" +
TypeUtils
.typeToDescriptor(mType);
54
String type =
TypeUtils
.ambiguousToBinaryName(mType, apiList);
MethodInfo.java
51
String sigType =
TypeUtils
.typeToDescriptor(humanType);
55
newSig.append(
TypeUtils
.typeToDescriptor(mReturn));
82
mReturn =
TypeUtils
.ambiguousToBinaryName(mReturn, apiList);
85
String fixed =
TypeUtils
.ambiguousToBinaryName(mParameters.get(i),
PackageInfo.java
59
String fixedName =
TypeUtils
.simpleClassNameToBinary(className);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedMethodUtil.java
39
import org.jf.dexlib2.util.
TypeUtils
;
47
String otherPackage =
TypeUtils
.getPackage(virtualMethod.getDefiningClass());
48
String thisPackage =
TypeUtils
.getPackage(type.getType());
63
if (!
TypeUtils
.canAccessClass(type.getType(), methodClassDef)) {
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
AddStaticInitTransformer.java
32
if (!
TypeUtils
.isStatic(info.getModifiers())) {
44
if (!
TypeUtils
.isInterface(getAccess())) {
FieldProviderTransformer.java
32
TypeUtils
.parseType("org.mockito.cglib.transform.impl.FieldProvider");
34
TypeUtils
.parseType("IllegalArgumentException");
36
TypeUtils
.parseSignature("Object getField(String)");
38
TypeUtils
.parseSignature("void setField(String, Object)");
40
TypeUtils
.parseSignature("void setField(int, Object)");
42
TypeUtils
.parseSignature("Object getField(int)");
44
TypeUtils
.parseSignature("Class[] getFieldTypes()");
46
TypeUtils
.parseSignature("String[] getFieldNames()");
52
if (!
TypeUtils
.isAbstract(access)) {
53
interfaces =
TypeUtils
.add(interfaces, FIELD_PROVIDER)
[
all
...]
InterceptFieldTransformer.java
33
TypeUtils
.parseType("org.mockito.cglib.transform.impl.InterceptFieldCallback");
35
TypeUtils
.parseType("org.mockito.cglib.transform.impl.InterceptFieldEnabled");
48
if (!
TypeUtils
.isInterface(access)) {
49
super.begin_class(version, access, className, superType,
TypeUtils
.add(interfaces, ENABLED), sourceFile);
76
if (!
TypeUtils
.isStatic(access)) {
107
if (!
TypeUtils
.isPrimitive(type)) {
132
if (!
TypeUtils
.isPrimitive(type)) {
148
Type towner =
TypeUtils
.fromInternalName(owner);
212
TypeUtils
.upperFirst(
TypeUtils
.getClassName(type))
[
all
...]
AddDelegateTransformer.java
32
TypeUtils
.parseSignature("void <init>(Object)");
52
if(!
TypeUtils
.isInterface(access)){
54
Type[] all =
TypeUtils
.add(interfaces,
TypeUtils
.getTypes(delegateIf));
108
Type[] exceptions =
TypeUtils
.getTypes(m.getExceptionTypes());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
TypeUtils.java
40
public final class
TypeUtils
{
73
private
TypeUtils
() {}
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClassEmitter.java
28
TypeUtils
.parseConstructor("Class");
30
TypeUtils
.parseSignature("int getIndex(String, Class[])");
34
TypeUtils
.parseSignature("String toString()");
36
TypeUtils
.parseSignature("int getIndex(Class[])");
38
TypeUtils
.parseSignature("Object invoke(int, Object, Object[])");
40
TypeUtils
.parseSignature("Object newInstance(int, Object[])");
42
TypeUtils
.parseSignature("int getMaxIndex()");
44
TypeUtils
.parseSignature("String getSignatureWithoutReturnType(String, Class[])");
46
TypeUtils
.parseType("org.mockito.cglib.reflect.FastClass");
48
TypeUtils
.parseType("IllegalArgumentException")
[
all
...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
ParallelSorterEmitter.java
27
TypeUtils
.parseType("org.mockito.cglib.util.ParallelSorter");
29
TypeUtils
.parseConstructor("Object[]");
33
TypeUtils
.parseSignature("void swap(int, int)");
74
Type component =
TypeUtils
.getComponentType(type);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BeanMapEmitter.java
28
TypeUtils
.parseType("org.mockito.cglib.beans.BeanMap");
30
TypeUtils
.parseType("org.mockito.cglib.beans.FixedKeySet");
32
TypeUtils
.parseConstructor("Object");
34
TypeUtils
.parseConstructor("String[]");
36
TypeUtils
.parseSignature("Object get(Object, Object)");
38
TypeUtils
.parseSignature("Object put(Object, Object, Object)");
40
TypeUtils
.parseSignature("java.util.Set keySet()");
44
TypeUtils
.parseSignature("Class getPropertyType(String)");
Completed in 665 milliseconds
1
2
3