HomeSort by relevance Sort by last modified time
    Searched refs:EMPTY (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
hash_line.c 9 #define EMPTY
10 EMPTY #
include-directive2.c 9 #define EMPTY
10 #include <limits.h> EMPTY
11 #include HEADER EMPTY
17 #include <> // expected-error {{empty filename}}
line-directive.c 20 # 42 "foo" 2 // expected-error {{invalid line marker flag '2': cannot pop empty include stack}}
23 # 42 "foo" 2 3 4 // expected-error {{invalid line marker flag '2': cannot pop empty include stack}}
74 #define EMPTY()
75 #line 2 "foo.c" EMPTY( )
output_paste_avoid.cpp 19 #define EMPTY
21 D: +PLUS -EMPTY- PLUS+ f(=)
_Pragma-in-macro-arg.c 9 #define EMPTY(x)
10 #define INACTIVE(x) EMPTY(x)
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapListTest.java 57 * Test for {@link ImapList#EMPTY}.
60 assertTrue(ImapList.EMPTY.isEmpty());
65 ImapList list = buildList(ImapList.EMPTY, ABC, LIST_1, ImapString.EMPTY);
91 // Make sure won't crash with empty list
92 assertFalse(ImapList.EMPTY.is(0, "abc"));
96 ImapList list = buildList(ImapList.EMPTY, STRING_1, LIST_1, ImapString.EMPTY);
98 assertElement(ImapList.EMPTY, list.getElementOrNone(0));
101 assertElement(ImapString.EMPTY, list.getElementOrNone(3))
    [all...]
ImapStringTest.java 47 assertTrue(ImapString.EMPTY.isEmpty());
48 assertEquals("", ImapString.EMPTY.getString());
49 assertEquals("", Utility.fromAscii(IOUtils.toByteArray(ImapString.EMPTY.getAsStream())));
50 assertFalse(ImapString.EMPTY.isNumber());
51 assertFalse(ImapString.EMPTY.isDate());
53 assertTrue(ImapString.EMPTY.is(""));
54 assertTrue(ImapString.EMPTY.startsWith(""));
55 assertFalse(ImapString.EMPTY.is("a"));
56 assertFalse(ImapString.EMPTY.startsWith("a"));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
EmptyFileFilter.java 23 * This filter accepts files or directories that are empty.
29 * current directory's empty files/directories:
33 * String[] files = dir.list( EmptyFileFilter.EMPTY );
41 * current directory's non-empty files/directories:
56 /** Singleton instance of <i>empty</i> filter */
57 public static final IOFileFilter EMPTY = new EmptyFileFilter();
59 /** Singleton instance of <i>not-empty</i> filter */
60 public static final IOFileFilter NOT_EMPTY = new NotFileFilter(EMPTY);
69 * Checks to see if the file is empty.
73 * is <i>empty</i>, otherwise <code>false</code>.
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
BytesTest.java 38 private static final byte[] EMPTY = {};
53 assertFalse(Bytes.contains(EMPTY, (byte) 1));
63 assertEquals(-1, Bytes.indexOf(EMPTY, (byte) 1));
77 assertEquals(0, Bytes.indexOf(EMPTY, EMPTY));
78 assertEquals(0, Bytes.indexOf(ARRAY234, EMPTY));
79 assertEquals(-1, Bytes.indexOf(EMPTY, ARRAY234));
111 assertEquals(-1, Bytes.lastIndexOf(EMPTY, (byte) 1));
125 assertTrue(Arrays.equals(EMPTY, Bytes.concat()));
126 assertTrue(Arrays.equals(EMPTY, Bytes.concat(EMPTY)))
    [all...]
BooleansTest.java 40 private static final boolean[] EMPTY = {};
64 assertFalse(Booleans.contains(EMPTY, false));
72 assertEquals(-1, Booleans.indexOf(EMPTY, false));
82 assertEquals(-1, Booleans.lastIndexOf(EMPTY, false));
92 assertTrue(Arrays.equals(EMPTY, Booleans.concat()));
93 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY)));
94 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY, EMPTY, EMPTY)))
    [all...]
DoublesTest.java 44 private static final double[] EMPTY = {};
85 assertFalse(Doubles.contains(EMPTY, (double) 1));
101 assertEquals(-1, Doubles.indexOf(EMPTY, (double) 1));
121 assertEquals(0, Doubles.indexOf(EMPTY, EMPTY));
122 assertEquals(0, Doubles.indexOf(ARRAY234, EMPTY));
123 assertEquals(-1, Doubles.indexOf(EMPTY, ARRAY234));
162 assertEquals(-1, Doubles.lastIndexOf(EMPTY, (double) 1));
224 assertTrue(Arrays.equals(EMPTY, Doubles.concat()));
225 assertTrue(Arrays.equals(EMPTY, Doubles.concat(EMPTY)))
    [all...]
CharsTest.java 41 private static final char[] EMPTY = {};
100 assertFalse(Chars.contains(EMPTY, (char) 1));
110 assertEquals(-1, Chars.indexOf(EMPTY, (char) 1));
124 assertEquals(0, Chars.indexOf(EMPTY, EMPTY));
125 assertEquals(0, Chars.indexOf(ARRAY234, EMPTY));
126 assertEquals(-1, Chars.indexOf(EMPTY, ARRAY234));
158 assertEquals(-1, Chars.lastIndexOf(EMPTY, (char) 1));
204 assertTrue(Arrays.equals(EMPTY, Chars.concat()));
205 assertTrue(Arrays.equals(EMPTY, Chars.concat(EMPTY)))
    [all...]
FloatsTest.java 44 private static final float[] EMPTY = {};
85 assertFalse(Floats.contains(EMPTY, (float) 1));
100 assertEquals(-1, Floats.indexOf(EMPTY, (float) 1));
120 assertEquals(0, Floats.indexOf(EMPTY, EMPTY));
121 assertEquals(0, Floats.indexOf(ARRAY234, EMPTY));
122 assertEquals(-1, Floats.indexOf(EMPTY, ARRAY234));
161 assertEquals(-1, Floats.lastIndexOf(EMPTY, (float) 1));
223 assertTrue(Arrays.equals(EMPTY, Floats.concat()));
224 assertTrue(Arrays.equals(EMPTY, Floats.concat(EMPTY)))
    [all...]
IntsTest.java 42 private static final int[] EMPTY = {};
101 assertFalse(Ints.contains(EMPTY, (int) 1));
111 assertEquals(-1, Ints.indexOf(EMPTY, (int) 1));
125 assertEquals(0, Ints.indexOf(EMPTY, EMPTY));
126 assertEquals(0, Ints.indexOf(ARRAY234, EMPTY));
127 assertEquals(-1, Ints.indexOf(EMPTY, ARRAY234));
159 assertEquals(-1, Ints.lastIndexOf(EMPTY, (int) 1));
205 assertTrue(Arrays.equals(EMPTY, Ints.concat()));
206 assertTrue(Arrays.equals(EMPTY, Ints.concat(EMPTY)))
    [all...]
LongsTest.java 42 private static final long[] EMPTY = {};
73 assertFalse(Longs.contains(EMPTY, (long) 1));
83 assertEquals(-1, Longs.indexOf(EMPTY, (long) 1));
97 assertEquals(0, Longs.indexOf(EMPTY, EMPTY));
98 assertEquals(0, Longs.indexOf(ARRAY234, EMPTY));
99 assertEquals(-1, Longs.indexOf(EMPTY, ARRAY234));
131 assertEquals(-1, Longs.lastIndexOf(EMPTY, (long) 1));
177 assertTrue(Arrays.equals(EMPTY, Longs.concat()));
178 assertTrue(Arrays.equals(EMPTY, Longs.concat(EMPTY)))
    [all...]
ShortsTest.java 42 private static final short[] EMPTY = {};
109 assertFalse(Shorts.contains(EMPTY, (short) 1));
119 assertEquals(-1, Shorts.indexOf(EMPTY, (short) 1));
133 assertEquals(0, Shorts.indexOf(EMPTY, EMPTY));
134 assertEquals(0, Shorts.indexOf(ARRAY234, EMPTY));
135 assertEquals(-1, Shorts.indexOf(EMPTY, ARRAY234));
167 assertEquals(-1, Shorts.lastIndexOf(EMPTY, (short) 1));
213 assertTrue(Arrays.equals(EMPTY, Shorts.concat()));
214 assertTrue(Arrays.equals(EMPTY, Shorts.concat(EMPTY)))
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 30 private static final String EMPTY = "";
46 return value == null ? EMPTY : value;
  /external/clang/test/SemaCXX/
warn-empty-body.cpp 9 if (x); // expected-warning {{if statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
13 for (i = 0; i < x; i++); { // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
18 for (i = 0; i < x; i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
25 i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
31 for (int j : arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
35 arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
38 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
41 while (b() == 0); { // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
45 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
51 c() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardTextsSet.java 257 private static final String EMPTY = "";
262 EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY, EMPTY
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
FolderUri.java 26 public static final FolderUri EMPTY = new FolderUri(Uri.EMPTY);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
EmptyViewsOverlay.java 25 * The {@link EmptyViewsOverlay} paints bounding rectangles for any of the empty and
62 mBorderColor = new Color(device, SwtDrawingStyle.EMPTY.getStrokeColor());
77 gc.setLineStyle(SwtDrawingStyle.EMPTY.getLineStyle());
79 gc.setAlpha(SwtDrawingStyle.EMPTY.getStrokeAlpha());
80 gc.setLineWidth(SwtDrawingStyle.EMPTY.getLineWidth());
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java 90 /** Construct a new, empty instance. */
95 /** Get the unmodifiable singleton empty instance. */
97 return EMPTY;
144 if (other == EMPTY) {
156 private ExtensionRegistryLite(boolean empty) {
159 private static final ExtensionRegistryLite EMPTY =
  /external/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java 74 /** Construct a new, empty instance. */
79 /** Get the unmodifiable singleton empty instance. */
81 return EMPTY;
128 if (other == EMPTY) {
140 private ExtensionRegistryLite(boolean empty) {
143 private static final ExtensionRegistryLite EMPTY =
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponse.java 95 return ImapString.EMPTY; // Not a status response.
107 return ImapString.EMPTY; // Not an ALERT
118 return ImapString.EMPTY;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 153 private static final String EMPTY = ""; //$NON-NLS-1$
205 product = EMPTY;
206 status = EMPTY;
207 buildID = EMPTY;
208 buildAlias = EMPTY;
209 endDate = EMPTY;
210 milestone = EMPTY;
211 bugList = EMPTY;
324 if (status.equals(EMPTY))
330 if (!bugList.equals(EMPTY) && endDate.equals(EMPTY) && milestone.equals(EMPTY) && product.equals(EMPTY)
    [all...]

Completed in 1065 milliseconds

1 2 3 4 5 6 7 8 91011>>