HomeSort by relevance Sort by last modified time
    Searched refs:emptyList (Results 1 - 25 of 33) 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;
JSObject.cpp 245 JSValue result = call(exec, function, callType, callData, const_cast<JSObject*>(object), exec->emptyList());
  /frameworks/base/awt/org/apache/harmony/awt/
ListenerList.java 121 return Collections.emptyList();
130 return Collections.emptyList();
144 List<T> emptyList = Collections.emptyList();
145 return emptyList.iterator();
  /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; }
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 94 cursor.addRow(Collections.emptyList());
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java 257 List<String> emptyList = Arrays.asList();
258 ProcessBuilder pbe = new ProcessBuilder(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();
  /dalvik/libcore/xml/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();
  /build/tools/droiddoc/src/
SinceTagger.java 207 List<T> result = Collections.emptyList();
  /dalvik/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();
  /dalvik/libcore/security/src/main/java/java/security/
Provider.java 806 value, Collections.<String>emptyList(),
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.cpp 798 DEFINE_STATIC_LOCAL(Vector<StyleDashboardRegion>, emptyList, ());
799 return emptyList;
    [all...]
  /frameworks/base/core/java/android/net/
Uri.java 864 return Collections.emptyList();
    [all...]

Completed in 667 milliseconds

1 2