Searched refs:isProtected (Results 1 - 25 of 28) sorted by relevance

12

/external/doclava/src/com/google/doclava/
H A DScoped.java22 boolean isProtected(); method in interface:Scoped
H A DMemberInfo.java24 boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal,
33 mIsProtected = isProtected;
81 public boolean isProtected() { method in class:MemberInfo
96 } else if (isProtected()) {
22 MemberInfo(String rawCommentText, String name, String signature, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DFieldInfo.java32 boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate,
36 super(rawCommentText, name, null, containingClass, realContainingClass, isPublic, isProtected,
47 isProtected(), isPackagePrivate(), isPrivate(), isFinal(), isStatic(), isTransient(),
336 } else if (isProtected()) {
31 FieldInfo(String name, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile, boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DClassInfo.java63 boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate,
71 isPublic, isProtected, isPackagePrivate, isPrivate,
83 boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate,
92 mIsProtected = isProtected;
195 public boolean isProtected() { method in class:ClassInfo
763 if (m.isProtected() && m.checkLevel()) {
801 if (m.isProtected() && m.checkLevel()) {
880 if (isProtected()) {
1018 if (ctor.isProtected()) {
1060 if (method.isProtected()) {
62 ClassInfo(ClassDoc cl, String rawCommentText, SourcePositionInfo position, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isStatic, boolean isInterface, boolean isAbstract, boolean isOrdinaryClass, boolean isException, boolean isError, boolean isEnum, boolean isAnnotation, boolean isFinal, boolean isIncluded, String name, String qualifiedName, String qualifiedTypeName, boolean isPrimitive) argument
82 initialize(String rawCommentText, SourcePositionInfo position, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isStatic, boolean isInterface, boolean isAbstract, boolean isOrdinaryClass, boolean isException, boolean isError, boolean isEnum, boolean isAnnotation, boolean isFinal, boolean isIncluded, String qualifiedTypeName, boolean isPrimitive, ArrayList<AnnotationInstanceInfo> annotations) argument
[all...]
H A DConverter.java227 .isPublic(), c.isProtected(), c.isPackagePrivate(), c.isPrivate(), c.isStatic(), c
341 Converter.obtainClass(m.containingClass()), m.isPublic(), m.isProtected(), m
362 Converter.obtainClass(m.containingClass()), m.isPublic(), m.isProtected(),
382 .obtainClass(m.containingClass()), m.isPublic(), m.isProtected(), m
422 .obtainClass(f.containingClass()), f.isPublic(), f.isProtected(), f.isPackagePrivate(), f
H A DMethodInfo.java242 newContainingClass, realContainingClass(), isPublic(), isProtected(),
253 boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal,
262 isProtected, isPackagePrivate, isPrivate,
567 if (isProtected()) {
251 MethodInfo(String rawCommentText, ArrayList<TypeInfo> typeParameters, String name, String signature, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isSynthetic, boolean isAbstract, boolean isSynchronized, boolean isNative, boolean isAnnotationElement, String kind, String flatSignature, MethodInfo overriddenMethod, TypeInfo returnType, ArrayList<ParameterInfo> parameters, ArrayList<ClassInfo> thrownExceptions, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DInfoBuilder.java597 modifiers.isPublic(), modifiers.isProtected(),
754 modifiers.isPublic(), modifiers.isProtected(),
1068 modifiers.isProtected(), modifiers.isPackagePrivate(),
1290 containingClass.isProtected(), containingClass.isPackagePrivate(),
1906 public boolean isProtected() { method in class:InfoBuilder.Modifiers
H A DStubs.java648 if (m.isPublic() || m.isProtected()) {
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DTextureManager.h56 bool isProtected(TextureToken);
65 bool isProtected; member in struct:WebCore::TextureManager::TextureInfo
H A DTextureManager.cpp73 bool TextureManager::isProtected(TextureToken token) function in class:WebCore::TextureManager
75 return token && hasTexture(token) && m_textures.get(token).isProtected;
81 ASSERT(!m_textures.get(token).isProtected);
83 info.isProtected = true;
90 it->second.isProtected = false;
101 if (info.isProtected)
162 info.isProtected = true;
H A DLayerTexture.h55 return m_textureManager->isProtected(m_token);
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java85 boolean isProtected = "protected".equals(visibility);
87 boolean isPackagePrivate = !isPublic && !isPrivate && !isProtected;
104 new ClassInfo(classDoc, rawCommentText, position, isPublic, isProtected,
131 boolean isProtected = "protected".equals(visibility);
133 boolean isPackagePrivate = !isPublic && !isPrivate && !isProtected;
152 realContainingClass, isPublic, isProtected, isPackagePrivate, isPrivate, isFinal,
176 boolean isProtected = visibility.equals("protected");
191 isProtected, isPackagePrivate, isPrivate, Boolean.valueOf(attributes.getValue("final")),
/external/javassist/src/main/javassist/bytecode/
H A DAccessFlag.java87 public static boolean isProtected(int accflags) { method in class:AccessFlag
/external/javassist/src/main/javassist/
H A DModifier.java67 public static boolean isProtected(int mod) { method in class:Modifier
H A DCtMember.java184 if (!visible && Modifier.isProtected(mod))
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DModifierTest.java93 * @tests java.lang.reflect.Modifier#isProtected(int)
96 // Test for method boolean java.lang.reflect.Modifier.isProtected(int)
97 assertTrue("PROTECTED returned false", Modifier.isProtected(ALL_FLAGS));
99 .isProtected(Modifier.PROTECTED));
101 .isProtected(Modifier.TRANSIENT));
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMockGenerator.java137 Modifier.isProtected(constructor.getModifiers())) {
266 if (Modifier.isPublic(modifiers) || Modifier.isProtected(modifiers)) {
397 && (Modifier.isPublic(modifiers) || Modifier.isProtected(modifiers));
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DAccessFlags.java207 public static boolean isProtected(int flags) { method in class:AccessFlags
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DClassTest.java398 assertFalse("default class is protected", Modifier.isProtected(dcm));
403 assertFalse("public class is protected", Modifier.isProtected(ocm));
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java224 else if (!Modifier.isProtected(mod)
/external/llvm/include/llvm/
H A DDebugInfo.h271 bool isProtected() const { function in class:llvm::DIType
512 /// isProtected - Return true if this subprogram has "protected"
514 bool isProtected() const { function in class:llvm::DISubprogram
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp827 if (SP.isProtected())
1495 if (DT.isProtected())
/external/jdiff/src/jdiff/
H A DRootDocToXML.java372 else if (ped.isProtected())
/external/llvm/lib/VMCore/
H A DDebugInfo.cpp1065 else if (isProtected())
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdi.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3935 milliseconds

12