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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Preprocessor/
hash_line.c 6 #define EMPTY
7 EMPTY #
include-directive2.c 9 #define EMPTY
10 #include <limits.h> EMPTY
11 #include HEADER EMPTY
17 #include <> // expected-error {{empty filename}}
output_paste_avoid.c 19 #define EMPTY
21 D: +PLUS -EMPTY- PLUS+ f(=)
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}}
71 #define EMPTY()
72 #line 2 "foo.c" EMPTY( )
  /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/Email/emailcommon/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/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 30 private static final String EMPTY = "";
46 return value == null ? EMPTY : value;
  /sdk/rule_api/src/com/android/ide/common/api/
DrawingStyle.java 155 * The style used to draw empty containers of zero bounds (which are padded
158 EMPTY,
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ListOfVariables.java 23 public static final TypeVariable[] EMPTY = new ImplForVariable[0];
GenericSignatureParser.java 128 this.formalTypeParameters = ListOfVariables.EMPTY;
132 this.formalTypeParameters = ListOfVariables.EMPTY;
134 this.interfaceTypes = ListOfTypes.EMPTY;
154 this.formalTypeParameters = ListOfVariables.EMPTY;
159 this.formalTypeParameters = ListOfVariables.EMPTY;
160 this.parameterTypes = ListOfTypes.EMPTY;
161 this.exceptionTypes = ListOfTypes.EMPTY;
182 this.formalTypeParameters = ListOfVariables.EMPTY;
186 this.formalTypeParameters = ListOfVariables.EMPTY;
187 this.parameterTypes = ListOfTypes.EMPTY;
    [all...]
  /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/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;
ImapList.java 26 * {@link ImapList} representing an empty list.
28 public static final ImapList EMPTY = new ImapList() {
95 * If {@code index} is out of range or not a list, returns {@link ImapList#EMPTY}.
99 return el.isList() ? (ImapList) el : EMPTY;
104 * If {@code index} is out of range or not a string, returns {@link ImapString#EMPTY}.
108 return el.isString() ? (ImapString) el : ImapString.EMPTY;
126 * Return {@link ImapList#EMPTY} if not found.
134 * Return {@link ImapList#EMPTY} if not found.
138 return (e != null) ? ((ImapList) e) : ImapList.EMPTY;
143 * Return {@link ImapString#EMPTY} if not found
    [all...]
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
GameActivity.java 159 if (data[index] == State.EMPTY) {
197 if (data[k] != State.EMPTY && data[k] == data[k+1] && data[k] == data[k+2]) {
200 if (full && (data[k] == State.EMPTY ||
201 data[k+1] == State.EMPTY ||
202 data[k+2] == State.EMPTY)) {
209 if (data[i] != State.EMPTY && data[i] == data[i+3] && data[i] == data[i+6]) {
215 if (data[0] != State.EMPTY && data[0] == data[1+3] && data[0] == data[2+6]) {
217 } else if (data[2] != State.EMPTY && data[2] == data[1+3] && data[2] == data[0+6]) {
228 setFinished(State.EMPTY, -1, -1, -1);
250 if (player == State.EMPTY) {
    [all...]
GameView.java 50 EMPTY(0),
70 return EMPTY;
94 /** Contains one of {@link State#EMPTY}, {@link State#PLAYER1} or {@link State#PLAYER2}. */
98 private State mSelectedValue = State.EMPTY;
100 private State mWinner = State.EMPTY;
142 mData[i] = State.EMPTY;
312 state = state == State.EMPTY ? mCurrentPlayer : State.EMPTY;
322 if (state != State.EMPTY) {
339 boolean hadSelection = mSelectedCell != -1 && mSelectedValue != State.EMPTY;
    [all...]
  /external/icu4c/i18n/
esctrn.cpp 28 static const UChar EMPTY[] = {0}; // ""
37 return new EscapeTransliterator(ID, UNIPRE, EMPTY, 16, 4, TRUE, NULL);
41 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, FALSE, NULL);
45 return new EscapeTransliterator(ID, BS_u, EMPTY, 16, 4, TRUE,
46 new EscapeTransliterator(EMPTY, BS_U, EMPTY, 16, 8, TRUE, NULL));
  /frameworks/base/core/java/android/view/textservice/
SuggestionsInfo.java 28 private static final String[] EMPTY = ArrayUtils.emptyArray(String.class);
62 mSuggestions = EMPTY;
82 mSuggestions = EMPTY;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ZeroSizeInsn.java 36 super(Dops.SPECIAL_FORMAT, position, RegisterSpecList.EMPTY);
  /dalvik/dx/src/com/android/dx/dex/code/
ZeroSizeInsn.java 36 super(Dops.SPECIAL_FORMAT, position, RegisterSpecList.EMPTY);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
utmp.h 101 #define EMPTY 0 /* No valid user accounting information. */
115 /* Old Linux name for the EMPTY type. */
116 #define UT_UNKNOWN EMPTY
  /packages/apps/Contacts/src/com/android/contacts/calllog/
ContactInfoHelper.java 59 if (sipInfo == null || sipInfo == ContactInfo.EMPTY) {
72 if (phoneInfo == null || phoneInfo == ContactInfo.EMPTY) {
84 // If we did not find a matching contact, generate an empty contact info for the number.
85 if (info == ContactInfo.EMPTY) {
100 * It returns null if an error occurs, {@link ContactInfo#EMPTY} if no matching contact is
129 info = ContactInfo.EMPTY;
146 * If no contact corresponds to the given SIP address, returns {@link ContactInfo#EMPTY}.
165 * If no contact corresponds to the given phone number, returns {@link ContactInfo#EMPTY}.
184 if (info != null && info != ContactInfo.EMPTY) {
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
AccountTypeTest.java 90 final AccountTypeForDisplayLabelTest EMPTY = new AccountTypeForDisplayLabelTest("");
102 assertTrue(compareDisplayLabel(EMPTY, AA) < 0);
103 assertTrue(compareDisplayLabel(EMPTY, NULL) == 0);
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 120 /** true if {@code subroutines} is non-empty */
301 * empty here (to be filled in outside of the constructor).
897 RegisterSpecList.EMPTY));
933 RegisterSpecList.EMPTY));
    [all...]

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 9