HomeSort by relevance Sort by last modified time
    Searched refs:nullable (Results 26 - 50 of 70) sorted by null

12 3

  /external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Decoder.java 309 public Decoder readPointer(int offset, boolean nullable) {
313 if (!nullable) {
315 "Trying to decode null pointer for a non-nullable type.");
442 public Handle readHandle(int offset, boolean nullable) {
445 if (!nullable) {
447 "Trying to decode an invalid handle for a non-nullable type.");
458 public UntypedHandle readUntypedHandle(int offset, boolean nullable) {
459 return readHandle(offset, nullable).toUntypedHandle();
465 public DataPipe.ConsumerHandle readConsumerHandle(int offset, boolean nullable) {
466 return readUntypedHandle(offset, nullable).toDataPipeConsumerHandle()
    [all...]
Encoder.java 212 public void encode(Struct v, int offset, boolean nullable) {
214 encodeNullPointer(offset, nullable);
224 public void encode(Union v, int offset, boolean nullable) {
225 if (v == null && !nullable) {
227 "Trying to encode a null pointer for a non-nullable type.");
240 public void encode(String v, int offset, boolean nullable) {
242 encodeNullPointer(offset, nullable);
245 final int arrayNullability = nullable
254 public void encode(Handle v, int offset, boolean nullable) {
256 encodeInvalidHandle(offset, nullable);
280 encode(handler.passHandle(), offset, nullable); local
303 encode(v.passHandle(), offset, nullable); local
    [all...]
  /frameworks/base/cmds/idmap2/idmap2d/aidl/android/os/
IIdmap2.aidl 35 @nullable @utf8InCpp String createIdmap(@utf8InCpp String targetApkPath,
  /cts/tools/dasm/src/java_cup/
non_terminal.java 137 /* only look at things that aren't already marked nullable */
138 if (!nt.nullable())
236 public boolean nullable() {return _nullable;} method in class:non_terminal
258 /** Test to see if this non terminal currently looks nullable. */
261 /* look and see if any of the productions now look nullable */
263 /* if the production can go to empty, we are nullable */
267 /* none of the productions can go to empty, so we are not nullable */
276 return super.toString() + "[" + index() + "]" + (nullable() ? "*" : "");
lalr_item.java 188 /* consider all nullable symbols after the one to the right of the dot */
209 /* if its nullable we continue adding, if not, we are done */
210 if (!((non_terminal)sym).nullable())
216 /* if we get here everything past the dot was nullable
225 * way to the end of the right hand side is nullable. This would indicate
240 /* walk down the rhs and bail if we get a non-nullable symbol */
253 /* if its not nullable we fail */
254 if (!((non_terminal)sym).nullable()) return false;
258 /* if we get here its all nullable */
production.java 237 public boolean nullable() {return _nullable;} method in class:production
605 /** Check to see if the production (now) appears to be nullable.
606 * A production is nullable if its RHS could derive the empty string.
608 * which themselves are nullable.
617 if (nullable_known()) return nullable();
619 /* if we have a zero size RHS we are directly nullable */
636 /* if its a terminal we are definitely not nullable */
639 /* its a non-term, is it marked nullable */
640 else if (!((non_terminal)sym).nullable())
641 /* this one not (yet) nullable, so we aren't *
    [all...]
  /external/protobuf/objectivec/
GPBCodedInputStream.h 98 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry;
GPBArray.h 333 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func;
334 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
337 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
340 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
344 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
348 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
460 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func;
461 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
464 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
467 //%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)fun
    [all...]
  /external/clang/test/Index/
complete-method-decls.m 89 -(nonnull I2 *)produceI2:(nullable I2 *)i2;
91 @property (nullable, strong) id prop;
92 @property (nullable, strong) void(^propWB)(int *_Nullable);
179 // CHECK-CCF: NotImplemented:{TypedText nullable} (40)
  /external/grpc-grpc/src/objective-c/GRPCClient/private/
GRPCHost.m 46 + (nullable instancetype)hostWithAddress:(NSString *)address {
62 - (nullable instancetype)initWithAddress:(NSString *)address {
119 - (nullable grpc_call *)unmanagedCallWithPath:(NSString *)path
148 - (BOOL)setTLSPEMRootCerts:(nullable NSString *)pemRootCerts
149 withPrivateKey:(nullable NSString *)pemPrivateKey
150 withCertChain:(nullable NSString *)pemCertChain
  /cts/tests/admin/src/android/admin/cts/
DeviceAdminActivationTest.java 180 Mockito.nullable(Intent.class));
189 Mockito.nullable(Intent.class));
  /external/libchrome/mojo/public/tools/bindings/generators/
mojom_js_generator.py 505 nullable = self._JavaScriptNullableParam(field)
512 (element_size, element_type, nullable,
519 nullable = self._JavaScriptNullableParam(field)
521 return "%s, %s" % (struct_type, nullable)
524 nullable = self._JavaScriptNullableParam(field)
526 return "%s, %s" % (union_type, nullable)
529 nullable = self._JavaScriptNullableParam(field)
535 (nullable, keys_type, values_type, values_nullable)
  /external/wayland/src/
connection.c 429 details->nullable = 0;
443 details->nullable = 1;
562 if (!arg.nullable && args[i].s == NULL)
566 if (!arg.nullable && args[i].o == NULL)
571 if (!arg.nullable && object == NULL)
577 if (!arg.nullable && args[i].a == NULL)
717 if (id == 0 && !arg.nullable) {
718 wl_log("NULL object received on non-nullable "
729 if (id == 0 && !arg.nullable) {
730 wl_log("NULL new ID received on non-nullable "
    [all...]
wayland-private.h 156 int nullable; member in struct:argument_details
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
spark.py 150 del rv['nullable']
210 self.nullable = {}
215 self.nullable[lhs] = 0
219 self.nullable[lhs] = 1
236 if self.nullable[lhs]:
239 if not self.nullable[sym]:
242 self.nullable[lhs] = 1
272 not self.nullable[sym]:
  /external/python/cpython2/Parser/
spark.py 150 del rv['nullable']
210 self.nullable = {}
215 self.nullable[lhs] = 0
219 self.nullable[lhs] = 1
236 if self.nullable[lhs]:
239 if not self.nullable[sym]:
242 self.nullable[lhs] = 1
272 not self.nullable[sym]:
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
InteropServer.cs 43 // Deliberately using nullable bool type to allow --use_tls=true syntax (as opposed to --use_tls)
  /cts/tests/app/src/android/app/cts/
WallpaperManagerTest.java 21 import static org.mockito.ArgumentMatchers.nullable;
404 .onColorsChanged(nullable(WallpaperColors.class), anyInt());
  /external/libchrome/third_party/ply/
yacc.py     [all...]
  /external/ply/ply/ply/
yacc.py     [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
yacc.py     [all...]
  /cts/tests/tests/preference/src/android/preference/cts/
PreferenceDataStoreTest.java 32 import static org.mockito.Matchers.nullable;
173 verify(mDataStore, atLeast(0)).getString(eq(KEY), nullable(String.class)); method
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 

Completed in 4195 milliseconds

12 3