HomeSort by relevance Sort by last modified time
    Searched defs:PRIVATE (Results 1 - 25 of 37) 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;
  /development/tools/emulator/opengl/tests/event_injector/
EventInjector.cpp 19 #define PRIVATE EventInjectorPrivate
21 class PRIVATE
35 mPrivate = new PRIVATE(consolePort);
  /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.
  /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
  /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,
156 private:
  /external/javassist/src/main/javassist/compiler/
TokenId.java 49 int PRIVATE = 330;
  /frameworks/base/include/utils/
threads.h 224 PRIVATE = 0,
247 private:
251 private:
321 PRIVATE = 0,
340 private:
348 private:
352 private:
411 PRIVATE = 0,
427 private:
533 private
    [all...]
  /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...]
JavaParser.java 174 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "IDENTIFIER", "INTLITERAL", "LONGLITERAL", "FLOATLITERAL", "DOUBLELITERAL", "CHARLITERAL", "STRINGLITERAL", "TRUE", "FALSE", "NULL", "IntegerNumber", "LongSuffix", "HexPrefix", "HexDigit", "Exponent", "NonIntegerNumber", "FloatSuffix", "DoubleSuffix", "EscapeSequence", "UNICODECHAR", "UNICODEPART", "WS", "COMMENT", "LINE_COMMENT", "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "GOTO", "IF", "IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACKET", "RBRACKET", "SEMI", "COMMA", "DOT", "ELLIPSIS", "EQ", "BANG", "TILDE", "QUES", "COLON", "EQEQ", "AMPAMP", "BARBAR", "PLUSPLUS", "SUBSUB", "PLUS", "SUB", "STAR", "SLASH", "AMP", "BAR", "CARET", "PERCENT", "PLUSEQ", "SUBEQ", "STAREQ", "SLASHEQ", "AMPEQ", "BAREQ", "CARETEQ", "PERCENTEQ", "MONKEYS_AT", "BANGEQ", "GT", "LT", "IdentifierStart", "IdentifierPart", "SurrogateIdentifer"
233 public static final int PRIVATE=60;
598 if ( (LA4_0==IDENTIFIER||LA4_0==ABSTRACT||LA4_0==BOOLEAN||LA4_0==BYTE||(LA4_0>=CHAR && LA4_0<=CLASS)||LA4_0==DOUBLE||LA4_0==ENUM||LA4_0==FINAL||LA4_0==FLOAT||(LA4_0>=INT && LA4_0<=NATIVE)||(LA4_0>=PRIVATE && LA4_0<=PUBLIC)||(LA4_0>=SHORT && LA4_0<=STRICTFP)||LA4_0==SYNCHRONIZED||LA4_0==TRANSIENT||(LA4_0>=VOID && LA4_0<=VOLATILE)||LA4_0==SEMI||LA4_0==MONKEYS_AT||LA4_0==LT) ) {
    [all...]
  /prebuilt/common/tools-common/
tools-common-prebuilt.jar 
  /cts/tools/dx-tests/lib/
jasmin.jar 

Completed in 1691 milliseconds

1 2