HomeSort by relevance Sort by last modified time
    Searched full:empty (Results 226 - 250 of 5498) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/resources/
remove-cache-frame.html 22 req.open("GET", "empty.txt", false);
46 req.open("GET", "empty.txt", false);
  /frameworks/base/core/tests/coretests/src/android/text/
SpannableTest.java 38 // Empty spans are included when they merely abut the query region
39 // but other spans are not, unless the query region is empty, in
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
CharSequencesTest.java 43 String empty = toString(forAsciiBytes(bytes, 0, 3).subSequence(3, 3)); local
44 assertTrue("".equals(empty));
  /packages/apps/Email/tests/src/com/android/email/mail/internet/
MimeHeaderUnitTests.java 38 // empty header
40 assertEquals("empty header", actual1, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
TextValueDescriptor.java 34 * @param uiName The UI name of the attribute. Cannot be an empty string and cannot be null.
35 * @param tooltip A non-empty tooltip string or null
ElementDescriptor.java 50 /* An optional tooltip. Can be empty. */
52 /** An optional SKD URL. Can be empty. */
54 /** Whether this UI node must always exist (even for empty models). */
63 * @param tooltip An optional tooltip. Can be null or empty.
64 * @param sdk_url An optional SKD URL. Can be null or empty.
65 * @param attributes The list of allowed attributes. Can be null or empty.
66 * @param children The list of allowed children. Can be null or empty.
67 * @param mandatory Whether this node must always exist (even for empty models). A mandatory
91 * @param children The list of allowed children. Can be null or empty.
92 * @param mandatory Whether this node must always exist (even for empty models). A mandator
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
CopyOnWriteArraySetTest.java 35 * Default-constructed set is empty
152 * isEmpty is true when empty, else false
155 CopyOnWriteArraySet empty = new CopyOnWriteArraySet(); local
157 assertTrue(empty.isEmpty());
226 CopyOnWriteArraySet empty = new CopyOnWriteArraySet(); local
229 assertEquals(0, empty.size());
ConcurrentHashMapTest.java 112 ConcurrentHashMap empty = new ConcurrentHashMap(); local
117 * isEmpty is true of empty map and false for non-empty
120 ConcurrentHashMap empty = new ConcurrentHashMap(); local
122 assertTrue(empty.isEmpty());
234 ConcurrentHashMap empty = new ConcurrentHashMap(); local
236 empty.putAll(map);
237 assertEquals(5, empty.size());
238 assertTrue(empty.containsKey(one));
239 assertTrue(empty.containsKey(two))
331 ConcurrentHashMap empty = new ConcurrentHashMap(); local
    [all...]
SynchronousQueueTest.java 27 * A SynchronousQueue is both empty and full
38 * A fair SynchronousQueue is both empty and full
245 * take blocks interruptibly when empty
355 * take blocks interruptibly when empty
571 * containsAll returns false unless empty
575 Integer[] empty = new Integer[0]; local
576 assertTrue(q.containsAll(Arrays.asList(empty)));
586 Integer[] empty = new Integer[0]; local
587 assertFalse(q.retainAll(Arrays.asList(empty)));
597 Integer[] empty = new Integer[0] local
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URITest.java 83 // scheme can not be empty string
86 fail ("Assert 0: Expected URISyntaxException with empty URI scheme");
108 // One URI with empty host
116 // Both URIs with empty hosts
134 URI empty = new URI(""); local
135 assertEquals(empty, one.relativize(two));
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
ProcessorStylesheetElement.java 47 * @param uri The Namespace URI, or the empty string if the
51 * empty string if Namespace processing is not being
54 * empty string if raw names are not available.
56 * there are no attributes, it shall be an empty
135 * @param uri The Namespace URI, or an empty string.
136 * @param localName The local name (without prefix), or empty string if not namespace processing.
XSLTAttributeDef.java 58 * @param namespace The Namespace URI, or an empty string.
59 * @param name The local name (without prefix), or empty string if not namespace processing.
80 * @param namespace The Namespace URI, or an empty string.
81 * @param name The local name (without prefix), or empty string if not namespace processing.
106 * @param namespace The Namespace URI, or an empty string.
107 * @param name The local name (without prefix), or empty string if not namespace processing.
137 * @param namespace The Namespace URI, or an empty string.
138 * @param name The local name (without prefix), or empty string if not namespace processing.
171 * @param namespace The Namespace URI, or an empty string.
172 * @param name The local name (without prefix), or empty string if not namespace processing
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
BoolStack.java 102 * @throws EmptyStackException if this stack is empty.
140 * @throws EmptyStackException if this stack is empty.
149 * from the stack. If the stack is empty, it returns false.
160 * from the stack. If the stack is empty, it returns true.
170 * Tests if this stack is empty.
172 * @return <code>true</code> if this stack is empty;
IntStack.java 118 * @throws EmptyStackException if this stack is empty.
136 * @throws EmptyStackException if this stack is empty.
154 * @throws EmptyStackException if this stack is empty.
168 * Tests if this stack is empty.
170 * @return <code>true</code> if this stack is empty;
174 public boolean empty() method in class:IntStack
ObjectStack.java 121 * @throws EmptyStackException if this stack is empty.
139 * @throws EmptyStackException if this stack is empty.
157 * @throws EmptyStackException if this stack is empty.
171 * Tests if this stack is empty.
173 * @return <code>true</code> if this stack is empty;
177 public boolean empty() method in class:ObjectStack
  /external/astl/tests/
test_list.cpp 60 EXPECT_TRUE(l.empty());
70 EXPECT_TRUE(l.empty());
79 EXPECT_TRUE(list.empty());
83 EXPECT_FALSE(list.empty());
133 // Empty bay removing the last element;
175 EXPECT_TRUE(l.empty());
  /external/icu4c/common/unicode/
stringpiece.h 59 * Default constructor, creates an empty StringPiece.
102 * Returns the string pointer. May be NULL if it is empty.
125 * Returns whether the string is empty.
126 * @return TRUE if the string is empty
129 UBool empty() const { return length_ == 0; } function in class:StringPiece
132 * Sets to an empty string.
  /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));
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 107 * Returns true if this buffer is empty; false otherwise.
109 * @return true if this buffer is empty
155 * @throws BufferUnderflowException if this buffer is empty
159 throw new IllegalStateException("The buffer is already empty");
169 * @throws BufferUnderflowException if this buffer is empty
173 throw new IllegalStateException("The buffer is already empty");
  /development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
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/tagsoup/src/org/ccil/cowan/tagsoup/
XMLWriter.java 50 * methods provided so that clients to not have to create empty
51 * attribute lists or provide empty strings as parameters; for
65 * a new empty attribute list each time. The following code will send
181 * <p>The default Namespace simply uses an empty string as the prefix:</p>
562 * @param uri The Namespace URI, or the empty string if none
566 * empty string is none is available. This method will
605 * @param uri The Namespace URI, or the empty string if none
609 * empty string is none is available. This method will
729 * Write an empty element.
731 * This method writes an empty element tag rather than a start ta
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
WeakHashMapTest.java 109 WeakHashMap empty = new WeakHashMap(0); local
110 assertNull("Empty weakhashmap access", empty.get("nothing"));
111 empty.put("something", "here");
112 assertTrue("cannot get element", empty.get("something") == "here");
148 WeakHashMap empty = new WeakHashMap(0, 0.75f); local
149 assertNull("Empty hashtable access", empty.get("nothing"));
150 empty.put("something", "here");
151 assertTrue("cannot get element", empty.get("something") == "here")
    [all...]
  /external/bison/tests/
existing.at 82 | /* empty */
186 : /* empty */
191 : /* empty */
196 : /* empty */
204 : /* empty */
218 : /* empty */
223 : /* empty */
237 : /* empty */
316 : /* empty */
339 : /* empty */
    [all...]
  /external/srec/tools/grxmlcompile/
fst-io.h 169 if (!FLAGS_isymbols.empty() && !FLAGS_numeric) {
174 if (!FLAGS_osymbols.empty() && !FLAGS_numeric) {
179 if (!FLAGS_ssymbols.empty() && !FLAGS_numeric) {
192 if (isyms && !FLAGS_save_isymbols.empty())
195 if (osyms && !FLAGS_save_osymbols.empty())
224 if (col.size() == 0 || col[0][0] == '\0') // empty line
381 if (!FLAGS_isymbols.empty()) {
386 if (!FLAGS_osymbols.empty()) {
391 if (!FLAGS_ssymbols.empty()) {
  /external/stlport/stlport/stl/debug/
_deque.h 112 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
116 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
120 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
124 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
199 bool empty() const { return _M_non_dbg_impl.empty(); }
272 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
278 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
390 if (!empty()) {

Completed in 231 milliseconds

1 2 3 4 5 6 7 8 91011>>