Home
last modified time | relevance | path

Searched refs:isSynthetic (Results 1 – 25 of 78) sorted by relevance

1234

/external/doclava/src/com/google/doclava/
DMemberInfo.java25 boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position, in MemberInfo() argument
38 mIsSynthetic = isSynthetic; in MemberInfo()
130 public boolean isSynthetic() { in isSynthetic() method in MemberInfo
DFieldInfo.java37 boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, in FieldInfo() argument
40 …isPackagePrivate, isPrivate, isFinal, isStatic, isSynthetic, chooseKind(isFinal, isStatic, constan… in FieldInfo()
54 isVolatile(), isSynthetic(), mType, getRawCommentText(), mConstantValue, position(), in cloneForClass()
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DInstanceField.java80 public boolean isSynthetic() { in isSynthetic() method in InstanceField
81 return field.isSynthetic(); in isSynthetic()
/external/oj-libjdwp/src/share/back/
DReferenceTypeImpl.c144 jboolean isSynthetic; in writeMethodInfo() local
146 error = isMethodSynthetic(method, &isSynthetic); in writeMethodInfo()
164 if (isSynthetic) { in writeMethodInfo()
353 jboolean isSynthetic; in writeFieldInfo() local
356 error = isFieldSynthetic(clazz, fieldID, &isSynthetic); in writeFieldInfo()
373 if (isSynthetic) { in writeFieldInfo()
/external/guava/guava/src/com/google/common/reflect/
DElement.java95 public final boolean isSynthetic() { in isSynthetic() method in Element
96 return member.isSynthetic(); in isSynthetic()
/external/guava/android/guava/src/com/google/common/reflect/
DElement.java95 public final boolean isSynthetic() { in isSynthetic() method in Element
96 return member.isSynthetic(); in isSynthetic()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DAccessFlags.java188 public final void isSynthetic(final boolean flag) { in isSynthetic() method in AccessFlags
192 public final boolean isSynthetic() { in isSynthetic() method in AccessFlags
DMethodParameter.java86 public boolean isSynthetic() { in isSynthetic() method in MethodParameter
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DTypeComponent.java129 boolean isSynthetic(); in isSynthetic() method
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_reflectionmodel_ReflectionClassAdapter.txt57 …Line 127) Arrays.stream(clazz.getDeclaredMethods()).filter(m -> !m.isSynthetic() && !m.isBridge())…
58 …Line 127) Arrays.stream(clazz.getDeclaredMethods()).filter(m -> !m.isSynthetic() && !m.isBridge())…
59 …Line 127) Arrays.stream(clazz.getDeclaredMethods()).filter(m -> !m.isSynthetic() && !m.isBridge())…
62 Line 128) m.isSynthetic() ==> java.lang.reflect.Method.isSynthetic()
Dcom_github_javaparser_symbolsolver_reflectionmodel_ReflectionMethodDeclaration.txt1 Line 42) method.isSynthetic() ==> java.lang.reflect.Method.isSynthetic()
Dcom_github_javaparser_symbolsolver_reflectionmodel_ReflectionMethodResolutionLogic.txt5 Line 51) method.isSynthetic() ==> java.lang.reflect.Method.isSynthetic()
36 Line 88) method.isSynthetic() ==> java.lang.reflect.Method.isSynthetic()
/external/desugar/java/com/google/devtools/build/android/desugar/io/
DBitFlags.java45 public static boolean isSynthetic(int access) { in isSynthetic() method in BitFlags
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
DReflectiveTypeFinder.java59 && !method.isSynthetic(); in canObtainExpectedTypeFrom()
/external/junit/src/main/java/org/junit/internal/matchers/
DTypeSafeMatcher.java45 && !method.isSynthetic(); in isMatchesSafelyMethod()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionMethodResolutionLogic.java51 …if (method.isBridge() || method.isSynthetic() || !method.getName().equals(name)|| !staticOnlyCheck… in solveMethod()
88 if (method.getName().equals(name) && !method.isBridge() && !method.isSynthetic()) { in solveMethodAsUsage()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionMethodResolutionLogic.java51 …if (method.isBridge() || method.isSynthetic() || !method.getName().equals(name)|| !staticOnlyCheck… in solveMethod()
88 if (method.getName().equals(name) && !method.isBridge() && !method.isSynthetic()) { in solveMethodAsUsage()
DReflectionClassAdapter.java128 .filter(m -> !m.isSynthetic() && !m.isBridge()) in getDeclaredMethods()
180 .filter(m -> !m.isSynthetic()) in getConstructors()
/external/testng/src/main/java/org/testng/internal/annotations/
DAnnotationHelper.java228 boolean isSynthetic = m.isSynthetic(); in findMethodsWithAnnotation()
229 …if ((isPublic && hasClassAnnotation && !isSynthetic && (! hasTestNGAnnotation)) || hasMethodAnnota… in findMethodsWithAnnotation()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DTypeComponentImpl.java105 public boolean isSynthetic() { in isSynthetic() method in TypeComponentImpl
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javassistmodel/
DJavassistEnumDeclaration.java172 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
174 …if (method.getName().equals(name) && !isSynthetic && isNotBridge && staticOnlyCheck.test(method)) { in solveMethod()
DJavassistInterfaceDeclaration.java109 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
111 …if (method.getName().equals(name) && !isSynthetic && isNotBridge && staticOnlyCheck.test(method)) { in solveMethod()
/external/emma/core/java12/com/vladium/jcd/cls/
DField_info.java119 public boolean isSynthetic () in isSynthetic() method in Field_info
/external/guice/core/src/com/google/inject/internal/
DProviderMethodsModule.java136 && !method.isSynthetic()) { in getProviderMethods()
182 if (method.isBridge() || method.isSynthetic()) { in getAnnotation()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
DJavassistEnumDeclaration.java182 … boolean isSynthetic = method.getMethodInfo().getAttribute(SyntheticAttribute.tag) != null; in solveMethod()
184 …if (method.getName().equals(name) && !isSynthetic && isNotBridge && staticOnlyCheck.test(method)) { in solveMethod()

1234