Searched refs:nullable (Results 1 - 25 of 42) sorted by relevance

12

/external/bison/src/
H A Dnullable.h25 extern bool *nullable;
H A Dnullable.c31 #include "nullable.h"
42 bool *nullable = NULL; variable
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;
121 if (r->useful && ! nullable[r->lhs->number - ntokens])
123 nullable[r->lhs->number - ntokens] = true;
141 free (nullable);
[all...]
/external/webrtc/webrtc/api/objc/
H A DRTCIceServer.h21 @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
H A DRTCMediaConstraints.h21 (nullable NSDictionary<NSString *, NSString *> *)mandatory
23 (nullable NSDictionary<NSString *, NSString *> *)optional
H A DRTCIceCandidate.h21 @property(nonatomic, readonly, nullable) NSString *sdpMid;
39 sdpMid:(nullable NSString *)sdpMid
H A DRTCVideoFrame.h26 @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/
H A DGPBDescriptor.h57 @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) Clas
[all...]
H A DGPBMessage.h80 @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 GPBExtensionRegistr
[all...]
H A DGPBExtensionRegistry.h77 - (nullable GPBExtensionDescriptor *)extensionForDescriptor:(GPBDescriptor *)descriptor
H A DGPBUnknownFieldSet.h52 - (nullable GPBUnknownField *)getField:(int32_t)number;
H A DGPBDictionary.h66 - (BOOL)valueForKey:(uint32_t)key value:(nullable uint32_t *)value;
101 - (BOOL)valueForKey:(uint32_t)key value:(nullable int32_t *)value;
136 - (BOOL)valueForKey:(uint32_t)key value:(nullable uint64_t *)value;
171 - (BOOL)valueForKey:(uint32_t)key value:(nullable int64_t *)value;
206 - (BOOL)valueForKey:(uint32_t)key value:(nullable BOOL *)value;
241 - (BOOL)valueForKey:(uint32_t)key value:(nullable float *)value;
276 - (BOOL)valueForKey:(uint32_t)key value:(nullable double *)value;
298 + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func;
299 + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFunc)func
302 + (instancetype)dictionaryWithValidationFunction:(nullable GPBEnumValidationFun
[all...]
H A DGPBCodedInputStream.h98 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry;
H A DGPBArray.h333 + (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 GPBEnumValidationFun
[all...]
/external/clang/test/SemaCXX/
H A Dnullability.cpp72 // 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 pointe
[all...]
/external/clang/test/SemaObjCXX/Inputs/
H A Dnullability-consistency-2.h13 @property (retain,nullable) SomeClass *property2;
14 - (nullable SomeClass *)method1;
H A Dnullability-pragmas-generics-1.h13 - (nullable T)maybeTee;
/external/guice/core/src/com/google/inject/spi/
H A DDependency.java43 private final boolean nullable; field in class:Dependency
46 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) { argument
49 this.nullable = nullable;
55 * nullable.
83 return nullable;
/external/libmojo/mojo/public/js/
H A Dvalidator.js101 Validator.prototype.validateHandle = function(offset, nullable) {
105 return nullable ?
113 Validator.prototype.validateInterface = function(offset, nullable) {
114 return this.validateHandle(offset, nullable);
187 offset, elementSize, elementType, nullable, expectedDimensionSizes,
194 return nullable ?
202 offset, structClass, nullable) {
208 return nullable ?
215 offset, unionClass, nullable) {
218 return nullable
[all...]
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-for-nullability.h20 - (id)copyWithZone:(nullable NSZone *)zone;
24 - (id)mutableCopyWithZone:(nullable NSZone *)zone;
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDecoder.java288 public Decoder readPointer(int offset, boolean nullable) { argument
292 if (!nullable) {
294 "Trying to decode null pointer for a non-nullable type.");
421 public Handle readHandle(int offset, boolean nullable) { argument
424 if (!nullable) {
426 "Trying to decode an invalid handle for a non-nullable type.");
437 public UntypedHandle readUntypedHandle(int offset, boolean nullable) { argument
438 return readHandle(offset, nullable).toUntypedHandle();
444 public DataPipe.ConsumerHandle readConsumerHandle(int offset, boolean nullable) { argument
445 return readUntypedHandle(offset, nullable)
451 readProducerHandle(int offset, boolean nullable) argument
458 readMessagePipeHandle(int offset, boolean nullable) argument
465 readSharedBufferHandle(int offset, boolean nullable) argument
474 readServiceInterface(int offset, boolean nullable, Interface.Manager<?, P> manager) argument
487 readInterfaceRequest(int offset, boolean nullable) argument
499 readAssociatedServiceInterfaceNotSupported(int offset, boolean nullable) argument
507 readAssociatedInterfaceRequestNotSupported( int offset, boolean nullable) argument
515 readString(int offset, boolean nullable) argument
[all...]
H A DEncoder.java212 public void encode(Struct v, int offset, boolean nullable) { argument
214 encodeNullPointer(offset, nullable);
224 public void encode(Union v, int offset, boolean nullable) { argument
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) { argument
242 encodeNullPointer(offset, nullable);
245 final int arrayNullability = nullable
254 public void encode(Handle v, int offset, boolean nullable) { argument
256 encodeInvalidHandle(offset, nullable);
266 encode(T v, int offset, boolean nullable, Interface.Manager<T, ?> manager) argument
294 encode(InterfaceRequest<I> v, int offset, boolean nullable) argument
309 encode(AssociatedInterfaceNotSupported v, int offset, boolean nullable) argument
315 encode(AssociatedInterfaceRequestNotSupported v, int offset, boolean nullable) argument
508 encodeNullPointer(int offset, boolean nullable) argument
519 encodeInvalidHandle(int offset, boolean nullable) argument
[all...]
/external/libmojo/mojo/public/tools/bindings/generators/
H A Dmojom_js_generator.py220 nullable = JavaScriptNullableParam(field)
227 (element_size, element_type, nullable,
232 nullable = JavaScriptNullableParam(field)
234 return "%s, %s" % (struct_type, nullable)
237 nullable = JavaScriptNullableParam(field)
239 return "%s, %s" % (union_type, nullable)
242 nullable = JavaScriptNullableParam(field)
248 (nullable, keys_type, values_type, values_nullable)
252 nullable = JavaScriptNullableParam(field)
253 return "%s" % (nullable)
[all...]
/external/clang/test/Index/
H A Dcomplete-method-decls.m89 -(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/selinux/python/sepolgen/src/sepolgen/
H A Dyacc.py1306 nullable = {}
1311 nullable[p.name] = 1
1314 if t not in nullable: break
1316 nullable[p.name] = 1
1317 if len(nullable) == num_nullable: break
1318 num_nullable = len(nullable)
1319 return nullable
1352 def dr_relation(C,trans,nullable):
1419 def compute_lookback_includes(C,trans,nullable):
1454 if p.prod[li] not in nullable
[all...]
/external/libmojo/third_party/ply/
H A Dyacc.py2094 nullable = {}
2099 nullable[p.name] = 1
2102 if not t in nullable: break
2104 nullable[p.name] = 1
2105 if len(nullable) == num_nullable: break
2106 num_nullable = len(nullable)
2107 return nullable
2140 def dr_relation(self,C,trans,nullable):
2207 def compute_lookback_includes(self,C,trans,nullable):
2242 if not p.prod[li] in nullable
[all...]

Completed in 3409 milliseconds

12