/packages/apps/Mms/src/com/android/mms/ |
SuggestionsProvider.java | 65 public boolean onCreate() { 214 public boolean onMove(int oldPosition, int newPosition) { 269 public boolean moveToPosition(int position) { 279 public boolean move(int offset) { 283 public boolean moveToFirst() { 287 public boolean moveToLast() { 291 public boolean moveToNext() { 295 public boolean moveToPrevious() { 327 public boolean commitUpdates() { 331 public boolean commitUpdates(Map<? extends Long, ? extends Map<String, Object>> values) [all...] |
/cts/tests/src/android/app/cts/ |
LocalActivityManagerStubActivity.java | 24 public static boolean sIsOnResumeCalled; 25 public static boolean sIsOnStopCalled; 26 public static boolean sIsOnPauseCalled; 27 public static boolean sIsOnDestroyCalled;
|
MockApplication.java | 25 public boolean isOnCreateCalled; 26 public boolean isConstructorCalled; 27 public boolean isOnConfigurationChangedCalled; 28 public boolean isOnLowMemoryCalled;
|
/cts/tests/src/android/content/cts/ |
MockSRSProvider.java | 24 public static boolean setupSuggestCalled; 25 private boolean mOnCreateCalled; 43 public boolean onCreate() { 48 public boolean isOnCreateCalled() {
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
CfOptions.java | 31 public boolean localInfo = false; 34 public boolean strictNameCheck = true; 37 public boolean optimize = false; 46 public boolean statistics;
|
/dalvik/dx/src/junit/runner/ |
LoadingTestCollector.java | 21 protected boolean isTestClass(String classFileName) { 42 boolean isTestClass(Class testClass) { 52 boolean hasSuiteMethod(Class testClass) { 61 boolean hasPublicConstructor(Class testClass) {
|
SimpleTestCollector.java | 14 protected boolean isTestClass(String classFileName) {
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicMarkableReference.java | 15 * [reference, boolean] pairs. 25 private final boolean bit; 26 ReferenceBooleanPair(T r, boolean i) { 40 public AtomicMarkableReference(V initialRef, boolean initialMark) { 58 public boolean isMarked() { 64 * Typical usage is {@code boolean[1] holder; ref = v.get(holder); }. 70 public V get(boolean[] markHolder) { 92 public boolean weakCompareAndSet(V expectedReference, 94 boolean expectedMark, 95 boolean newMark) [all...] |
/dalvik/libcore/luni/src/test/java/junit/runner/ |
LoadingTestCollector.java | 21 protected boolean isTestClass(String classFileName) { 42 boolean isTestClass(Class testClass) { 52 boolean hasSuiteMethod(Class testClass) { 61 boolean hasPublicConstructor(Class testClass) {
|
SimpleTestCollector.java | 14 protected boolean isTestClass(String classFileName) {
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
DERObject.java | 16 public abstract boolean equals(Object o);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/ |
Wrapper.java | 5 public void init(boolean forWrapping, CipherParameters param);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/ |
RSAKeyParameters.java | 12 boolean isPrivate,
|
/dalvik/libcore/sql/src/main/java/SQLite/ |
ProgressHandler.java | 16 public boolean progress();
|
/dalvik/libcore/sql/src/test/java/tests/support/ |
MockFunction.java | 25 public static boolean getAggValueCalled = false; 26 public static boolean functionCalled = false; 27 public static boolean stepCalled = false; 28 public static boolean lastStepCalled = false;
|
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
MyMessageDigest1.java | 33 public boolean runEngineReset = false; 34 public boolean runEngineDigest = false; 35 public boolean runEngineUpdate1 = false; 36 public boolean runEngineUpdate2 = false;
|
MyMessageDigest2.java | 33 public static boolean runEngineReset = false; 34 public static boolean runEngineDigest = false; 35 public static boolean runEngineUpdate1 = false; 36 public static boolean runEngineUpdate2 = false;
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
BoolStack.java | 25 * Simple stack for boolean values. 31 /** Array of boolean values */ 32 private boolean m_values[]; 58 m_values = new boolean[size]; 85 * @param val the boolean to be pushed onto this stack. 88 public final boolean push(boolean val) 104 public final boolean pop() 116 public final boolean popAndTop() 130 public final void setTop(boolean b [all...] |
/dalvik/tests/004-annotations/src/android/test/anno/ |
AnnoArrayField.java | 10 boolean[] zz() default {};
|
ExportedProperty.java | 10 boolean resolveId() default false;
|
/external/bluetooth/glib/gobject/ |
gmarshal.list | 6 # BOOLEAN for boolean types (gboolean) 23 # BOOL deprecated alias for BOOLEAN 27 VOID:BOOLEAN
|
/external/junit/src/junit/runner/ |
LoadingTestCollector.java | 22 protected boolean isTestClass(String classFileName) { 43 boolean isTestClass(Class testClass) { 53 boolean hasSuiteMethod(Class testClass) { 62 boolean hasPublicConstructor(Class testClass) {
|
SimpleTestCollector.java | 14 protected boolean isTestClass(String classFileName) {
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.8.1.js | 61 array[item++] = new TestCase( SECTION, "new Boolean(true) < new Boolean(true)", false, new Boolean(true) < new Boolean(true) ); 62 array[item++] = new TestCase( SECTION, "new Boolean(true) < new Boolean(false)", false, new Boolean(true) < new Boolean(false) ); 63 array[item++] = new TestCase( SECTION, "new Boolean(false) < new Boolean(true)", true, new Boolean(false) < new Boolean(true) ) [all...] |
11.8.2.js | 61 array[item++] = new TestCase( SECTION, "new Boolean(true) > new Boolean(true)", false, new Boolean(true) > new Boolean(true) ); 62 array[item++] = new TestCase( SECTION, "new Boolean(true) > new Boolean(false)", true, new Boolean(true) > new Boolean(false) ); 63 array[item++] = new TestCase( SECTION, "new Boolean(false) > new Boolean(true)", false, new Boolean(false) > new Boolean(true) ) [all...] |