HomeSort by relevance Sort by last modified time
    Searched full:emptylist (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/webkit/JavaScriptCore/runtime/
PropertySlot.cpp 38 return callData.native.function(exec, slot.m_data.getterFunc, slot.slotBase(), exec->emptyList());
41 return asFunction(slot.m_data.getterFunc)->call(exec, slot.slotBase(), exec->emptyList());
JSGlobalData.h 140 const MarkedArgumentBuffer* emptyList; // Lists are supposed to be allocated on the stack to have their elements properly marked, which is not the case here - but this list has nothing to mark.
JSGlobalData.cpp 131 , emptyList(new MarkedArgumentBuffer)
189 delete emptyList;
  /external/guava/src/com/google/common/collect/
EmptyImmutableList.java 91 return Collections.emptyList().listIterator();
96 return Collections.emptyList().listIterator();
  /frameworks/base/core/java/com/google/android/collect/
Lists.java 32 * {@link Collections#emptyList} instead.
  /external/webkit/JavaScriptCore/interpreter/
CallFrame.h 89 const MarkedArgumentBuffer& emptyList() const { return *globalData().emptyList; }
  /libcore/luni/src/test/java/libcore/java/net/
CookiesTest.java 198 assertEquals(Collections.<HttpCookie>emptyList(), cookieStore.cookies);
226 Collections.<HttpCookie>emptyList(), cookieStore.cookies); // RI6 fails this
404 assertEquals(Collections.<URI>emptyList(), cookieStore.getURIs());
409 assertEquals(Collections.<URI>emptyList(), cookieStore.getURIs());
410 assertEquals(Collections.<HttpCookie>emptyList(), cookieStore.getCookies());
417 assertEquals(Collections.<URI>emptyList(), cookieStore.getURIs());
418 assertEquals(Collections.<HttpCookie>emptyList(), cookieStore.getCookies());
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 94 cursor.addRow(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/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 831 result.varint = Collections.emptyList();
836 result.fixed32 = Collections.emptyList();
841 result.fixed64 = Collections.emptyList();
846 result.lengthDelimited = Collections.emptyList();
852 result.group = Collections.emptyList();
  /libcore/luni/src/test/java/tests/xml/
NormalizeTest.java 458 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
479 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
498 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
519 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
540 assertEquals(Collections.<DOMError>emptyList(), errorRecorder.errors);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message_field.cc 194 " java.util.Collections.emptyList();\n"
220 " $name$_ = java.util.Collections.emptyList();\n"
javamicro_primitive_field.cc 377 " java.util.Collections.emptyList();\n"
402 " $name$_ = java.util.Collections.emptyList();\n"
460 " java.util.Collections.emptyList();\n"
482 " $name$_ = java.util.Collections.emptyList();\n"
javamicro_enum_field.cc 176 " java.util.Collections.emptyList();\n"
196 " $name$_ = java.util.Collections.emptyList();\n"
  /build/tools/droiddoc/src/
SinceTagger.java 207 List<T> result = Collections.emptyList();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 52 assertEquals(Collections.<Class<?>>emptyList(), Arrays.asList(method.getExceptionTypes()));
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 700 * @tests java.util.Collections.EmptyList#readResolve()
965 method = "emptyList",
969 List<String> ls = Collections.emptyList();
970 List<Integer> li = Collections.emptyList();
  /external/guava/src/com/google/common/primitives/
Booleans.java 338 return Collections.emptyList();
413 return Collections.emptyList();
Bytes.java 253 return Collections.emptyList();
328 return Collections.emptyList();
Chars.java 439 return Collections.emptyList();
514 return Collections.emptyList();
  /external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java 124 assertEquals(Collections.emptyList(),
138 assertEquals(Collections.emptyList(),
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum_field.cc 185 " java.util.Collections.emptyList();\n"
243 " result.$name$_ = java.util.Collections.emptyList();\n"
java_message_field.cc 200 " java.util.Collections.emptyList();\n"
264 " result.$name$_ = java.util.Collections.emptyList();\n"
java_primitive_field.cc 295 " java.util.Collections.emptyList();\n"
349 " result.$name$_ = java.util.Collections.emptyList();\n"
  /external/guava/src/com/google/common/util/concurrent/
Executors.java 286 return Collections.emptyList();

Completed in 4193 milliseconds

1 2 3