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

1 2 3 4 5 6 7 8 9

  /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}}
_Pragma-in-macro-arg.c 9 #define EMPTY(x)
10 #define INACTIVE(x) EMPTY(x)
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(=)
  /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...]
  /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());
  /cts/tests/tests/permission/src/android/permission/cts/
NoBroadcastPackageRemovedPermissionTest.java 83 TEST_RECEIVER_PERMISSION, null, null, 0, "initialData", Bundle.EMPTY);
  /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...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
VariantValue.java 30 private static final String EMPTY = "";
46 return value == null ? EMPTY : value;
  /libcore/dex/src/main/java/com/android/dex/
TypeList.java 23 public static final TypeList EMPTY = new TypeList(null, Dex.EMPTY_SHORT_ARRAY);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderOperation.java 30 /** An immutable, empty conversation list */
31 public static final Collection<FolderOperation> EMPTY = Collections.emptyList();
61 final Collection<FolderOperation> target = (in == null) ? EMPTY : ImmutableList.of(in);
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 32 /** {@code non-null;} immutable empty instance */
33 public static final Annotations EMPTY = new Annotations();
36 EMPTY.setImmutable();
84 * Constructs an empty instance.
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 31 /** {@code non-null;} immutable empty instance */
32 public static final Annotations EMPTY = new Annotations();
35 EMPTY.setImmutable();
83 * Constructs an empty instance.
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 32 /** {@code non-null;} immutable empty instance */
33 public static final Annotations EMPTY = new Annotations();
36 EMPTY.setImmutable();
84 * Constructs an empty instance.
  /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"));
  /bionic/libc/upstream-netbsd/libc/include/isc/
list.h 41 #define EMPTY(list) ((list).head == NULL)
  /cts/tools/dasm/src/java_cup/
terminal_set.java 16 /** Constructor for an empty set. */
39 /** Constant for the empty set. */
40 public static final terminal_set EMPTY = new terminal_set();
65 /** Determine if the set is empty. */
66 public boolean empty() method in class:terminal_set
68 return equals(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 =
  /libcore/benchmarks/src/benchmarks/regression/
StringBenchmark.java 24 EMPTY(""),
  /libcore/luni/src/main/java/libcore/reflect/
ListOfTypes.java 25 public static final ListOfTypes EMPTY = new ListOfTypes(0);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
FolderUri.java 26 public static final FolderUri EMPTY = new FolderUri(Uri.EMPTY);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_linecache.py 11 EMPTY = ''
44 # Bad values for line number should return an empty string
45 self.assertEqual(getline(FILENAME, 2**15), EMPTY)
46 self.assertEqual(getline(FILENAME, -1), EMPTY)
51 # Bad filenames should return an empty string
52 self.assertEqual(getline(EMPTY, 1), EMPTY)
53 self.assertEqual(getline(INVALID_NAME, 1), EMPTY)
68 empty = linecache.getlines('a/b/c/__init__.py')
69 self.assertEqual(empty, [])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_linecache.py 11 EMPTY = ''
44 # Bad values for line number should return an empty string
45 self.assertEqual(getline(FILENAME, 2**15), EMPTY)
46 self.assertEqual(getline(FILENAME, -1), EMPTY)
51 # Bad filenames should return an empty string
52 self.assertEqual(getline(EMPTY, 1), EMPTY)
53 self.assertEqual(getline(INVALID_NAME, 1), EMPTY)
68 empty = linecache.getlines('a/b/c/__init__.py')
69 self.assertEqual(empty, [])
    [all...]

Completed in 277 milliseconds

1 2 3 4 5 6 7 8 9