/external/opencensus-java/checker-framework/stubs/ |
D | org-springframework-cloud-sleuth.astub | 3 import org.checkerframework.checker.nullness.qual.Nullable; 8 @Nullable Span close(@Nullable Span span); 9 @Nullable Span continueSpan(@Nullable Span span); 10 @Nullable Span createSpan(String name); 11 @Nullable Span createSpan(String name, @Nullable Sampler sampler); 12 @Nullable Span createSpan(String name, @Nullable Span parent); 13 @Nullable Span detach(@Nullable Span span); 14 @Nullable Span getCurrentSpan(); 18 Span (Span span, @Nullable Span parent);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableClassDef.java | 46 import javax.annotation.Nullable; 55 @Nullable protected final String superclass; 57 @Nullable protected final String sourceFile; 66 @Nullable String superclass, in ImmutableClassDef() 67 @Nullable Collection<String> interfaces, in ImmutableClassDef() 68 @Nullable String sourceFile, in ImmutableClassDef() 69 @Nullable Collection<? extends Annotation> annotations, in ImmutableClassDef() 70 @Nullable Iterable<? extends Field> fields, in ImmutableClassDef() 71 @Nullable Iterable<? extends Method> methods) { in ImmutableClassDef() 93 @Nullable String superclass, in ImmutableClassDef() [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | Multimap.java | 26 import javax.annotation.Nullable; 187 boolean containsKey(@Nullable Object key); in containsKey() 193 boolean containsValue(@Nullable Object value); in containsValue() 199 boolean containsEntry(@Nullable Object key, @Nullable Object value); in containsEntry() 215 boolean put(@Nullable K key, @Nullable V value); in put() 225 boolean remove(@Nullable Object key, @Nullable Object value); in remove() 242 boolean putAll(@Nullable K key, Iterable<? extends V> values); in putAll() 264 Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values); in replaceValues() 277 Collection<V> removeAll(@Nullable Object key); in removeAll() 295 Collection<V> get(@Nullable K key); in get() [all …]
|
D | Table.java | 26 import javax.annotation.Nullable; 70 boolean contains(@Nullable Object rowKey, @Nullable Object columnKey); in contains() 78 boolean containsRow(@Nullable Object rowKey); in containsRow() 86 boolean containsColumn(@Nullable Object columnKey); in containsColumn() 94 boolean containsValue(@Nullable Object value); in containsValue() 103 V get(@Nullable Object rowKey, @Nullable Object columnKey); in get() 118 boolean equals(@Nullable Object obj); in equals() 162 V remove(@Nullable Object rowKey, @Nullable Object columnKey); in remove() 285 boolean equals(@Nullable Object obj); in equals()
|
D | HashBasedTable.java | 28 import javax.annotation.Nullable; 118 @Nullable Object rowKey, @Nullable Object columnKey) { in contains() 122 @Override public boolean containsColumn(@Nullable Object columnKey) { in containsColumn() 126 @Override public boolean containsRow(@Nullable Object rowKey) { in containsRow() 130 @Override public boolean containsValue(@Nullable Object value) { in containsValue() 134 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) { in get() 138 @Override public boolean equals(@Nullable Object obj) { in equals() 143 @Nullable Object rowKey, @Nullable Object columnKey) { in remove()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/ |
D | 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, in BuilderStartLocal() 50 @Nullable TypeReference type, in BuilderStartLocal() 51 @Nullable StringReference signature) { in BuilderStartLocal() 60 @Nullable @Override public StringReference getNameReference() { return name; } in getNameReference() 61 @Nullable @Override public TypeReference getTypeReference() { return type; } in getTypeReference() 62 @Nullable @Override public StringReference getSignatureReference() { return signature; } in getSignatureReference() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
D | ReflectionClassDef.java | 47 import javax.annotation.Nullable; 72 @Nullable @Override public String getSuperclass() { in getSuperclass() 85 @Nullable in getInterfaces() 87 public String apply(@Nullable Class input) { in getInterfaces() 96 @Nullable @Override public String getSourceFile() { 110 … @Override public boolean apply(@Nullable java.lang.reflect.Field input) { 117 … @Nullable @Override public Field apply(@Nullable java.lang.reflect.Field input) { 132 … @Override public boolean apply(@Nullable java.lang.reflect.Field input) { 139 … @Nullable @Override public Field apply(@Nullable java.lang.reflect.Field input) { 153 … @Nullable @Override public Field apply(@Nullable java.lang.reflect.Field input) { [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/ |
D | 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, in ImmutableStartLocal() 53 @Nullable String type, in ImmutableStartLocal() 54 @Nullable String signature) { in ImmutableStartLocal() 77 @Nullable @Override public StringReference getNameReference() { in getNameReference() 85 @Nullable @Override public TypeReference getTypeReference() { 93 @Nullable @Override public StringReference getSignatureReference() { [all …]
|
D | 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, in ImmutableEndLocal() 58 @Nullable String type, in ImmutableEndLocal() 59 @Nullable String signature) { in ImmutableEndLocal() 81 @Nullable @Override public String getName() { return name; } in getName() 82 @Nullable @Override public String getType() { return type; } in getType() 83 @Nullable @Override public String getSignature() { return signature; } in getSignature()
|
D | 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, in ImmutableRestartLocal() 58 @Nullable String type, in ImmutableRestartLocal() 59 @Nullable String signature) { in ImmutableRestartLocal() 81 @Nullable @Override public String getName() { return name; } in getName() 82 @Nullable @Override public String getType() { return type; } in getType() 83 @Nullable @Override public String getSignature() { return signature; } in getSignature()
|
/external/opencensus-java/api/src/test/java/io/opencensus/trace/ |
D | AttributeValueTest.java | 25 import javax.annotation.Nullable; 39 @Nullable in stringAttributeValue() 47 @Nullable in stringAttributeValue() 55 @Nullable in stringAttributeValue() 70 @Nullable in booleanAttributeValue() 78 @Nullable in booleanAttributeValue() 86 @Nullable in booleanAttributeValue() 101 @Nullable in longAttributeValue() 109 @Nullable in longAttributeValue() 117 @Nullable in longAttributeValue() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | ClassSection.java | 41 import javax.annotation.Nullable; 51 @Nullable Map.Entry<? extends ClassKey, Integer> getClassEntryByType(@Nullable TypeKey key); in getClassEntryByType() 55 @Nullable TypeKey getSuperclass(@Nonnull ClassKey key); in getSuperclass() 56 @Nullable TypeListKey getInterfaces(@Nonnull ClassKey key); in getInterfaces() 57 @Nullable StringKey getSourceFile(@Nonnull ClassKey key); in getSourceFile() 58 @Nullable Collection<? extends EncodedValue> getStaticInitializers(@Nonnull ClassKey key); in getStaticInitializers() 70 @Nullable AnnotationSetKey getClassAnnotations(@Nonnull ClassKey key); in getClassAnnotations() 71 @Nullable AnnotationSetKey getFieldAnnotations(@Nonnull FieldKey key); in getFieldAnnotations() 72 @Nullable AnnotationSetKey getMethodAnnotations(@Nonnull MethodKey key); in getMethodAnnotations() 73 @Nullable List<? extends AnnotationSetKey> getParameterAnnotations(@Nonnull MethodKey key); in getParameterAnnotations() [all …]
|
/external/guava/guava/src/com/google/common/base/ |
D | Converter.java | 27 import javax.annotation.Nullable; 145 @Nullable 146 public final B convert(@Nullable A a) { in convert() 150 @Nullable 151 B correctedDoForward(@Nullable A a) { in correctedDoForward() 160 @Nullable 161 A correctedDoBackward(@Nullable B b) { in correctedDoBackward() 242 @Nullable 243 A correctedDoForward(@Nullable B b) { 248 @Nullable [all …]
|
D | Equivalence.java | 26 import javax.annotation.Nullable; 64 public final boolean equivalent(@Nullable T a, @Nullable T b) { in equivalent() 100 public final int hash(@Nullable T t) { in hash() 150 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) { in wrap() 174 @Nullable private final T reference; 176 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) { in Wrapper() 182 @Nullable public T get() { in get() 191 @Override public boolean equals(@Nullable Object obj) { in equals() 254 public final Predicate<T> equivalentTo(@Nullable T target) { in equivalentTo() 261 @Nullable private final T target; [all …]
|
D | Functions.java | 28 import javax.annotation.Nullable; 88 @Nullable 89 public Object apply(@Nullable Object o) { in apply() 119 public V apply(@Nullable K key) { in apply() 125 @Override public boolean equals(@Nullable Object o) { in equals() 154 public static <K, V> Function<K, V> forMap(Map<K, ? extends V> map, @Nullable V defaultValue) { in forMap() 162 ForMapWithDefault(Map<K, ? extends V> map, @Nullable V defaultValue) { in ForMapWithDefault() 168 public V apply(@Nullable K key) { in apply() 173 @Override public boolean equals(@Nullable Object o) { in equals() 215 public C apply(@Nullable A a) { in apply() [all …]
|
D | Preconditions.java | 19 import javax.annotation.Nullable; 120 public static void checkArgument(boolean expression, @Nullable Object errorMessage) { in checkArgument() 142 @Nullable String errorMessageTemplate, in checkArgument() 143 @Nullable Object... errorMessageArgs) { in checkArgument() 171 public static void checkState(boolean expression, @Nullable Object errorMessage) { in checkState() 194 @Nullable String errorMessageTemplate, in checkState() 195 @Nullable Object... errorMessageArgs) { in checkState() 224 public static <T> T checkNotNull(T reference, @Nullable Object errorMessage) { in checkNotNull() 246 @Nullable String errorMessageTemplate, in checkNotNull() 247 @Nullable Object... errorMessageArgs) { in checkNotNull() [all …]
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliAnnotation.java | 40 import org.jetbrains.annotations.Nullable; 60 @Nullable @Override public String getQualifiedName() { in getQualifiedName() 68 @Nullable public String getSmaliName() { in getSmaliName() 81 @Nullable @Override public PsiJavaCodeReferenceElement getNameReferenceElement() { in getNameReferenceElement() 92 …@Nullable @Override public PsiAnnotationMemberValue findAttributeValue(@Nullable @NonNls String at… in findAttributeValue() 96 @Nullable @Override 97 …public PsiAnnotationMemberValue findDeclaredAttributeValue(@Nullable @NonNls String attributeName)… in findDeclaredAttributeValue() 103 @Nullable @NonNls String attributeName, @Nullable T value) { in setDeclaredAttributeValue() 108 @Nullable @Override public PsiAnnotationOwner getOwner() { in getOwner() 112 @Nullable @Override public PsiMetaData getMetaData() { in getMetaData()
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/trace/ |
D | SpanBuilderImpl.java | 40 import javax.annotation.Nullable; 53 @Nullable private final Span parent; 54 @Nullable private final SpanContext remoteParentSpanContext; 55 @Nullable private Sampler sampler; 57 @Nullable private Boolean recordEvents; 58 @Nullable private Kind kind; 61 @Nullable SpanContext parent, in startSpanInternal() 62 @Nullable Boolean hasRemoteParent, in startSpanInternal() 64 @Nullable Sampler sampler, in startSpanInternal() 66 @Nullable Boolean recordEvents, in startSpanInternal() [all …]
|
D | RecordEventsSpanImpl.java | 49 import javax.annotation.Nullable; 63 @Nullable private final SpanId parentSpanId; 65 @Nullable private final Boolean hasRemoteParent; 73 @Nullable private final Kind kind; 78 @Nullable private final TimestampConverter timestampConverter; 83 @Nullable 87 @Nullable 91 @Nullable 95 @Nullable 99 @Nullable [all …]
|
D | StartEndHandlerImpl.java | 26 import javax.annotation.Nullable; 36 @Nullable private final RunningSpanStoreImpl runningSpanStore; 37 @Nullable private final SampledSpanStoreImpl sampledSpanStore; 53 @Nullable RunningSpanStoreImpl runningSpanStore, in StartEndHandlerImpl() 54 @Nullable SampledSpanStoreImpl sampledSpanStore, in StartEndHandlerImpl() 81 @Nullable private final RunningSpanStoreImpl activeSpansExporter; 83 SpanStartEvent(RecordEventsSpanImpl span, @Nullable RunningSpanStoreImpl activeSpansExporter) { in SpanStartEvent() 99 @Nullable private final RunningSpanStoreImpl runningSpanStore; 101 @Nullable private final SampledSpanStoreImpl sampledSpanStore; 106 @Nullable RunningSpanStoreImpl runningSpanStore, in SpanEndEvent() [all …]
|
/external/opencensus-java/api/src/main/java/io/opencensus/trace/export/ |
D | SpanData.java | 37 import javax.annotation.Nullable; 62 @Nullable SpanId parentSpanId, in create() 63 @Nullable Boolean hasRemoteParent, in create() 70 @Nullable Integer childSpanCount, in create() 71 @Nullable Status status, in create() 72 @Nullable Timestamp endTimestamp) { in create() 116 @Nullable SpanId parentSpanId, in create() 117 @Nullable Boolean hasRemoteParent, in create() 119 @Nullable Kind kind, in create() 125 @Nullable Integer childSpanCount, in create() [all …]
|
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/ |
D | Summary.java | 25 import javax.annotation.Nullable; 50 public static Summary create(@Nullable Long count, @Nullable Double sum, Snapshot snapshot) { in create() 62 @Nullable 71 @Nullable 96 @Nullable 105 @Nullable 126 @Nullable Long count, @Nullable Double sum, List<ValueAtPercentile> valueAtPercentiles) { in create() 180 private static void checkCountAndSum(@Nullable Long count, @Nullable Double sum) { in checkCountAndSum()
|
/external/testng/src/main/java/org/testng/reporters/ |
D | XMLStringBuffer.java | 8 import org.testng.internal.Nullable; 64 …private void init(IBuffer buffer, String start, @Nullable String version, @Nullable String encodin… in init() 102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) { in push() 115 public void push(String tagName, @Nullable String schema) { in push() 126 public void push(String tagName, @Nullable Properties attributes) { in push() 192 public void addRequired(String tagName, @Nullable String value) { in addRequired() 203 public void addRequired(String tagName, @Nullable String value, @Nullable Properties attributes) { in addRequired() 206 public void addRequired(String tagName, @Nullable String value, String... attributes) { in addRequired() 217 public void addOptional(String tagName, @Nullable String value, @Nullable Properties attributes) { in addOptional() 223 public void addOptional(String tagName, @Nullable String value, String... attributes) { in addOptional() [all …]
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
D | CallOptions.java | 30 import javax.annotation.Nullable; 52 @Nullable 55 @Nullable 58 @Nullable 71 @Nullable 73 @Nullable 87 public CallOptions withAuthority(@Nullable String authority) { in withAuthority() 96 public CallOptions withCallCredentials(@Nullable CallCredentials credentials) { in withCallCredentials() 107 public CallOptions withCompression(@Nullable String compressorName) { in withCompression() 121 public CallOptions withDeadline(@Nullable Deadline deadline) { in withDeadline() [all …]
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | NullPointerTesterTest.java | 51 import javax.annotation.Nullable; 83 staticOneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { in staticOneArgNullableCorrectlyDoesNotThrowNPE() 87 staticOneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) { in staticOneArgNullableCorrectlyThrowsOtherThanNPE() 91 staticOneArgNullableThrowsNPE(@Nullable String s) { in staticOneArgNullableThrowsNPE() 104 public void oneArgNullableCorrectlyDoesNotThrowNPE(@Nullable String s) { in oneArgNullableCorrectlyDoesNotThrowNPE() 107 public void oneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) { in oneArgNullableCorrectlyThrowsOtherThanNPE() 110 public void oneArgNullableThrowsNPE(@Nullable String s) { in oneArgNullableThrowsNPE() 276 public void normalNullable(String first, @Nullable Integer second) { in normalNullable() 281 public void nullableNormal(@Nullable String first, Integer second) { in nullableNormal() 287 @Nullable String first, @Nullable Integer second) { in nullableNullable() [all …]
|