HomeSort by relevance Sort by last modified time
    Searched refs:Nullable (Results 51 - 75 of 366) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
NullsLastOrdering.java 23 import javax.annotation.Nullable;
34 @Override public int compare(@Nullable T left, @Nullable T right) {
61 @Override public boolean equals(@Nullable Object object) {
ComparisonChain.java 26 import javax.annotation.Nullable;
71 @Nullable T left, @Nullable T right, Comparator<T> comparator) {
108 @Nullable Comparable left, @Nullable Comparable right) {
111 @Override public <T> ComparisonChain compare(@Nullable T left,
112 @Nullable T right, @Nullable Comparator<T> comparator) {
148 @Nullable T left, @Nullable T right, Comparator<T> comparator)
    [all...]
BstCountBasedBalancePolicies.java 27 import javax.annotation.Nullable;
52 BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right) {
56 @Nullable
58 public N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right) {
85 BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right) {
98 private N rotateL(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, N right) {
108 private N rotateR(BstNodeFactory<N> nodeFactory, N source, N left, @Nullable N right)
    [all...]
HashBiMap.java 28 import javax.annotation.Nullable;
84 @Override public V put(@Nullable K key, @Nullable V value) {
88 @Override public V forcePut(@Nullable K key, @Nullable V value) {
ImmutableSortedAsList.java 21 import javax.annotation.Nullable;
46 @Override public boolean contains(@Nullable Object target) {
51 @Override public int indexOf(@Nullable Object target) {
55 @Override public int lastIndexOf(@Nullable Object target) {
94 @Override public boolean equals(@Nullable Object obj) {
SingletonImmutableTable.java 26 import javax.annotation.Nullable;
70 @Override public boolean contains(@Nullable Object rowKey,
71 @Nullable Object columnKey) {
75 @Override public boolean containsColumn(@Nullable Object columnKey) {
79 @Override public boolean containsRow(@Nullable Object rowKey) {
83 @Override public boolean containsValue(@Nullable Object value) {
87 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
119 @Override public boolean equals(@Nullable Object obj) {
GeneralRange.java 25 import javax.annotation.Nullable;
45 @Nullable
49 @Nullable
67 static <T> GeneralRange<T> downTo(Comparator<? super T> comparator, @Nullable T endpoint,
76 static <T> GeneralRange<T> upTo(Comparator<? super T> comparator, @Nullable T endpoint,
85 static <T> GeneralRange<T> range(Comparator<? super T> comparator, @Nullable T lower,
86 BoundType lowerType, @Nullable T upper, BoundType upperType) {
92 @Nullable
96 @Nullable
101 @Nullable T lowerEndpoint, BoundType lowerBoundType, boolean hasUpperBound
    [all...]
Count.java 21 import javax.annotation.Nullable;
70 public boolean equals(@Nullable Object obj) {
TreeBasedTable.java 37 import javax.annotation.Nullable;
177 @Nullable final C lowerBound;
178 @Nullable final C upperBound;
184 TreeRow(R rowKey, @Nullable C lowerBound, @Nullable C upperBound) {
203 boolean rangeContains(@Nullable Object o) {
306 @Nullable Object rowKey, @Nullable Object columnKey) {
310 @Override public boolean containsColumn(@Nullable Object columnKey) {
314 @Override public boolean containsRow(@Nullable Object rowKey)
    [all...]
AbstractSortedSetMultimap.java 25 import javax.annotation.Nullable;
64 @Override public SortedSet<V> get(@Nullable K key) {
76 @Override public SortedSet<V> removeAll(@Nullable Object key) {
ForwardingMapEntry.java 26 import javax.annotation.Nullable;
79 @Override public boolean equals(@Nullable Object object) {
95 @Beta protected boolean standardEquals(@Nullable Object object) {
RegularImmutableMultiset.java 24 import javax.annotation.Nullable;
50 public int count(@Nullable Object element) {
61 public boolean contains(@Nullable Object element) {
  /external/jsr305/ri/src/main/java/javax/annotation/
Nullable.java 14 public @interface Nullable {
ParametersAreNullableByDefault.java 12 * the method parameters in that element are nullable by default unless there is:
26 @Nullable
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GlobalCanvasDragInfo.java 20 import com.android.annotations.Nullable;
82 @Nullable SelectionItem[] selection,
83 @Nullable Object sourceCanvas,
84 @Nullable Runnable removeSourceHandler) {
  /external/guava/guava/src/com/google/common/base/
Throwables.java 29 import javax.annotation.Nullable;
57 @Nullable Throwable throwable, Class<X> declaredType) throws X {
78 public static void propagateIfPossible(@Nullable Throwable throwable) {
103 @Nullable Throwable throwable, Class<X> declaredType) throws X {
123 void propagateIfPossible(@Nullable Throwable throwable,
Objects.java 25 import javax.annotation.Nullable;
50 public static boolean equal(@Nullable Object a, @Nullable Object b) {
69 public static int hashCode(@Nullable Object... objects) {
173 public static <T> T firstNonNull(@Nullable T first, @Nullable T second) {
200 public ToStringHelper add(String name, @Nullable Object value) {
282 public ToStringHelper addValue(@Nullable Object value) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
TableRowRule.java 21 import com.android.annotations.Nullable;
74 @Nullable SegmentType horizontalEdge, @Nullable SegmentType verticalEdge,
75 @Nullable Object childView, @Nullable Object parentView) {
AdapterViewRule.java 19 import com.android.annotations.Nullable;
32 public DropFeedback onDropEnter(@NonNull INode targetNode, @Nullable Object targetView,
33 @Nullable IDragElement[] elements) {
58 @Nullable DropFeedback feedback, @NonNull Point p) {
  /external/guava/guava-tests/test/com/google/common/collect/
BstTesting.java 29 import javax.annotation.Nullable;
39 SimpleNode(Character key, @Nullable SimpleNode left, @Nullable SimpleNode right) {
49 public boolean equals(@Nullable Object obj) {
68 SimpleNode source, @Nullable SimpleNode left, @Nullable SimpleNode right) {
76 @Nullable SimpleNode left, @Nullable SimpleNode right) {
80 @Nullable
82 public SimpleNode combine(BstNodeFactory<SimpleNode> nodeFactory, @Nullable SimpleNode left
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/identity/
SettingsSecureBasedIdentificationGenerator.java 14 import javax.annotation.Nullable;
31 public String getUniqueId(@Nullable String salt) {
  /external/guava/guava/src/com/google/common/io/
PatternFilenameFilter.java 27 import javax.annotation.Nullable;
59 @Override public boolean accept(@Nullable File dir, String fileName) {
  /external/guava/guava/src/com/google/common/util/concurrent/
Atomics.java 24 import javax.annotation.Nullable;
52 public static <V> AtomicReference<V> newReference(@Nullable V initialValue) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ForwardingImmutableCollection.java 21 import javax.annotation.Nullable;
42 @Override public boolean contains(@Nullable Object object) {
EnumHashBiMap.java 24 import javax.annotation.Nullable;
77 @Override public V put(K key, @Nullable V value) {
81 @Override public V forcePut(K key, @Nullable V value) {

Completed in 1058 milliseconds

1 23 4 5 6 7 8 91011>>