HomeSort by relevance Sort by last modified time
    Searched refs:Nullable (Results 151 - 175 of 2067) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/name/
DeviceNameSettingsActivity.java 19 import android.annotation.Nullable;
30 protected void onCreate(@Nullable Bundle savedInstanceState) {
  /platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/
ManyConfigResourceActivity.java 18 import android.annotation.Nullable;
25 protected void onCreate(@Nullable Bundle savedInstanceState) {
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/app/
FragmentContentIdActivity.java 19 import android.support.annotation.Nullable;
53 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
54 @Nullable Bundle savedInstanceState) {
62 @Nullable
64 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
65 @Nullable Bundle savedInstanceState) {
  /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 getInterfaces(@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...]
  /external/guava/guava/src/com/google/common/collect/
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...]
ImmutableMapEntry.java 23 import javax.annotation.Nullable;
45 @Nullable
48 @Nullable
61 @Nullable
67 @Nullable
  /frameworks/base/core/java/android/hardware/camera2/
CameraCaptureSession.java 20 import android.annotation.Nullable;
338 @Nullable CaptureCallback listener, @Nullable Handler handler)
400 @Nullable CaptureCallback listener, @Nullable Handler handler)
467 @Nullable CaptureCallback listener, @Nullable Handler handler)
539 @Nullable CaptureCallback listener, @Nullable Handler handler)
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 20 import android.annotation.Nullable;
132 public static boolean isEmpty(@Nullable Collection<?> array) {
139 public static <T> boolean isEmpty(@Nullable T[] array) {
146 public static boolean isEmpty(@Nullable int[] array) {
153 public static boolean isEmpty(@Nullable long[] array) {
160 public static boolean isEmpty(@Nullable byte[] array) {
167 public static boolean isEmpty(@Nullable boolean[] array) {
177 public static <T> boolean contains(@Nullable T[] array, T value) {
185 public static <T> int indexOf(@Nullable T[] array, T value) {
196 public static <T> boolean containsAll(@Nullable T[] array, T[] check)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneAccountUtils.java 21 import android.support.annotation.Nullable;
55 @Nullable
56 public static PhoneAccountHandle getAccount(@Nullable String componentString,
57 @Nullable String accountId) {
71 @Nullable
73 @Nullable PhoneAccountHandle accountHandle) {
84 public static int getAccountColor(Context context, @Nullable PhoneAccountHandle accountHandle) {
98 @Nullable PhoneAccountHandle accountHandle) {
109 @Nullable
111 @Nullable PhoneAccountHandle accountHandle)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 26 import javax.annotation.Nullable;
64 public final boolean equivalent(@Nullable T a, @Nullable T b) {
100 public final int hash(@Nullable T t) {
150 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) {
174 @Nullable private final T reference;
176 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) {
182 @Nullable public T get() {
191 @Override public boolean equals(@Nullable Object obj) {
254 public final Predicate<T> equivalentTo(@Nullable T target)
    [all...]
Preconditions.java 19 import javax.annotation.Nullable;
120 public static void checkArgument(boolean expression, @Nullable Object errorMessage) {
142 @Nullable String errorMessageTemplate,
143 @Nullable Object... errorMessageArgs) {
171 public static void checkState(boolean expression, @Nullable Object errorMessage) {
194 @Nullable String errorMessageTemplate,
195 @Nullable Object... errorMessageArgs) {
224 public static <T> T checkNotNull(T reference, @Nullable Object errorMessage) {
246 @Nullable String errorMessageTemplate,
247 @Nullable Object... errorMessageArgs)
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
TelephonyManagerCompat.java 20 import android.support.annotation.Nullable;
44 public static boolean isVoiceCapable(@Nullable TelephonyManager telephonyManager) {
67 public static int getPhoneCount(@Nullable TelephonyManager telephonyManager) {
88 public static String getDeviceId(@Nullable TelephonyManager telephonyManager, int slotId) {
107 public static boolean isTtyModeSupported(@Nullable TelephonyManager telephonyManager) {
126 @Nullable TelephonyManager telephonyManager) {
147 @Nullable
  /frameworks/base/core/java/android/content/
ContentProviderClient.java 20 import android.annotation.Nullable;
124 public @Nullable Cursor query(@NonNull Uri url, @Nullable String[] projection,
125 @Nullable String selection, @Nullable String[] selectionArgs,
126 @Nullable String sortOrder) throws RemoteException {
131 public @Nullable Cursor query(@NonNull Uri url, @Nullable String[] projection,
132 @Nullable String selection, @Nullable String[] selectionArgs
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableMethodImplementation.java 45 import javax.annotation.Nullable;
55 @Nullable Iterable<? extends Instruction> instructions,
56 @Nullable List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks,
57 @Nullable Iterable<? extends DebugItem> debugItems) {
65 @Nullable ImmutableList<? extends ImmutableInstruction> instructions,
66 @Nullable ImmutableList<? extends ImmutableTryBlock> tryBlocks,
67 @Nullable ImmutableList<? extends ImmutableDebugItem> debugItems) {
74 @Nullable
75 public static ImmutableMethodImplementation of(@Nullable MethodImplementation methodImplementation) {
ImmutableDexFile.java 41 import javax.annotation.Nullable;
49 public ImmutableDexFile(@Nullable Collection<? extends ClassDef> classes) {
55 public ImmutableDexFile(@Nullable ImmutableSet<? extends ImmutableClassDef> classes) {
60 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable Collection<? extends ClassDef> classes) {
65 public ImmutableDexFile(@Nonnull Opcodes opcodes, @Nullable ImmutableSet<? extends ImmutableClassDef> classes) {
ImmutableExceptionHandler.java 40 import javax.annotation.Nullable;
43 @Nullable protected final String exceptionType;
46 public ImmutableExceptionHandler(@Nullable String exceptionType,
61 @Nullable @Override public String getExceptionType() { return exceptionType; }
66 @Nullable Iterable<? extends ExceptionHandler> list) {
  /external/guava/guava/src/com/google/common/io/
Closeables.java 29 import javax.annotation.Nullable;
73 public static void close(@Nullable Closeable closeable,
108 public static void closeQuietly(@Nullable Closeable closeable) {
130 public static void closeQuietly(@Nullable InputStream inputStream) {
151 public static void closeQuietly(@Nullable Reader reader) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashBiMap.java 22 import javax.annotation.Nullable;
74 @Override public V put(@Nullable K key, @Nullable V value) {
78 @Override public V forcePut(@Nullable K key, @Nullable V value) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableSetSourceFile.java 40 import javax.annotation.Nullable;
43 @Nullable protected final String sourceFile;
46 @Nullable String sourceFile) {
61 @Nullable @Override public String getSourceFile() { return sourceFile; }
63 @Nullable @Override public StringReference getSourceFileReference() {
  /frameworks/base/core/java/android/app/
IntentService.java 20 import android.annotation.Nullable;
118 public void onStart(@Nullable Intent intent, int startId) {
132 public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
148 @Nullable
170 protected abstract void onHandleIntent(@Nullable Intent intent);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
ReflectionUtils.java 20 import android.annotation.Nullable;
32 @Nullable Class<?>... params) throws ReflectionException {
40 @Nullable
41 public static Object invoke(@NonNull Method method, @Nullable Object object,
42 @Nullable Object... args) throws ReflectionException {
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
RenderResult.java 24 import android.annotation.Nullable;
35 private RenderResult(@Nullable Result result, @Nullable List<ViewInfo> systemViewInfoList,
36 @Nullable List<ViewInfo> rootViewInfoList) {
49 @Nullable
  /frameworks/support/transition/src/android/support/transition/
TransitionManager.java 21 import android.support.annotation.Nullable;
83 public static void go(@NonNull Scene scene, @Nullable Transition transition) {
124 @Nullable Transition transition) {
137 public void setTransition(@NonNull Scene scene, @Nullable Transition transition) {
154 @Nullable Transition transition) {
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ThemedSpinnerAdapter.java 24 import android.support.annotation.Nullable;
51 void setDropDownViewTheme(@Nullable Resources.Theme theme);
60 @Nullable
92 * public void setDropDownViewTheme(@Nullable Resources.Theme theme) {
122 public void setDropDownViewTheme(@Nullable Resources.Theme theme) {
137 @Nullable
  /packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/
TriggerStateMachine.java 20 import android.support.annotation.Nullable;
58 @Nullable
60 @Nullable
74 public boolean update(long frameNumber, @Nullable Integer triggerState, @Nullable Integer

Completed in 3257 milliseconds

1 2 3 4 5 67 8 91011>>