HomeSort by relevance Sort by last modified time
    Searched defs:PRIVATE (Results 1 - 25 of 560) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/annotations/src/main/java/androidx/annotation/
VisibleForTesting.java 36 * If not specified, the intended visibility is assumed to be private.
45 int otherwise() default PRIVATE;
48 * The annotated element would have "private" visibility
50 int PRIVATE = 2; // Happens to be the same as Modifier.PRIVATE
53 * The annotated element would have "package private" visibility
  /frameworks/base/core/java/com/android/internal/annotations/
VisibleForTesting.java 27 * visibility should have been if it had not been made public or package-private for testing.
28 * The default is to consider the element private.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
41 /** The element should be considered private. */
42 PRIVATE
46 * Intended visibility if the element had not been made public or package-private for testing.
47 * If not specified, one should assume the element originally intended to be private.
49 Visibility visibility() default Visibility.PRIVATE;
  /frameworks/layoutlib/common/src/com/android/tools/layoutlib/annotations/
VisibleForTesting.java 27 * visibility should have been if it had not been made public or package-private for testing.
28 * The default is to consider the element private.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
41 /** The element should be considered private. */
42 PRIVATE
46 * Intended visibility if the element had not been made public or package-private for testing.
47 * If not specified, one should assume the element originally intended to be private.
49 Visibility visibility() default Visibility.PRIVATE;
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/annotations/
VisibleForTesting.java 27 * visibility should have been if it had not been made public or package-private for testing.
28 * The default is to consider the element private.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
41 /** The element should be considered private. */
42 PRIVATE
46 * Intended visibility if the element had not been made public or package-private for testing.
47 * If not specified, one should assume the element originally intended to be private.
49 Visibility visibility() default Visibility.PRIVATE;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_advsimd_Blur.S 18 #define PRIVATE(f) .text; .align 4; .type f,#function; f:
    [all...]
rsCpuIntrinsics_neon_Blur.S 18 #define PRIVATE(f) .text; .align 4; .type f,#function; f: .fnstart
    [all...]
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1TagClass.java 26 PRIVATE(3);
28 private final int value;
30 private Asn1TagClass(int value) {
39 case 3: return PRIVATE;
  /external/guava/guava/src/com/google/thirdparty/publicsuffix/
PublicSuffixType.java 27 /** private definition of a top-level domain */
28 PRIVATE(':', ','),
33 private final char innerNodeCode;
36 private final char leafNodeCode;
38 private PublicSuffixType(char innerNodeCode, char leafNodeCode) {
62 return isPrivate ? PRIVATE : ICANN;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
AccessSpecifier.java 34 PRIVATE("private"),
38 private String codeRepresenation;
Modifier.java 32 PRIVATE,
66 } else if (modifiers.contains(Modifier.PRIVATE)) {
67 return AccessSpecifier.PRIVATE;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
AccessSpecifier.java 34 PRIVATE("private"),
38 private String codeRepresenation;
Modifier.java 8 PRIVATE("private"),
20 private Modifier(String lib) {
40 } else if (modifiers.contains(Modifier.PRIVATE)) {
41 return AccessSpecifier.PRIVATE;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
AccessSpecifier.java 34 PRIVATE("private"),
38 private String codeRepresenation;
40 private AccessSpecifier(String codeRepresentation) {
  /external/libchrome/base/debug/
proc_maps_linux.h 24 PRIVATE = 1 << 3, // If set, region is private, otherwise it is shared.
34 // Bitmask of read/write/execute/private/shared permissions.
  /external/proguard/src/proguard/classfile/util/
AccessUtil.java 28 * defines access levels, in ascending order: <code>PRIVATE</code>,
35 public static final int PRIVATE = 0;
42 private static final int ACCESS_MASK =
51 * @return the corresponding access level: <code>PRIVATE</code>,
59 case ClassConstants.ACC_PRIVATE: return PRIVATE;
69 * @param accessLevel the access level: <code>PRIVATE</code>,
81 case PRIVATE: return ClassConstants.ACC_PRIVATE;
96 // A private class member should not be explicitly final.
  /external/swiftshader/src/Common/
Resource.hpp 25 PRIVATE, // Renderer access, shared by multiple threads if read-only
45 private:
  /external/turbine/java/com/google/turbine/model/
TurbineVisibility.java 24 PRIVATE(0, TurbineFlag.ACC_PRIVATE);
26 private final int level;
27 private final int flag;
48 return PRIVATE;
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1TagClass.java 23 PRIVATE,
  /libcore/ojluni/src/main/java/java/security/
KeyRep.java 60 private static final long serialVersionUID = -4757683898830641853L;
75 /** Type for private keys. */
76 PRIVATE,
80 private static final String PKCS8 = "PKCS#8";
81 private static final String X509 = "X.509";
82 private static final String RAW = "RAW";
85 * Either one of Type.SECRET, Type.PUBLIC, or Type.PRIVATE
89 private Type type;
96 private String algorithm;
103 private String format
    [all...]
  /external/turbine/java/com/google/turbine/tree/
TurbineModifier.java 29 PRIVATE(TurbineFlag.ACC_PRIVATE),
49 private final int flag;
  /frameworks/base/core/jni/include/android_runtime/
android_view_Surface.h 48 PRIVATE = 0x22,
  /frameworks/base/graphics/java/android/graphics/
ImageFormat.java 364 * <p>Private raw camera sensor image format, a single channel image with
682 * Android private opaque image format.
690 * CameraDevice} based on the device/framework private information. However,
706 public static final int PRIVATE = 0x22;
785 case PRIVATE:
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
MapModeTest.java 29 * java.nio.channels.FileChannel.MapMode#PRIVATE,READONLY,READWRITE
32 assertNotNull(FileChannel.MapMode.PRIVATE);
36 assertFalse(FileChannel.MapMode.PRIVATE
38 assertFalse(FileChannel.MapMode.PRIVATE
48 assertNotNull(FileChannel.MapMode.PRIVATE.toString());
  /libcore/ojluni/src/main/java/java/nio/channels/
FileChannel.java 291 private static final FileAttribute<?>[] NO_ATTRIBUTES = new FileAttribute[0];
    [all...]
  /system/core/libutils/include/utils/
Condition.h 55 PRIVATE = 0,
85 private:
97 inline Condition::Condition() : Condition(PRIVATE) {

Completed in 1252 milliseconds

1 2 3 4 5 6 7 8 91011>>