HomeSort by relevance Sort by last modified time
    Searched full:sublist (Results 26 - 50 of 251) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/ipc/
ipc_message_unittest.cc 62 scoped_ptr<base::ListValue> sublist(new base::ListValue());
63 sublist->Set(0, new base::FundamentalValue(42.42));
64 sublist->Set(1, new base::StringValue("forty"));
65 sublist->Set(2, new base::StringValue("two"));
66 subdict->Set("list", sublist.release());
  /libcore/luni/src/main/java/java/util/
AbstractList.java 169 private final SubAbstractList<E> subList;
180 subList = list;
187 subList.sizeChanged(true);
227 subList.sizeChanged(false);
687 * occurs in the returned subList will be reflected to the original list,
689 * list will also be supported by this subList.
693 * {@code list.subList(from, to).clear();}
696 * subList, the behavior of the returned subList becomes undefined.
698 * The returned subList is a subclass of AbstractList. The subclass store
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
ListGenerators.java 84 .subList(0, elements.length);
96 .subList(2, elements.length + 2);
112 .subList(2, elements.length + 2);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 74 sublist = []
77 sublist.append(item)
78 return sublist
157 sublist = []
160 sublist.append(item)
161 return sublist
TreeWidget.py 184 sublist = self.item._GetSubList()
185 if not sublist:
188 for item in sublist:
338 sublist = self.GetSubList()
339 if not sublist:
341 return sublist
356 """Return list of items forming sublist."""
401 sublist = []
404 sublist.append(item)
405 return sublist
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ClassBrowser.py 74 sublist = []
77 sublist.append(item)
78 return sublist
157 sublist = []
160 sublist.append(item)
161 return sublist
TreeWidget.py 184 sublist = self.item._GetSubList()
185 if not sublist:
188 for item in sublist:
338 sublist = self.GetSubList()
339 if not sublist:
341 return sublist
356 """Return list of items forming sublist."""
401 sublist = []
404 sublist.append(item)
405 return sublist
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedAsList.java 61 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
65 backingList.subList(fromIndex, toIndex), backingSet.comparator())
TransformedImmutableList.java 93 @Override public ImmutableList<E> subList(int fromIndex, int toIndex) {
94 return new TransformedView(backingList.subList(fromIndex, toIndex));
ForwardingList.java 110 public List<E> subList(int fromIndex, int toIndex) {
111 return delegate().subList(fromIndex, toIndex);
207 * A sensible default implementation of {@link #subList(int, int)}. If you
208 * override any other methods, you may wish to override {@link #subList(int,
Lists.java 466 * Returns consecutive {@linkplain List#subList(int, int) sublists} of a list,
473 * source list. The inner lists are sublist views of the original list,
474 * produced on demand using {@link List#subList(int, int)}, and are subject
478 * @param size the desired size of each sublist (the last may be
505 return list.subList(start, end);
572 @Override public ImmutableList<Character> subList(
683 @Override public List<Character> subList(int fromIndex, int toIndex) {
774 subList(fromIndex, toIndex).clear();
801 @Override public List<T> subList(int fromIndex, int toIndex) {
803 return reverse(forwardList.subList(
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowUriMatcher.java 60 segments = segments.subList(1, segments.size());
109 addNodes(nextNode, segments.subList(1, segments.size()), code);
  /external/javassist/src/main/javassist/compiler/ast/
FieldDecl.java 29 public ASTree getInit() { return (ASTree)sublist(2).head(); }
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
CachedInputStream.java 74 List<byte[]> subList = mBufs.subList(0, chunks);
75 releaseChunks(subList);
76 subList.clear();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 97 List<Integer> mySubList = list.subList(50, 53);
100 "ListTest - a) sublist Failed--does not contain correct elements",
103 "ListTest - b) sublist Failed--does not contain correct elements",
106 "ListTest - c) sublist Failed--does not contain correct elements",
112 assertEquals("ListTest - Clearing the sublist did not remove the appropriate elements from the original list",
  /external/chromium_org/content/common/
common_param_traits_unittest.cc 157 scoped_ptr<base::ListValue> sublist(new base::ListValue());
158 sublist->Set(0, new base::FundamentalValue(42.42));
159 sublist->Set(1, new base::StringValue("forty"));
160 sublist->Set(2, new base::StringValue("two"));
161 subdict->Set("list", sublist.release());
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 97 List<Integer> mySubList = list.subList(50, 53);
100 "ListTest - a) sublist Failed--does not contain correct elements",
103 "ListTest - b) sublist Failed--does not contain correct elements",
106 "ListTest - c) sublist Failed--does not contain correct elements",
112 assertEquals("ListTest - Clearing the sublist did not remove the appropriate elements from the original list",
  /libcore/jsr166-tests/src/test/java/jsr166/
CopyOnWriteArrayListTest.java 472 assertTrue(a.subList(1,1).isEmpty());
475 List b = a.subList(j,i);
482 List s = a.subList(2, 5);
651 * subList throws an IndexOutOfBoundsException on a negative index
656 c.subList(-1,100);
662 * subList throws an IndexOutOfBoundsException on a too high index
668 c.subList(1,100);
674 * subList throws IndexOutOfBoundsException when the second index
680 c.subList(3,1);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SetCreationTester.java 49 Arrays.asList(array).subList(1, getNumElements());
61 Arrays.asList(array).subList(1, getNumElements());
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListing.java 119 list = list.subList(offset, offset + count);
128 list = list.subList(offset, list.size());
  /external/bison/src/
muscle-tab.h 172 each sublist. The last sublist is followed by a second NULL. For each
173 sublist, the first string is the name of a %define variable, and all
174 remaining strings in that sublist are the valid values for that variable.
  /external/chromium_org/tools/json_schema_compiler/test/
idl_schemas_unittest.cc 134 base::ListValue* sublist = new base::ListValue; local
135 sublist->Append(new base::FundamentalValue(34));
136 sublist->Append(new base::FundamentalValue(35));
137 list.Append(sublist);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
AffiliationsExtension.java 46 * @param subList
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListTest.java 130 @Override public List<T> subList(int fromIndex, int toIndex) {
283 forward.subList(0, 1);
284 assertEquals("[subList(int,int)]", getCalls());
  /external/smack/src/org/xbill/DNS/
RRset.java 139 list.addAll(rrs.subList(start, size));
141 list.addAll(rrs.subList(0, start));
143 list.addAll(rrs.subList(start, total));

Completed in 1638 milliseconds

12 3 4 5 6 7 8 91011