Searched refs:EMPTY (Results 1 - 25 of 1094) sorted by relevance

1234567891011>>

/external/clang/test/Preprocessor/
H A Dhash_line.c7 #define EMPTY macro
10 EMPTY #
H A Dinclude-directive2.c9 #define EMPTY macro
10 #include <limits.h> EMPTY
11 #include HEADER EMPTY
H A Dline-directive.c74 #define EMPTY() macro
75 #line 2 "foo.c" EMPTY( )
H A Doutput_paste_avoid.cpp19 #define EMPTY macro
21 D: +PLUS -EMPTY- PLUS+ f(=)
/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
H A DBooleansTest.java37 private static final boolean[] EMPTY = {}; field in class:BooleansTest
62 assertFalse(Booleans.contains(EMPTY, false));
70 assertEquals(-1, Booleans.indexOf(EMPTY, ARRAY_FALSE));
80 assertEquals(-1, Booleans.indexOf(EMPTY, false));
90 assertEquals(-1, Booleans.lastIndexOf(EMPTY, false));
100 assertTrue(Arrays.equals(EMPTY, Booleans.concat()));
101 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY)));
102 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY, EMPT
[all...]
H A DCharsTest.java38 private static final char[] EMPTY = {}; field in class:CharsTest
97 assertFalse(Chars.contains(EMPTY, (char) 1));
107 assertEquals(-1, Chars.indexOf(EMPTY, (char) 1));
121 assertEquals(0, Chars.indexOf(EMPTY, EMPTY));
122 assertEquals(0, Chars.indexOf(ARRAY234, EMPTY));
123 assertEquals(-1, Chars.indexOf(EMPTY, ARRAY234));
155 assertEquals(-1, Chars.lastIndexOf(EMPTY, (char) 1));
201 assertTrue(Arrays.equals(EMPTY, Chars.concat()));
202 assertTrue(Arrays.equals(EMPTY, Char
[all...]
H A DBytesTest.java36 private static final byte[] EMPTY = {}; field in class:BytesTest
51 assertFalse(Bytes.contains(EMPTY, (byte) 1));
61 assertEquals(-1, Bytes.indexOf(EMPTY, (byte) 1));
75 assertEquals(0, Bytes.indexOf(EMPTY, EMPTY));
76 assertEquals(0, Bytes.indexOf(ARRAY234, EMPTY));
77 assertEquals(-1, Bytes.indexOf(EMPTY, ARRAY234));
109 assertEquals(-1, Bytes.lastIndexOf(EMPTY, (byte) 1));
123 assertTrue(Arrays.equals(EMPTY, Bytes.concat()));
124 assertTrue(Arrays.equals(EMPTY, Byte
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DVariantValue.java30 private static final String EMPTY = ""; field in class:VariantValue
46 return value == null ? EMPTY : value;
/external/guava/guava-tests/test/com/google/common/primitives/
H A DBytesTest.java38 private static final byte[] EMPTY = {}; field in class:BytesTest
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, Byte
[all...]
H A DBooleansTest.java40 private static final boolean[] EMPTY = {}; field in class:BooleansTest
65 assertFalse(Booleans.contains(EMPTY, false));
73 assertEquals(-1, Booleans.indexOf(EMPTY, ARRAY_FALSE));
83 assertEquals(-1, Booleans.indexOf(EMPTY, false));
93 assertEquals(-1, Booleans.lastIndexOf(EMPTY, false));
103 assertTrue(Arrays.equals(EMPTY, Booleans.concat()));
104 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY)));
105 assertTrue(Arrays.equals(EMPTY, Booleans.concat(EMPTY, EMPT
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarCache.java26 values[i] = EMPTY;
59 while (values[index] != EMPTY && keys[index] != key)
84 if (oldValues[i] != EMPTY) {
125 static public long EMPTY = Long.MIN_VALUE; field in class:CalendarCache
/external/clang/test/SemaCXX/
H A Dwarn-empty-body.cpp124 #define EMPTY(a) macro
126 if (x) EMPTY(x); // no-warning
129 for (i = 0; i < x; i++) EMPTY(i); // no-warning
133 i++) EMPTY(i); // no-warning
136 for (int j : arr) EMPTY(j); // no-warning
139 arr) EMPTY(j); // no-warning
141 while (b() == 0) EMPTY(i); // no-warning
144 c() == 0) EMPTY(i); // no-warning
148 EMPTY(i); // no-warning
265 EMPTY(
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DCheckSignatureAdapter.java59 private static final int EMPTY = 1; field in class:CheckSignatureAdapter
109 this.state = EMPTY;
117 || (state != EMPTY && state != FORMAL && state != BOUND))
148 if (type != CLASS_SIGNATURE || (state & (EMPTY | FORMAL | BOUND)) == 0)
169 || (state & (EMPTY | FORMAL | BOUND | PARAM)) == 0)
180 || (state & (EMPTY | FORMAL | BOUND | PARAM)) == 0)
202 if (type != TYPE_SIGNATURE || state != EMPTY) {
221 if (type != TYPE_SIGNATURE || state != EMPTY) {
232 if (type != TYPE_SIGNATURE || state != EMPTY) {
241 if (type != TYPE_SIGNATURE || state != EMPTY) {
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY;
126 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY;
126 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
35 //private Object bytes = EMPTY;
88 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
99 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY;
127 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = (contents != null) ? new String(contents).getBytes() : EMPTY;
126 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileEntry.java32 private static final byte[] EMPTY = new byte[0]; field in class:FileEntry
34 private byte[] bytes = EMPTY;
87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY;
98 byte[] newBytes = EMPTY;
130 byte[] initialContents = (append) ? bytes : EMPTY;

Completed in 691 milliseconds

1234567891011>>