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

1 2 3 4 5 6 7 8

  /external/bison/src/
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. */
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...]
  /frameworks/native/cmds/installd/binder/android/os/
IInstalld.aidl 21 void createUserData(@nullable @utf8InCpp String uuid, int userId, int userSerial, int flags);
22 void destroyUserData(@nullable @utf8InCpp String uuid, int userId, int flags);
24 long createAppData(@nullable @utf8InCpp String uuid, in @utf8InCpp String packageName,
26 void restoreconAppData(@nullable @utf8InCpp String uuid, @utf8InCpp String packageName,
28 void migrateAppData(@nullable @utf8InCpp String uuid, @utf8InCpp String packageName,
30 void clearAppData(@nullable @utf8InCpp String uuid, @utf8InCpp String packageName,
32 void destroyAppData(@nullable @utf8InCpp String uuid, @utf8InCpp String packageName,
35 void fixupAppData(@nullable @utf8InCpp String uuid, int flags);
37 long[] getAppSize(@nullable @utf8InCpp String uuid, in @utf8InCpp String[] packageNames,
40 long[] getUserSize(@nullable @utf8InCpp String uuid, int userId, int flags, in int[] appIds)
    [all...]
  /external/webrtc/webrtc/api/objc/
RTCIceServer.h 21 @property(nonatomic, copy, readonly, nullable) NSString *username;
24 @property(nonatomic, copy, readonly, nullable) NSString *credential;
36 username:(nullable NSString *)username
37 credential:(nullable NSString *)credential
RTCMediaConstraints.h 21 (nullable NSDictionary<NSString *, NSString *> *)mandatory
23 (nullable NSDictionary<NSString *, NSString *> *)optional
RTCIceCandidate.h 21 @property(nonatomic, readonly, nullable) NSString *sdpMid;
39 sdpMid:(nullable NSString *)sdpMid
RTCVideoFrame.h 26 @property(nonatomic, readonly, nullable) const uint8_t *yPlane;
27 @property(nonatomic, readonly, nullable) const uint8_t *uPlane;
28 @property(nonatomic, readonly, nullable) const uint8_t *vPlane;
  /external/protobuf/objectivec/
GPBDescriptor.h 57 @property(nonatomic, readonly, strong, nullable) NSArray<GPBFieldDescriptor*> *fields;
58 @property(nonatomic, readonly, strong, nullable) NSArray<GPBOneofDescriptor*> *oneofs;
59 @property(nonatomic, readonly, nullable) const GPBExtensionRange *extensionRanges;
66 - (nullable GPBFieldDescriptor *)fieldWithNumber:(uint32_t)fieldNumber;
67 - (nullable GPBFieldDescriptor *)fieldWithName:(NSString *)name;
68 - (nullable GPBOneofDescriptor *)oneofWithName:(NSString *)name;
83 - (nullable GPBFieldDescriptor *)fieldWithNumber:(uint32_t)fieldNumber;
84 - (nullable GPBFieldDescriptor *)fieldWithName:(NSString *)name;
101 @property(nonatomic, readonly, assign, nullable) GPBOneofDescriptor *containingOneof;
104 @property(nonatomic, readonly, assign, nullable) Class msgClass
    [all...]
GPBMessage.h 80 @property(nonatomic, copy, nullable) GPBUnknownFieldSet *unknownFields;
118 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry
137 (nullable GPBExtensionRegistry *)extensionRegistry
157 (nullable GPBExtensionRegistry *)extensionRegistry
186 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry
204 (nullable GPBExtensionRegistry *)extensionRegistry
228 - (nullable NSData *)data;
269 - (nullable id)getExtension:(GPBExtensionDescriptor *)extension;
275 - (void)setExtension:(GPBExtensionDescriptor *)extension value:(nullable id)value;
300 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry
    [all...]
GPBExtensionRegistry.h 77 - (nullable GPBExtensionDescriptor *)extensionForDescriptor:(GPBDescriptor *)descriptor
  /system/connectivity/wificond/aidl/android/net/wifi/
IWificond.aidl 28 @nullable IApInterface createApInterface();
31 @nullable IClientInterface createClientInterface();
IWifiScannerImpl.aidl 28 @nullable int[] getAvailable2gChannels();
32 @nullable int[] getAvailable5gNonDFSChannels();
36 @nullable int[] getAvailableDFSChannels();
IClientInterface.aidl 59 @nullable IWifiScannerImpl getWifiScannerImpl();
  /external/clang/test/SemaCXX/
nullability.cpp 72 // Check different forms of assignment to a nonull type from a nullable one.
74 void *_Nullable nullable; local
75 void *_Nonnull p(nullable); // expected-warning{{implicit conversion from nullable pointer 'void * _Nullable' to non-nullable pointer type 'void * _Nonnull'}}
76 void *_Nonnull p2{nullable}; // expected-warning{{implicit conversion from nullable pointer 'void * _Nullable' to non-nullable pointer type 'void * _Nonnull'}}
77 void *_Nonnull p3 = {nullable}; // expected-warning{{implicit conversion from nullable pointer 'void * _Nullable' to non-nullable pointer type 'void * _Nonnull'}
    [all...]
  /external/clang/test/SemaObjCXX/Inputs/
nullability-consistency-2.h 13 @property (retain,nullable) SomeClass *property2;
14 - (nullable SomeClass *)method1;
  /system/tools/aidl/tests/android/aidl/tests/
ITestService.aidl 89 @nullable int[] RepeatNullableIntArray(in @nullable int[] input);
90 @nullable String RepeatNullableString(in @nullable String input);
91 @nullable List<String> RepeatNullableStringList(in @nullable List<String> input);
92 @nullable SimpleParcelable RepeatNullableParcelable(in @nullable SimpleParcelable input);
96 void TakesANullableIBinder(in @nullable IBinder input);
97 void TakesANullableIBinderList(in @nullable List<IBinder> input)
    [all...]
  /frameworks/base/core/java/android/os/
IIncidentManager.aidl 42 @nullable IIncidentReportStatusListener listener,
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DeviceStateMonitorTest.java 24 import static org.mockito.Matchers.nullable;
88 nullable(Message.class)); method
97 nullable(Message.class)); method
100 eq(true), nullable(Message.class)); method
111 eq(true), nullable(Message.class)); method
119 nullable(Message.class)); method
122 eq(true), nullable(Message.class)); method
125 eq(false), nullable(Message.class)); method
TelephonyTest.java 22 import static org.mockito.Matchers.nullable;
337 .makeServiceStateTracker(nullable(GsmCdmaPhone.class),
338 nullable(CommandsInterface.class)); method
340 .makeIccCardProxy(nullable(Context.class), nullable(CommandsInterface.class), method
343 .makeGsmCdmaCallTracker(nullable(GsmCdmaPhone.class));
345 .makeIccPhoneBookInterfaceManager(nullable(Phone.class));
347 .makeDcTracker(nullable(Phone.class));
349 .makeWspTypeDecoder(nullable(byte[].class));
351 .makeInboundSmsTracker(nullable(byte[].class), anyLong(), anyInt(), anyBoolean()
352 anyBoolean(), nullable(String.class), nullable(String.class), method
353 nullable(String.class)); method
356 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
357 anyInt(), anyBoolean(), nullable(String.class)); method
364 nullable(CommandsInterface.class), nullable(Handler.class), method
365 anyInt(), nullable(Object.class)); method
450 nullable(String.class), nullable(IBinder.class), nullable(String.class), anyInt(), method
451 nullable(Intent[].class), nullable(String[].class), anyInt(), method
452 nullable(Bundle.class), anyInt()); method
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
BatteryOptimizationPreferenceControllerTest.java 21 import static org.mockito.ArgumentMatchers.nullable;
85 verify(mSettingsActivity).startPreferencePanel(nullable(Fragment.class),
86 nullable(String.class), nullable(Bundle.class), anyInt(), method
87 nullable(CharSequence.class), nullable(Fragment.class), anyInt()); method
97 verify(mSettingsActivity, never()).startPreferencePanel(nullable(Fragment.class),
98 nullable(String.class), nullable(Bundle.class), anyInt(), method
99 nullable(CharSequence.class), nullable(Fragment.class), anyInt()) method
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
WorkSoundPreferenceControllerTest.java 21 import static org.mockito.ArgumentMatchers.nullable;
97 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class)))
99 when(mAudioHelper.isUserUnlocked(nullable(UserManager.class), anyInt())).thenReturn(true);
107 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class)))
109 when(mAudioHelper.isUserUnlocked(nullable(UserManager.class), anyInt())).thenReturn(true);
117 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class)))
119 when(mAudioHelper.isUserUnlocked(nullable(UserManager.class), anyInt())).thenReturn(true);
131 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class)))
140 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class)))
153 when(mAudioHelper.getManagedProfileId(nullable(UserManager.class))
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/
ZonePickerTest.java 19 import static org.mockito.ArgumentMatchers.nullable;
67 nullable(LayoutInflater.class),
68 nullable(ViewGroup.class), method
69 nullable(Bundle.class)); method
  /external/guice/core/src/com/google/inject/spi/
Dependency.java 43 private final boolean nullable; field in class:Dependency
46 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) {
49 this.nullable = nullable;
55 * nullable.
83 return nullable;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/core/instrumentation/
VisibilityLoggerMixinTest.java 20 import static org.mockito.ArgumentMatchers.nullable;
66 .visible(nullable(Context.class), eq(MetricsProto.MetricsEvent.VIEW_UNKNOWN),
81 .visible(nullable(Context.class), eq(MetricsProto.MetricsEvent.SETTINGS_GESTURES),
90 .hidden(nullable(Context.class), eq(TestInstrumentable.TEST_METRIC));
100 .hidden(nullable(Context.class), anyInt());
111 .hidden(nullable(Context.class), anyInt());
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GsmInboundSmsHandlerTest.java 28 import static org.mockito.Matchers.nullable;
447 .makeInboundSmsTracker(nullable(byte[].class), anyLong(), anyInt(), anyBoolean(),
448 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
449 anyInt(), anyBoolean(), nullable(String.class)); method
460 .makeInboundSmsTracker(nullable(byte[].class), anyLong(), anyInt(), anyBoolean(),
461 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
462 anyInt(), anyBoolean(), nullable(String.class)); method
475 .makeInboundSmsTracker(nullable(byte[].class), anyLong(), anyInt(), anyBoolean()
476 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
477 anyInt(), anyBoolean(), nullable(String.class)); method
505 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
506 anyInt(), anyBoolean(), nullable(String.class)); method
516 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
517 anyInt(), anyBoolean(), nullable(String.class)); method
532 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
533 anyInt(), anyBoolean(), nullable(String.class)); method
550 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
551 anyInt(), anyBoolean(), nullable(String.class)); method
582 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
583 anyInt(), anyBoolean(), nullable(String.class)); method
593 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
594 anyInt(), anyBoolean(), nullable(String.class)); method
621 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
622 anyInt(), anyBoolean(), nullable(String.class)); method
633 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
634 anyInt(), anyBoolean(), nullable(String.class)); method
659 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
660 anyInt(), anyBoolean(), nullable(String.class)); method
671 nullable(String.class), nullable(String.class), anyInt(), anyInt(), method
672 anyInt(), anyBoolean(), nullable(String.class)); method
    [all...]

Completed in 1353 milliseconds

1 2 3 4 5 6 7 8