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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/identity/
UniqueIdentificationGenerator.java 7 import javax.annotation.Nullable;
22 String getUniqueId(@Nullable String salt);
  /external/guava/guava/src/com/google/common/collect/
Multimap.java 25 import javax.annotation.Nullable;
74 boolean containsKey(@Nullable Object key);
82 boolean containsValue(@Nullable Object value);
90 boolean containsEntry(@Nullable Object key, @Nullable Object value);
108 boolean put(@Nullable K key, @Nullable V value);
117 boolean remove(@Nullable Object key, @Nullable Object value);
128 boolean putAll(@Nullable K key, Iterable<? extends V> values)
    [all...]
BstBalancePolicy.java 19 import javax.annotation.Nullable;
36 N balance(BstNodeFactory<N> nodeFactory, N source, @Nullable N left, @Nullable N right);
43 @Nullable
44 N combine(BstNodeFactory<N> nodeFactory, @Nullable N left, @Nullable N right);
BstModificationResult.java 21 import javax.annotation.Nullable;
34 static <N extends BstNode<?, N>> BstModificationResult<N> identity(@Nullable N target) {
39 @Nullable N originalTarget, @Nullable N changedTarget) {
45 @Nullable N originalTarget, @Nullable N changedTarget) {
50 @Nullable private final N originalTarget;
51 @Nullable private final N changedTarget;
55 @Nullable N originalTarget, @Nullable N changedTarget, ModificationType type)
    [all...]
MapConstraint.java 22 import javax.annotation.Nullable;
57 void checkKeyValue(@Nullable K key, @Nullable V value);
BiMap.java 24 import javax.annotation.Nullable;
47 V put(@Nullable K key, @Nullable V value);
66 V forcePut(@Nullable K key, @Nullable V value);
ImmutableEntry.java 23 import javax.annotation.Nullable;
34 ImmutableEntry(@Nullable K key, @Nullable V value) {
39 @Nullable @Override public K getKey() {
43 @Nullable @Override public V getValue() {
BstNodeFactory.java 19 import javax.annotation.Nullable;
38 public abstract N createNode(N source, @Nullable N left, @Nullable N right);
Table.java 27 import javax.annotation.Nullable;
68 boolean contains(@Nullable Object rowKey, @Nullable Object columnKey);
76 boolean containsRow(@Nullable Object rowKey);
84 boolean containsColumn(@Nullable Object columnKey);
92 boolean containsValue(@Nullable Object value);
101 V get(@Nullable Object rowKey, @Nullable Object columnKey);
116 boolean equals(@Nullable Object obj);
160 V remove(@Nullable Object rowKey, @Nullable Object columnKey)
    [all...]
BstAggregate.java 19 import javax.annotation.Nullable;
35 long treeValue(@Nullable N tree);
BstModifier.java 19 import javax.annotation.Nullable;
48 BstModificationResult<N> modify(K key, @Nullable N originalEntry);
BstMutationResult.java 27 import javax.annotation.Nullable;
48 @Nullable K targetKey, @Nullable N originalRoot, @Nullable N changedRoot,
55 @Nullable
58 @Nullable
63 private BstMutationResult(@Nullable K targetKey, @Nullable N originalRoot,
64 @Nullable N changedRoot, BstModificationResult<N> modificationResult) {
81 @Nullable
    [all...]
AbstractListMultimap.java 25 import javax.annotation.Nullable;
60 @Override public List<V> get(@Nullable K key) {
71 @Override public List<V> removeAll(@Nullable Object key) {
83 @Nullable K key, Iterable<? extends V> values) {
94 @Override public boolean put(@Nullable K key, @Nullable V value) {
115 @Override public boolean equals(@Nullable Object object) {
Multiset.java 27 import javax.annotation.Nullable;
102 int count(@Nullable Object element);
125 int add(@Nullable E element, int occurrences);
140 int remove(@Nullable Object element, int occurrences);
298 boolean equals(@Nullable Object object);
345 boolean contains(@Nullable Object element);
403 boolean remove(@Nullable Object element);
EmptyImmutableTable.java 25 import javax.annotation.Nullable;
44 @Override public Object get(@Nullable Object rowKey,
45 @Nullable Object columnKey) {
53 @Override public boolean equals(@Nullable Object obj) {
85 @Override public boolean contains(@Nullable Object rowKey,
86 @Nullable Object columnKey) {
90 @Override public boolean containsColumn(@Nullable Object columnKey) {
94 @Override public boolean containsRow(@Nullable Object rowKey) {
98 @Override public boolean containsValue(@Nullable Object value) {
BstPath.java 22 import javax.annotation.Nullable;
34 @Nullable
37 BstPath(N tip, @Nullable P prefix) {
60 @Nullable
ListMultimap.java 25 import javax.annotation.Nullable;
48 List<V> get(@Nullable K key);
58 List<V> removeAll(@Nullable Object key);
90 boolean equals(@Nullable Object obj);
SetMultimap.java 25 import javax.annotation.Nullable;
49 Set<V> get(@Nullable K key);
59 Set<V> removeAll(@Nullable Object key);
103 boolean equals(@Nullable Object obj);
  /external/guava/guava/src/com/google/common/base/
Function.java 21 import javax.annotation.Nullable;
45 T apply(@Nullable F input);
58 boolean equals(@Nullable Object object);
Predicate.java 21 import javax.annotation.Nullable;
45 boolean apply(@Nullable T input);
58 boolean equals(@Nullable Object object);
  /external/guava/guava/src/com/google/common/cache/
RemovalNotification.java 26 import javax.annotation.Nullable;
41 @Nullable private final K key;
42 @Nullable private final V value;
45 RemovalNotification(@Nullable K key, @Nullable V value, RemovalCause cause) {
66 @Nullable @Override public K getKey() {
70 @Nullable @Override public V getValue() {
78 @Override public boolean equals(@Nullable Object object) {
  /external/guava/guava/src/com/google/common/util/concurrent/
Callables.java 21 import javax.annotation.Nullable;
36 public static <T> Callable<T> returning(final @Nullable T value) {
SettableFuture.java 19 import javax.annotation.Nullable;
52 public boolean set(@Nullable V value) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationClient.java 19 import com.android.annotations.Nullable;
63 @Nullable
71 @Nullable
80 @Nullable
81 ResourceRepository getFrameworkResources(@Nullable IAndroidTarget target);
107 @Nullable
127 @Nullable
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
IgnoredLayoutRule.java 20 import com.android.annotations.Nullable;
37 public DropFeedback onDropEnter(@NonNull INode targetNode, @Nullable Object targetView,
38 @Nullable IDragElement[] elements) {

Completed in 692 milliseconds

1 2 3 4 5 6 7 8 91011>>