HomeSort by relevance Sort by last modified time
    Searched full:empty (Results 126 - 150 of 11665) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
ICreateInfo.java 26 * The list can be empty but must not be null.
32 * The list can be empty but must not be null.
38 * The list can be empty but must not be null.
45 * The list can be empty but must not be null.
52 * The list can be empty but must not be null.
61 * The list can be empty but must not be null.
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
KeyManagerFactoryTest.java 127 private void test_KeyManagerFactory_getKeyManagers(KeyManagerFactory kmf, boolean empty)
135 test_X509KeyManager((X509KeyManager) keyManager, empty, kmf.getAlgorithm());
158 private void test_X509KeyManager(X509KeyManager km, boolean empty, String algorithm)
163 if (empty || keyType == null || keyType.isEmpty()) {
169 test_X509KeyManager_alias(km, alias, keyType, false, empty);
174 if (empty || keyType == null || keyType.isEmpty()) {
180 test_X509KeyManager_alias(km, alias, keyType, false, empty);
185 test_X509KeyManager_alias(km, a, null, true, empty);
190 test_X509KeyManager_alias(km, alias, keyType, false, empty);
194 test_X509KeyManager_alias(km, alias, keyType, false, empty);
    [all...]
  /external/webrtc/src/system_wrappers/source/
list_stl.cc 50 if (!Empty())
61 bool ListWrapper::Empty() const
63 return list_.empty();
101 if(list_.empty())
111 if(list_.empty())
121 if(list_.empty())
133 if(list_.empty())
183 // Allow existingPreviousItem to be NULL if the list is empty.
186 if (!existing_previous_item && !Empty())
197 if (!Empty())
    [all...]
  /dalvik/dx/tests/088-ssa-combine-blocks/
Blort.java 38 * An empty infinite loop for the empty goto optimizer
  /external/chromium/base/threading/
simple_thread.cc 87 DCHECK(threads_.empty());
88 DCHECK(delegates_.empty());
93 DCHECK(threads_.empty()) << "Start() called with outstanding threads.";
102 DCHECK(!threads_.empty()) << "JoinAll() called with no outstanding threads.";
113 DCHECK(delegates_.empty());
120 // If we were empty, signal that we have work now.
135 DCHECK(!delegates_.empty());
140 if (delegates_.empty())
  /external/clang/test/Preprocessor/
output_paste_avoid.c 19 #define EMPTY
21 D: +PLUS -EMPTY- PLUS+ f(=)
  /external/dbus/test/data/valid-messages/
emptiness.message 0 # Empty arrays and strings
32 # A dict with empty arrays
  /external/e2fsprogs/po/
insert-header.sin 9 # Test if the hold space is empty.
12 # Yes it was empty. First occurrence. Read the file.
  /external/elfutils/libelf-po/
insert-header.sin 9 # Test if the hold space is empty.
12 # Yes it was empty. First occurrence. Read the file.
  /external/elfutils/po/
insert-header.sin 9 # Test if the hold space is empty.
12 # Yes it was empty. First occurrence. Read the file.
  /external/stlport/test/unit/
stack_test.cpp 45 CPPUNIT_ASSERT(s.empty());
59 CPPUNIT_ASSERT(s.empty());
  /external/webkit/LayoutTests/storage/indexeddb/
open-cursor-expected.txt 25 Opening an empty cursor.
27 Empty cursor opened successfully.
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
regress-001.js 5 * JS regexp anchoring on empty match bug
13 var TITLE = "JS regexp anchoring on empty match bug";
  /external/webkit/Source/WebCore/manual-tests/
input-type-text-unconfirmed-inline-input.html 9 alert("Field appears empty");
18 <p>The alert should show the inline input text, but without the bug fix it shows empty text.</p>
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListEmptyViewTest.java 50 assertTrue("Empty view not shown", mListView.getVisibility() == View.GONE);
59 assertTrue("Empty view still shown", mActivity.getEmptyView().getVisibility() == View.GONE);
69 assertTrue("Empty view still shown", mActivity.getEmptyView().getVisibility() == View.GONE);
80 assertTrue("Empty view still shown", mActivity.getEmptyView().getVisibility() == View.GONE);
94 assertTrue("Empty view still shown",
103 assertTrue("Empty view still shown",
108 assertTrue("Empty view not shown",
123 assertTrue("Empty view not shown", mActivity.getEmptyView().getVisibility() == View.VISIBLE);
  /ndk/sources/host-tools/make-3.81/po/
insert-header.sin 9 # Test if the hold space is empty.
12 # Yes it was empty. First occurrence. Read the file.
  /ndk/sources/host-tools/make-3.81/tests/scripts/options/
warn-undefined-variables 9 EMPTY =
10 EREF = $(EMPTY)
  /ndk/sources/host-tools/sed-4.2.1/po/
insert-header.sin 9 # Test if the hold space is empty.
12 # Yes it was empty. First occurrence. Read the file.
  /ndk/tests/device/test-gnustl-full/unit/
stack_test.cpp 45 CPPUNIT_ASSERT(s.empty());
59 CPPUNIT_ASSERT(s.empty());
  /ndk/tests/device/test-stlport/unit/
stack_test.cpp 45 CPPUNIT_ASSERT(s.empty());
59 CPPUNIT_ASSERT(s.empty());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleAttribute.java 28 * The name cannot be empty.
29 * The namespace URI can be empty for an attribute without a namespace but is never null.
30 * The value can be empty but cannot be null.
43 * Any null value will be converted to an empty non-null string.
44 * However it is a semantic error to use an empty name -- no assertion is done though.
58 * Can be empty for an attribute without a namespace but is never null.
64 /** Returns the XML local name of the attribute. Cannot be null nor empty. */
69 /** Returns the value of the attribute. Cannot be null. Can be empty. */
  /sdk/rule_api/src/com/android/ide/common/api/
IDragElement.java 62 * Returns a list of attributes. The list can be empty but is never null.
72 * Returns a list of inner elements. The list can be empty but is never null.
80 * The name cannot be empty.
81 * The namespace URI can be empty for an attribute without a namespace but is never null.
82 * The value can be empty but cannot be null.
88 * Can be empty for an attribute without a namespace but is never null.
92 /** Returns the XML local name of the attribute. Cannot be null nor empty. */
95 /** Returns the value of the attribute. Cannot be null. Can be empty. */
  /dalvik/dx/tests/023-code-exception-table/
info.txt 7 sports a non-empty syntactically valid exception table.
  /dalvik/dx/tests/063-dex-empty-switch/
info.txt 2 a couple cases of empty (that is, default-only) switch statements
  /external/chromium/net/data/cache_tests/list_loop3/
contents.txt 40 empty sz 1: 0
41 empty sz 2: 0
42 empty sz 3: 1
43 empty sz 4: 254
59 empty sz 1: 1
60 empty sz 2: 0
61 empty sz 3: 0
62 empty sz 4: 254
78 empty sz 1: 0
79 empty sz 2:
    [all...]

Completed in 1698 milliseconds

1 2 3 4 56 7 8 91011>>