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

1 2

  /sdk/common/src/com/android/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;
  /cts/tools/signature-tools/src/signature/converter/
Visibility.java 28 * <li><code>PRIVATE</code> all classes and members are included.
35 PUBLIC, PROTECTED, PACKAGE, PRIVATE;
  /frameworks/base/tools/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;
  /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.INTERNAL_ACC_PRIVATE: return PRIVATE;
69 * @param accessLevel the access level: <code>PRIVATE</code>,
81 case PRIVATE: return ClassConstants.INTERNAL_ACC_PRIVATE;
96 // A private class member should not be explicitly final.
  /frameworks/native/include/utils/
Condition.h 47 PRIVATE = 0,
63 private:
Mutex.h 45 PRIVATE = 0,
68 private:
72 private:
RWLock.h 45 PRIVATE = 0,
64 private:
72 private:
76 private:
  /sdk/emulator/opengl/tests/event_injector/
EventInjector.cpp 19 #define PRIVATE EventInjectorPrivate
21 class PRIVATE
35 mPrivate = new PRIVATE(consolePort);
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 25 PUBLIC("public"), PRIVATE("private"), PROTECTED("protected"), STATIC(
30 private final String printableName;
32 private Modifier(String printableName) {
  /libcore/luni/src/main/java/java/security/
KeyRep.java 36 private static final long serialVersionUID = -4757683898830641853L;
38 private final Type type;
40 private final String algorithm;
42 private final String format;
44 private byte[] encoded;
87 * <li> {@code Type.PRIVATE} | "PKCS#8" : returns a {@link PrivateKey}
128 case PRIVATE:
146 private void readObject(ObjectInputStream is)
167 * Type for private keys.
169 PRIVATE
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/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/luni/src/main/java/java/nio/channels/
FileChannel.java 87 * Private mapping mode (equivalent to copy on write).
89 public static final MapMode PRIVATE = new MapMode("PRIVATE");
102 private final String displayName;
105 * Private constructor prevents others creating new modes.
107 private MapMode(String displayName) {
255 * read/write and private. After mapping, changes made to memory or the file
    [all...]
  /external/javassist/src/main/javassist/
Modifier.java 32 public static final int PRIVATE = AccessFlag.PRIVATE;
56 * Returns true if the modifiers include the <tt>private</tt>
60 return (mod & PRIVATE) != 0;
73 * <tt>public</tt>, <tt>protected</tt>, or <tt>private</tt>.
76 return (mod & (PUBLIC | PRIVATE | PROTECTED)) == 0;
172 * Truns the public bit on. The protected and private bits are
176 return (mod & ~(PRIVATE | PROTECTED)) | PUBLIC;
184 return (mod & ~(PRIVATE | PUBLIC)) | PROTECTED;
188 * Truns the private bit on. The protected and private bits ar
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AccessFlag.java 24 public static final int PRIVATE = 0x0002;
47 * Truns the public bit on. The protected and private bits are
51 return (accflags & ~(PRIVATE | PROTECTED)) | PUBLIC;
59 return (accflags & ~(PRIVATE | PUBLIC)) | PROTECTED;
63 * Truns the private bit on. The protected and private bits are
67 return (accflags & ~(PROTECTED | PUBLIC)) | PRIVATE;
71 * Clears the public, protected, and private bits.
74 return (accflags & ~(PROTECTED | PUBLIC | PRIVATE));
92 * Returns true if the access flags include the private bit
    [all...]
  /external/libvpx/vp8/common/
type_aliases.h 27 #define PRIVATE static /* Used to declare & define module-local data */
  /external/quake/quake/src/QW/scitech/include/
debug.h 209 #define PRIVATE static
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
DEBUG.H 209 #define PRIVATE static
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
AccessFlags.java 36 PRIVATE(0x2, "private", true, true, true),
55 private int value;
56 private String accessFlagName;
57 private boolean validForClass;
58 private boolean validForMethod;
59 private boolean validForField;
62 private final static AccessFlags[] allFlags;
64 private static HashMap<String, AccessFlags> accessFlagsByName;
75 private AccessFlags(int value, String accessFlagName, boolean validForClass, boolean validForMethod
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Modifier.java 35 * The {@code int} value representing the {@code private}
38 public static final int PRIVATE = 0x2;
119 return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | FINAL | STRICT;
128 return PUBLIC | PROTECTED | PRIVATE;
137 return PUBLIC | PROTECTED | PRIVATE | STATIC | FINAL | TRANSIENT | VOLATILE;
146 return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | STRICT;
155 return PUBLIC | PROTECTED | PRIVATE | ABSTRACT | STATIC | FINAL | SYNCHRONIZED | NATIVE | STRICT;
212 * private} modifier.
217 * private} modifier, {@code false} otherwise
220 return ((modifiers & PRIVATE) != 0)
    [all...]
  /cts/tools/dasm/src/dasm/
sym.java 80 static final int PRIVATE = 43;
  /frameworks/base/tools/aidl/
AST.h 17 PRIVATE = 0x00000002,
167 private:
192 private:
  /external/javassist/src/main/javassist/compiler/
TokenId.java 49 int PRIVATE = 330;
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
TrustedCertificateStoreTest.java 38 private static final File DIR_TEMP = new File(System.getProperty("java.io.tmpdir"));
39 private static final File DIR_TEST = new File(DIR_TEMP, "test");
40 private static final File DIR_SYSTEM = new File(DIR_TEST, "system");
41 private static final File DIR_ADDED = new File(DIR_TEST, "added");
42 private static final File DIR_DELETED = new File(DIR_TEST, "removed");
44 private static X509Certificate CA1;
45 private static X509Certificate CA2;
47 private static KeyStore.PrivateKeyEntry PRIVATE;
48 private static X509Certificate[] CHAIN
    [all...]
  /external/tcpdump/
print-snmp.c 168 * Private ASN.1 types
171 const char *Private[] = {
224 * Ties together the preceding Universal, Application, Context, and Private
239 defineCLASS(Private),
240 #define PRIVATE 3
279 * private enterprises tree, and the experimental tree.
291 /* .iso.org.dod.internet.private.enterprises */
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 88 public static final int PRIVATE=60;
    [all...]

Completed in 1047 milliseconds

1 2