Home
last modified time | relevance | path

Searched full:public (Results 1 – 25 of 18555) sorted by relevance

12345678910>>...743

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DTelephonyConstants.java19 public class TelephonyConstants {
23 public static final String WFC_MODE_WIFI_ONLY = "WIFI_ONLY";
24 public static final String WFC_MODE_CELLULAR_PREFERRED = "CELLULAR_PREFERRED";
25 public static final String WFC_MODE_WIFI_PREFERRED = "WIFI_PREFERRED";
26 public static final String WFC_MODE_DISABLED = "DISABLED";
27 public static final String WFC_MODE_UNKNOWN = "UNKNOWN";
32 public static final String VT_STATE_AUDIO_ONLY = "AUDIO_ONLY";
33 public static final String VT_STATE_TX_ENABLED = "TX_ENABLED";
34 public static final String VT_STATE_RX_ENABLED = "RX_ENABLED";
35 public static final String VT_STATE_BIDIRECTIONAL = "BIDIRECTIONAL";
[all …]
/external/dexmaker/src/dx/java/com/android/dx/io/
DOpcodes.java23 public final class Opcodes {
29 public static final int SPECIAL_FORMAT = -1;
35 public static final int NO_NEXT = -1;
38 public static final int MIN_VALUE = -1;
41 public static final int MAX_VALUE = 0xffff;
44 public static final int NOP = 0x00;
45 public static final int MOVE = 0x01;
46 public static final int MOVE_FROM16 = 0x02;
47 public static final int MOVE_16 = 0x03;
48 public static final int MOVE_WIDE = 0x04;
[all …]
DOpcodeInfo.java25 public final class OpcodeInfo {
40 public static final Info SPECIAL_FORMAT =
46 public static final Info PACKED_SWITCH_PAYLOAD =
51 public static final Info SPARSE_SWITCH_PAYLOAD =
56 public static final Info FILL_ARRAY_DATA_PAYLOAD =
62 public static final Info NOP =
66 public static final Info MOVE =
70 public static final Info MOVE_FROM16 =
74 public static final Info MOVE_16 =
78 public static final Info MOVE_WIDE =
[all …]
/external/proguard/src/proguard/classfile/
DClassConstants.java8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
28 public class ClassConstants
30 public static final String CLASS_FILE_EXTENSION = ".class";
32 public static final int MAGIC = 0xCAFEBABE;
34 public static final int CLASS_VERSION_1_0_MAJOR = 45;
35 public static final int CLASS_VERSION_1_0_MINOR = 3;
36 public static final int CLASS_VERSION_1_2_MAJOR = 46;
37 public static final int CLASS_VERSION_1_2_MINOR = 0;
[all …]
DJavaConstants.java8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
28 public interface JavaConstants
30 public static final String JAVA_FILE_EXTENSION = ".java";
32 public static final String CLASS_VERSION_1_0 = "1.0";
33 public static final String CLASS_VERSION_1_1 = "1.1";
34 public static final String CLASS_VERSION_1_2 = "1.2";
35 public static final String CLASS_VERSION_1_3 = "1.3";
36 public static final String CLASS_VERSION_1_4 = "1.4";
[all …]
/external/proguard/src/proguard/classfile/instruction/
DInstructionConstants.java8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
28 public interface InstructionConstants
30 public static final byte OP_NOP = 0;
31 public static final byte OP_ACONST_NULL = 1;
32 public static final byte OP_ICONST_M1 = 2;
33 public static final byte OP_ICONST_0 = 3;
34 public static final byte OP_ICONST_1 = 4;
35 public static final byte OP_ICONST_2 = 5;
[all …]
/external/proguard/src/proguard/gui/
Ddefault.pro7 -keepclasseswithmembers public class * {
8 public static void main(java.lang.String[]);
14 public static **[] values();
15 public static ** valueOf(java.lang.String);
24 public static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent);
34 -assumenosideeffects public class java.lang.System {
35 public static long currentTimeMillis();
37 public static int identityHashCode(java.lang.Object);
38 public static java.lang.SecurityManager getSecurityManager();
39 public static java.util.Properties getProperties();
[all …]
Dboilerplate.pro3 -keepclasseswithmembers public class * {
4 public static void main(java.lang.String[]);
8 -keep public class * extends java.applet.Applet
11 -keep public class * extends javax.servlet.Servlet
14 -keep public class * extends javax.microedition.midlet.MIDlet
17 -keep public class * extends javax.tv.xlet.Xlet
19 # Keep - Library. Keep all public and protected classes, fields, and methods.
20 -keep public class * {
21 public protected <fields>;
22 public protected <methods>;
[all …]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DImpl_RowSet.java45 public void addRowSetListener(RowSetListener theListener) { in addRowSetListener()
48 public void clearParameters() throws SQLException { in clearParameters()
51 public void execute() throws SQLException { in execute()
54 public String getCommand() { in getCommand()
58 public String getDataSourceName() { in getDataSourceName()
62 public boolean getEscapeProcessing() throws SQLException { in getEscapeProcessing()
66 public int getMaxFieldSize() throws SQLException { in getMaxFieldSize()
70 public int getMaxRows() throws SQLException { in getMaxRows()
74 public String getPassword() { in getPassword()
78 public int getQueryTimeout() throws SQLException { in getQueryTimeout()
[all …]
/external/javasqlite/src/main/java/SQLite/
DConstants.java10 …* perl -ne '$_ =~ s/#define\s+(SQLITE\S+)\s+([0-9x]+)/ public static final int $1 = $2;/ && pri…
12 public final class Constants {
14 public static final int drv_minor = 20100131;
16 public static final int SQLITE_VERSION_NUMBER = 3006022;
17 public static final int SQLITE_OK = 0; /* Successful result */
18 public static final int SQLITE_ERROR = 1; /* SQL error or missing database */
19 public static final int SQLITE_INTERNAL = 2; /* Internal logic error in SQLite */
20 public static final int SQLITE_PERM = 3; /* Access permission denied */
21 public static final int SQLITE_ABORT = 4; /* Callback routine requested an abort */
22 public static final int SQLITE_BUSY = 5; /* The database file is locked */
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
DR.java10 public final class R {
13 public static final class id {
14 public static final int time = nextId++;
15 public static final int title = nextId++;
16 public static final int subtitle = nextId++;
17 public static final int snippet_text = nextId++;
18 public static final int include_id = nextId++;
19 public static final int inner_text = nextId++;
20 public static final int map_view = nextId++;
21 public static final int true_checkbox = nextId++;
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPCommands.java31 public class JDWPCommands {
36 public class VirtualMachineCommandSet {
38 public static final byte CommandSetID = 1;
40 public static final byte VersionCommand = 1;
42 public static final byte ClassesBySignatureCommand = 2;
44 public static final byte AllClassesCommand = 3;
46 public static final byte AllThreadsCommand = 4;
48 public static final byte TopLevelThreadGroupsCommand = 5;
50 public static final byte DisposeCommand = 6;
52 public static final byte IDSizesCommand = 7;
[all …]
DJDWPConstants.java33 public class JDWPConstants {
38 public static class ThreadStatus {
40 public static final byte ZOMBIE = 0;
42 public static final byte RUNNING = 1;
44 public static final byte SLEEPING = 2;
46 public static final byte MONITOR = 3;
48 public static final byte WAIT = 4;
57 public static String getName(int status) { in getName()
78 public static class SuspendStatus {
80 public static final byte SUSPEND_STATUS_SUSPENDED = 1;
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DAnalysisAdapter.java8 public class AnalysisAdapter implements Analysis
13 public Object getIn(Node node) in getIn()
23 public void setIn(Node node, Object o) in setIn()
40 public Object getOut(Node node) in getOut()
50 public void setOut(Node node, Object o) in setOut()
67 public void caseStart(Start node) in caseStart()
72 public void caseAMultipleCommand(AMultipleCommand node) in caseAMultipleCommand()
77 public void caseACommentCommand(ACommentCommand node) in caseACommentCommand()
82 public void caseADataCommand(ADataCommand node) in caseADataCommand()
87 public void caseAVarCommand(AVarCommand node) in caseAVarCommand()
[all …]
/external/proguard/src/proguard/
DConfigurationConstants.java8 * under the terms of the GNU General Public License as published by the Free
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along
30 public static final String OPTION_PREFIX = "-";
31 public static final String AT_DIRECTIVE = "@";
32 public static final String INCLUDE_DIRECTIVE = "-include";
33 public static final String BASE_DIRECTORY_DIRECTIVE = "-basedirectory";
35 public static final String INJARS_OPTION = "-injars";
36 public static final String OUTJARS_OPTION = "-outjars";
37 public static final String LIBRARYJARS_OPTION = "-libraryjars";
[all …]
/external/v8/src/
Dinterface-descriptors.h85 public:
136 public:
147 public:
226 public: \
236 public:
239 class VoidDescriptor : public CallInterfaceDescriptor {
240 public:
246 class LoadDescriptor : public CallInterfaceDescriptor {
247 public:
258 class StoreDescriptor : public CallInterfaceDescriptor {
[all …]
/external/proguard/src/proguard/wtk/
Ddefault.pro9 -keep public class * extends javax.microedition.midlet.MIDlet
18 -assumenosideeffects public class java.lang.System {
19 public static native long currentTimeMillis();
21 public static native int identityHashCode(java.lang.Object);
22 public static java.lang.SecurityManager getSecurityManager();
23 public static java.util.Properties getProperties();
24 public static java.lang.String getProperty(java.lang.String);
25 public static java.lang.String getenv(java.lang.String);
26 public static native java.lang.String mapLibraryName(java.lang.String);
27 public static java.lang.String getProperty(java.lang.String,java.lang.String);
[all …]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DTokenTypes.java8 * and are considered to be in the public domain. As a result, a formal
33 public interface TokenTypes {
35 public static final int START = LexerCore.START;
37 public static final int END = LexerCore.END;
40 public static final int SIP = START + 3;
41 public static final int REGISTER = START + 4;
42 public static final int INVITE = START + 5;
43 public static final int ACK = START + 6;
44 public static final int BYE = START + 7;
45 public static final int OPTIONS = START + 8;
[all …]
/external/testng/src/test/java/org/testng/internal/
DMethodInstanceTest.java24 public class MethodInstanceTest {
26 public static void main(String[] args) { in main()
31 public void sortByIndexSatisfiesContract() { in sortByIndexSatisfiesContract()
87 public static class XmlClassStub extends XmlClass {
92 public XmlClassStub(String name, int index) { in XmlClassStub()
98 public String getName() { in getName()
103 public int getIndex() { in getIndex()
108 public List<XmlInclude> getIncludedMethods() { in getIncludedMethods()
113 public static class XmlTestStub extends XmlTest {
117 public XmlTestStub(String name) { in XmlTestStub()
[all …]
/external/conscrypt/src/main/java/org/conscrypt/
DNativeCrypto.java48 public final class NativeCrypto {
50 public static final boolean isBoringSSL;
61 public static native void ENGINE_load_dynamic(); in ENGINE_load_dynamic()
63 public static native long ENGINE_by_id(String id); in ENGINE_by_id()
65 public static native int ENGINE_add(long e); in ENGINE_add()
67 public static native int ENGINE_init(long e); in ENGINE_init()
69 public static native int ENGINE_finish(long e); in ENGINE_finish()
71 public static native int ENGINE_free(long e); in ENGINE_free()
73public static native long ENGINE_load_private_key(long e, String key_id) throws InvalidKeyExceptio… in ENGINE_load_private_key()
75 public static native String ENGINE_get_id(long engineRef); in ENGINE_get_id()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DMsgKey.java24 * This class is not a public API,
25 * It is used internally by serializer and is public,
32 public class MsgKey {
37 public static final String BAD_MSGKEY = "BAD_MSGKEY";
43 public static final String BAD_MSGFORMAT = "BAD_MSGFORMAT";
45 public static final String ER_RESOURCE_COULD_NOT_FIND =
47 public static final String ER_RESOURCE_COULD_NOT_LOAD =
49 public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO =
51 public static final String ER_INVALID_UTF16_SURROGATE =
53 public static final String ER_OIERROR = "ER_OIERROR";
[all …]
/external/guava/guava-testlib/test/com/google/common/testing/
DClassSanityTesterTest.java48 public class ClassSanityTesterTest extends TestCase {
52 public void testEqualsOnReturnValues_good() throws Exception { in testEqualsOnReturnValues_good()
56 public static class GoodEqualsFactory {
57 public static Object good(String a, int b, in good()
65 public Object badIgnored() { in badIgnored()
69 public int returnsInt() { in returnsInt()
73 public void voidMethod() { in voidMethod()
76 // non-public method ignored
82 public void testForAllPublicStaticMethods_noPublicStaticMethods() throws Exception { in testForAllPublicStaticMethods_noPublicStaticMethods()
87 "No public static methods that return java.lang.Object or subtype are found in " in testForAllPublicStaticMethods_noPublicStaticMethods()
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
DRobolectric.java78 public class Robolectric {
79 public static Application application;
81 public static <T> T newInstanceOf(Class<T> clazz) { in newInstanceOf()
85 public static Object newInstanceOf(String className) { in newInstanceOf()
96 public static void bindShadowClass(Class<?> shadowClass) { in bindShadowClass()
100 public static void bindDefaultShadowClasses() { in bindDefaultShadowClasses()
104 public static void bindShadowClasses(List<Class<?>> shadowClasses) { in bindShadowClasses()
116 public static void logMissingInvokedShadowMethods() { in logMissingInvokedShadowMethods()
120 public static List<Class<?>> getDefaultShadowClasses() { in getDefaultShadowClasses()
365 public static void resetStaticState() { in resetStaticState()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DParameterNames.java8 * and are considered to be in the public domain. As a result, a formal
38 public interface ParameterNames {
40 public static final String NEXT_NONCE = "nextnonce";
42 public static final String TAG = "tag";
44 public static final String USERNAME = "username";
46 public static final String URI = "uri";
48 public static final String DOMAIN = "domain";
50 public static final String CNONCE = "cnonce";
52 public static final String PASSWORD = "password";
54 public static final String RESPONSE = "response";
[all …]
/external/testng/src/main/java/org/testng/
DCommandLineArgs.java12 public class CommandLineArgs {
15 public List<String> suiteFiles = Lists.newArrayList();
17 public static final String LOG = "-log";
18 public static final String VERBOSE = "-verbose";
20 public Integer verbose;
22 public static final String GROUPS = "-groups";
24 public String groups;
26 public static final String EXCLUDED_GROUPS = "-excludegroups";
29 public String excludedGroups;
31 public static final String OUTPUT_DIRECTORY = "-d";
[all …]

12345678910>>...743