/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
Nullable.h | 13 class Nullable { 15 Nullable() 19 Nullable(const T& value) 23 Nullable(const Nullable& other) 27 Nullable& operator=(const Nullable& other) 39 bool operator==(const Nullable& other) const
|
/external/guava/guava/src/com/google/common/collect/ |
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...] |
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) {
|
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() {
|
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);
|
ForwardingMultimap.java | 26 import javax.annotation.Nullable; 57 public boolean containsEntry(@Nullable Object key, @Nullable Object value) { 62 public boolean containsKey(@Nullable Object key) { 67 public boolean containsValue(@Nullable Object value) { 77 public Collection<V> get(@Nullable K key) { 112 public boolean remove(@Nullable Object key, @Nullable Object value) { 117 public Collection<V> removeAll(@Nullable Object key) { 136 @Override public boolean equals(@Nullable Object object) [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...] |
EmptyImmutableMap.java | 23 import javax.annotation.Nullable; 37 @Override public Object get(@Nullable Object key) { 50 @Override public boolean containsKey(@Nullable Object key) { 54 @Override public boolean containsValue(@Nullable Object value) { 70 @Override public boolean equals(@Nullable Object object) {
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
TestSpecialOperations.idl | 8 // [ImplementedAs], [TypeChecking=Interface|Nullable], union return, nullability 11 [TypeChecking=Interface|Nullable] setter Node (DOMString name, Node? value);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/ |
ImmutableEndLocal.java | 38 import javax.annotation.Nullable; 42 @Nullable protected final String name; 43 @Nullable protected final String type; 44 @Nullable protected final String signature; 57 @Nullable String name, 58 @Nullable String type, 59 @Nullable String signature) { 81 @Nullable @Override public String getName() { return name; } 82 @Nullable @Override public String getType() { return type; } 83 @Nullable @Override public String getSignature() { return signature; [all...] |
ImmutableRestartLocal.java | 38 import javax.annotation.Nullable; 42 @Nullable protected final String name; 43 @Nullable protected final String type; 44 @Nullable protected final String signature; 57 @Nullable String name, 58 @Nullable String type, 59 @Nullable String signature) { 81 @Nullable @Override public String getName() { return name; } 82 @Nullable @Override public String getType() { return type; } 83 @Nullable @Override public String getSignature() { return signature; [all...] |
ImmutableStartLocal.java | 42 import javax.annotation.Nullable; 46 @Nullable protected final String name; 47 @Nullable protected final String type; 48 @Nullable protected final String signature; 52 @Nullable String name, 53 @Nullable String type, 54 @Nullable String signature) { 77 @Nullable @Override public StringReference getNameReference() { 85 @Nullable @Override public TypeReference getTypeReference() { 93 @Nullable @Override public StringReference getSignatureReference() [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
ImmutableClassDef.java | 46 import javax.annotation.Nullable; 54 @Nullable protected final String superclass; 56 @Nullable protected final String sourceFile; 65 @Nullable String superclass, 66 @Nullable Collection<String> interfaces, 67 @Nullable String sourceFile, 68 @Nullable Collection<? extends Annotation> annotations, 69 @Nullable Iterable<? extends Field> fields, 70 @Nullable Iterable<? extends Method> methods) { 92 @Nullable String superclass [all...] |
/external/guava/guava-tests/test/com/google/common/testing/ |
NullPointerTesterTest.java | 32 import javax.annotation.Nullable; 70 staticOneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { 74 staticOneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) { 78 staticOneArgNullableThrowsNPE(@Nullable String s) { 91 public void oneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { 94 public void oneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) { 97 public void oneArgNullableThrowsNPE(@Nullable String s) { 174 * Class for testing all permutations of nullable/non-nullable two-argument 177 * normalNormal: two params, neither is Nullable [all...] |
/external/bison/src/ |
nullable.c | 22 /* Set up NULLABLE, a vector saying which nonterminals can expand into 23 the null string. NULLABLE[I - NTOKENS] is nonzero if symbol I can 31 #include "nullable.h" 42 bool *nullable = NULL; variable 48 fputs ("NULLABLE\n", out); 51 nullable[i - ntokens] ? "yes" : "no"); 72 nullable = xcalloc (nvars, sizeof *nullable); 108 && ! nullable[rules_ruleno->lhs->number - ntokens]) 110 nullable[rules_ruleno->lhs->number - ntokens] = true [all...] |
nullable.h | 24 NULLABLE[I - NTOKENS] is nonzero if symbol I can do so. */ 25 extern bool *nullable; 27 /* Set up NULLABLE. */ 30 /* Free NULLABLE. */
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/ |
BuilderStartLocal.java | 40 import javax.annotation.Nullable; 44 @Nullable private final StringReference name; 45 @Nullable private final TypeReference type; 46 @Nullable private final StringReference signature; 49 @Nullable StringReference name, 50 @Nullable TypeReference type, 51 @Nullable StringReference signature) { 60 @Nullable @Override public StringReference getNameReference() { return name; } 61 @Nullable @Override public TypeReference getTypeReference() { return type; } 62 @Nullable @Override public StringReference getSignatureReference() { return signature; [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
ReflectionClassDef.java | 46 import javax.annotation.Nullable; 70 @Nullable @Override public String getSuperclass() { 85 @Nullable @Override public String apply(@Nullable Class input) { 100 @Nullable @Override public String getSourceFile() { 114 @Override public boolean apply(@Nullable java.lang.reflect.Field input) { 121 @Nullable @Override public Field apply(@Nullable java.lang.reflect.Field input) { 136 @Override public boolean apply(@Nullable java.lang.reflect.Field input) { 143 @Nullable @Override public Field apply(@Nullable java.lang.reflect.Field input) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
EXTBlendMinMax.idl | 8 TypeChecking=Interface|Nullable,
|
/external/jsr305/ |
README.android | 4 Description: "Annotations for Software Defect Detection." ie. @Nullable and friends
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
Nullable.java | 14 public @interface Nullable {
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
BuilderExceptionHandler.java | 38 import javax.annotation.Nullable; 52 static BuilderExceptionHandler newExceptionHandler(@Nullable final TypeReference exceptionType, 58 @Nullable @Override public String getExceptionType() { 66 @Nullable @Override public TypeReference getExceptionTypeReference() { 74 @Nullable @Override public String getExceptionType() { 84 static BuilderExceptionHandler newExceptionHandler(@Nullable final String exceptionType, 90 @Nullable @Override public String getExceptionType() {
|
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
ClassSection.java | 41 import javax.annotation.Nullable; 51 @Nullable Map.Entry<? extends ClassKey, Integer> getClassEntryByType(@Nullable TypeKey key); 55 @Nullable TypeKey getSuperclass(@Nonnull ClassKey key); 56 @Nullable TypeListKey getSortedInterfaces(@Nonnull ClassKey key); 57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key); 58 @Nullable Collection<? extends EncodedValue> getStaticInitializers(@Nonnull ClassKey key); 70 @Nullable AnnotationSetKey getClassAnnotations(@Nonnull ClassKey key); 71 @Nullable AnnotationSetKey getFieldAnnotations(@Nonnull FieldKey key); 72 @Nullable AnnotationSetKey getMethodAnnotations(@Nonnull MethodKey key) [all...] |
/frameworks/base/media/java/android/media/ |
MediaDescription.java | 4 import android.annotation.Nullable; 81 public @Nullable String getMediaId() { 90 public @Nullable CharSequence getTitle() { 99 public @Nullable CharSequence getSubtitle() { 108 public @Nullable CharSequence getDescription() { 117 public @Nullable Bitmap getIconBitmap() { 126 public @Nullable Uri getIconUri() { 135 public @Nullable Bundle getExtras() { 197 public Builder setMediaId(@Nullable String mediaId) { 208 public Builder setTitle(@Nullable CharSequence title) [all...] |