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

1 2

  /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();
  /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/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/guava/src/com/google/common/primitives/
Bytes.java 253 return Collections.emptyList();
328 return Collections.emptyList();
Booleans.java 338 return Collections.emptyList();
413 return Collections.emptyList();
Chars.java 439 return Collections.emptyList();
514 return Collections.emptyList();
Doubles.java 375 return Collections.emptyList();
450 return Collections.emptyList();
Floats.java 372 return Collections.emptyList();
447 return Collections.emptyList();
Ints.java 446 return Collections.emptyList();
521 return Collections.emptyList();
Longs.java 424 return Collections.emptyList();
499 return Collections.emptyList();
Shorts.java 438 return Collections.emptyList();
513 return 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();
GeneratedMessageLite.java 535 containingTypeDefaultInstance, (Type) 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/guava/src/com/google/common/util/concurrent/
Executors.java 286 return Collections.emptyList();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 52 assertEquals(Collections.<Class<?>>emptyList(), Arrays.asList(method.getExceptionTypes()));
  /build/tools/droiddoc/src/
SinceTagger.java 207 List<T> result = Collections.emptyList();
  /external/protobuf/java/src/test/java/com/google/protobuf/
DescriptorsTest.java 124 assertEquals(Collections.emptyList(),
138 assertEquals(Collections.emptyList(),
  /hardware/ril/mock-ril/src/generated/java/com/android/internal/telephony/ril_proto/
RilCmds.java 485 java.util.Collections.emptyList();
511 applications_ = java.util.Collections.emptyList();
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.cpp 798 DEFINE_STATIC_LOCAL(Vector<StyleDashboardRegion>, emptyList, ());
799 return emptyList;
    [all...]

Completed in 1518 milliseconds

1 2