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

1 2 3 4 5 6 7

  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.cpp 37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinderTest.java 64 finder.setIncluded("bar", Collections.<String>emptyList(), false);
66 finder.setIncluded("baz", Collections.<String>emptyList(), false);
67 assertEquals(Collections.emptyList(), finder.getIncludedBy("foo"));
IncludeOverlayTest.java 31 checkSubtract(new Rectangle(0, 0, 100, 80), Collections.<Rectangle> emptyList());
  /libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java 42 testEmptyIterator(Collections.emptyList().iterator());
66 testEmptyListIterator(Collections.emptyList().listIterator());
67 testEmptyListIterator(Collections.emptyList().listIterator(0));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseViewRuleTest.java 38 assertEquals("", BaseViewRule.join('|', Collections.<String>emptyList()));
  /external/junit/src/org/junit/rules/
RuleChain.java 46 Collections.<TestRule> emptyList());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
Gesture.java 86 return Collections.emptyList();
SelectionHandles.java 77 mHandles = Collections.emptyList();
131 mHandles = Collections.emptyList();
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingMultimapTest.java 84 forward.remove("asfd", Collections.<Boolean>emptyList());
94 forward.replaceValues("key", Collections.<Boolean>emptyList());
PeekingIteratorTest.java 22 import static java.util.Collections.emptyList;
91 actsLikeIteratorHelper(Collections.emptyList());
110 List<?> list = Collections.emptyList();
226 List<Integer> list = emptyList();
ListsTest.java 306 assertEquals(Collections.emptyList(), list);
311 assertEquals(Collections.emptyList(), list);
314 assertEquals(Collections.emptyList(), bigger);
327 assertEquals(Collections.emptyList(), list);
330 assertEquals(Collections.emptyList(), bigger);
372 assertEquals(Collections.emptyList(), list);
543 assertEquals(Collections.emptyList(), fromList);
596 assertEquals(Collections.emptyList(), list);
629 assertEquals(Collections.emptyList(), fromList);
762 List<Integer> source = Collections.emptyList();
    [all...]
IterablesTest.java 25 import static java.util.Collections.emptyList;
150 Iterable<String> iterable = Collections.emptyList();
173 Iterable<String> iterable = Collections.emptyList();
178 Iterable<String> iterable = Collections.emptyList();
193 Iterable<String> iterable = Collections.emptyList();
605 List<String> list = Collections.emptyList();
632 Iterable<String> emptyList = Collections.emptyList();
633 assertTrue(Iterables.isEmpty(emptyList));
653 assertEquals(emptyList(), newArrayList(skip(set, 20)))
    [all...]
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
ViewInfo.java 33 private List<ViewInfo> mChildren = Collections.emptyList();
68 mChildren = Collections.emptyList();
DataBindingItem.java 89 return Collections.emptyList();
  /frameworks/support/v4/java/android/support/v4/view/accessibility/
AccessibilityManagerCompat.java 65 return Collections.emptyList();
70 return Collections.emptyList();
  /sdk/chimpchat/src/com/android/chimpchat/core/
MultiSelectorText.java 73 return Collections.emptyList();
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 72 List <NameValuePair> result = Collections.emptyList();
95 List <NameValuePair> result = Collections.emptyList();
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 72 const MarkedArgumentBuffer& emptyList() const { return *globalData().emptyList; }
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java 97 return Collections.emptyList();
117 return Collections.emptyList();
  /sdk/common/src/com/android/resources/
FolderTypeRelationship.java 83 return Collections.emptyList();
98 return Collections.emptyList();
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 39 List<Label> catchLabels = Collections.emptyList();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
ShaderSourceDetailsProvider.java 100 return Collections.emptyList();
VertexAttribPointerDataDetailProvider.java 70 return Collections.emptyList();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryFileDumper.java 95 if (null == c) return Collections.<WordListInfo>emptyList();
98 return Collections.<WordListInfo>emptyList();
115 return Collections.<WordListInfo>emptyList();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 395 * @tests java.util.Collections.EmptyList#readResolve()
462 List<Object> emptyList = Collections.emptyList();
463 assertEquals(0, emptyList.size());
464 assertTrue(emptyList instanceof RandomAccess);

Completed in 3321 milliseconds

1 2 3 4 5 6 7