Home
last modified time | relevance | path

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

/third_party/protobuf/objectivec/
H A DGPBDescriptor.h70 @property(nonatomic, readonly, strong, nullable) NSArray<GPBFieldDescriptor*> *fields;
72 @property(nonatomic, readonly, strong, nullable) NSArray<GPBOneofDescriptor*> *oneofs;
74 @property(nonatomic, readonly, nullable) const GPBExtensionRange *extensionRanges;
85 @property(readonly, nullable) GPBDescriptor *containingType;
90 @property(readonly, nullable) NSString *fullName;
99 - (nullable GPBFieldDescriptor *)fieldWithNumber:(uint32_t)fieldNumber;
108 - (nullable GPBFieldDescriptor *)fieldWithName:(NSString *)name;
117 - (nullable GPBOneofDescriptor *)oneofWithName:(NSString *)name;
129 @property(nonatomic, readonly, copy, nullable) NSString *objcPrefix;
151 - (nullable GPBFieldDescripto
[all...]
H A DGPBMessage.h96 @property(nonatomic, copy, nullable) GPBUnknownFieldSet *unknownFields;
128 + (nullable instancetype)parseFromData:(NSData *)data error:(NSError **)errorPtr;
149 + (nullable instancetype)parseFromData:(NSData *)data
150 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry
172 + (nullable instancetype)parseFromCodedInputStream:(GPBCodedInputStream *)input
174 (nullable GPBExtensionRegistry *)extensionRegistry
197 + (nullable instancetype)parseDelimitedFromCodedInputStream:(GPBCodedInputStream *)input
199 (nullable GPBExtensionRegistry *)extensionRegistry
220 - (nullable instancetype)initWithData:(NSData *)data error:(NSError **)errorPtr;
241 - (nullable instancetyp
[all...]
H A DGPBDictionary.h102 - (BOOL)getUInt32:(nullable uint32_t *)value forKey:(uint32_t)key;
197 - (BOOL)getInt32:(nullable int32_t *)value forKey:(uint32_t)key;
292 - (BOOL)getUInt64:(nullable uint64_t *)value forKey:(uint32_t)key;
387 - (BOOL)getInt64:(nullable int64_t *)value forKey:(uint32_t)key;
482 - (BOOL)getBool:(nullable BOOL *)value forKey:(uint32_t)key;
577 - (BOOL)getFloat:(nullable float *)value forKey:(uint32_t)key;
672 - (BOOL)getDouble:(nullable double *)value forKey:(uint32_t)key;
737 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func;
749 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
773 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFun
[all...]
H A DGPBWellKnownTypes.h156 + (nullable instancetype)anyWithMessage:(nonnull GPBMessage *)message
169 + (nullable instancetype)anyWithMessage:(nonnull GPBMessage *)message
183 - (nullable instancetype)initWithMessage:(nonnull GPBMessage *)message
196 - (nullable instancetype)initWithMessage:(nonnull GPBMessage *)message
240 - (nullable GPBMessage *)unpackMessageClass:(Class)messageClass
H A DGPBArray.h1273 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func;
1284 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
1306 + (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
1316 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
1328 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
1349 - (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFunc)func
1679 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func;
1690 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
1712 //%+ (instancetype)arrayWithValidationFunction:(nullable GPBEnumValidationFunc)func
1722 //%- (instancetype)initWithValidationFunction:(nullable GPBEnumValidationFun
[all...]
H A DGPBCodedInputStream.h187 extensionRegistry:(nullable GPBExtensionRegistry *)extensionRegistry;
/third_party/typescript/tests/baselines/reference/
H A DjsdocTypeTag.js53 var nullable; variable
87 var nullable: number | null; variable
129 var nullable; variable
157 var nullable; variable
/third_party/node/test/parallel/
H A Dtest-validators.js109 Object.prototype.nullable = true; method
124 validateObject(null, 'foo', { nullable: true });
130 assert.throws(() => validateObject([], 'foo', { nullable: true }), invalidArgTypeError);
131 assert.throws(() => validateObject(() => {}, 'foo', { nullable: true }), invalidArgTypeError);
133 delete Object.prototype.nullable;
/third_party/node/deps/npm/node_modules/@pkgjs/parseargs/internal/
H A Dvalidators.js64 * nullable?: boolean
71 const nullable = useDefaultOptions ? false : options.nullable;
72 if ((!nullable && value === null) ||
/third_party/node/lib/internal/
H A Dencoding.js390 nullable: true,
439 nullable: true,
473 nullable: true,
519 nullable: true,
H A Dvalidators.js240 * nullable?: boolean
249 const nullable = getOwnPropertyValueOrDefault(options, 'nullable', false);
250 if ((!nullable && value === null) ||
H A Dabort_controller.js447 validateObject(resource, 'resource', { nullable: false, allowFunction: true, allowArray: true });
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregcomp.c89 int nullable; member
148 node->nullable = -1; in tre_ast_new_node()
1121 c->right->nullable = -1; in tre_add_tag_left()
1152 c->left->nullable = -1; in tre_add_tag_right()
2198 if (uni->left->nullable) in tre_match_empty()
2200 else if (uni->right->nullable) in tre_match_empty()
2209 assert(cat->left->nullable); in tre_match_empty()
2210 assert(cat->right->nullable); in tre_match_empty()
2219 if (iter->arg->nullable) in tre_match_empty()
2241 /* Computes and fills in the fields `nullable', `firstpo
[all...]
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregcomp.c89 int nullable; member
148 node->nullable = -1; in tre_ast_new_node()
1122 c->right->nullable = -1; in tre_add_tag_left()
1153 c->left->nullable = -1; in tre_add_tag_right()
2199 if (uni->left->nullable) in tre_match_empty()
2201 else if (uni->right->nullable) in tre_match_empty()
2210 assert(cat->left->nullable); in tre_match_empty()
2211 assert(cat->right->nullable); in tre_match_empty()
2220 if (iter->arg->nullable) in tre_match_empty()
2242 /* Computes and fills in the fields `nullable', `firstpo
[all...]
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregcomp.c89 int nullable; member
148 node->nullable = -1; in tre_ast_new_node()
1121 c->right->nullable = -1; in tre_add_tag_left()
1152 c->left->nullable = -1; in tre_add_tag_right()
2198 if (uni->left->nullable) in tre_match_empty()
2200 else if (uni->right->nullable) in tre_match_empty()
2209 assert(cat->left->nullable); in tre_match_empty()
2210 assert(cat->right->nullable); in tre_match_empty()
2219 if (iter->arg->nullable) in tre_match_empty()
2241 /* Computes and fills in the fields `nullable', `firstpo
[all...]
/third_party/musl/src/regex/
H A Dregcomp.c89 int nullable; member
148 node->nullable = -1; in tre_ast_new_node()
1121 c->right->nullable = -1; in tre_add_tag_left()
1152 c->left->nullable = -1; in tre_add_tag_right()
2198 if (uni->left->nullable) in tre_match_empty()
2200 else if (uni->right->nullable) in tre_match_empty()
2209 assert(cat->left->nullable); in tre_match_empty()
2210 assert(cat->right->nullable); in tre_match_empty()
2219 if (iter->arg->nullable) in tre_match_empty()
2241 /* Computes and fills in the fields `nullable', `firstpo
[all...]
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/
H A Dwriter.js25 if (it.nullable) ret += "?";
130 return `${ret}const ${type(it.idlType)}${it.nullable ? "?" : ""} ${it.name} = ${const_value(it.value)};`;
/third_party/node/lib/
H A Dvm.js338 validateObject(extension, name, { __proto__: null, nullable: true });
H A Dfs.js622 validateObject(offsetOrOptions, 'options', { nullable: true });
/third_party/python/Modules/
H A Dposixmodule.c1036 * path.nullable
1080 * If path was None and path.nullable was set,
1102 int nullable; member
1117 #define PATH_T_INITIALIZE(function_name, argument_name, nullable, allow_fd) \
1118 {function_name, argument_name, nullable, allow_fd, NULL, FALSE, -1, 0, NULL, NULL}
1120 #define PATH_T_INITIALIZE(function_name, argument_name, nullable, allow_fd) \
1121 {function_name, argument_name, nullable, allow_fd, NULL, NULL, -1, 0, NULL, NULL}
1166 if ((o == Py_None) && path->nullable) { in path_converter()
1264 path->allow_fd && path->nullable ? "string, bytes, os.PathLike, " in path_converter()
1267 path->nullable in path_converter()
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Didlharness.js518 // nullable and annotated types don't need to be handled separately,
920 if (type.nullable && value === null)
3159 if (type.nullable) {
3187 if (type.nullable)
/third_party/sqlite/src/
H A Dsqlite3.c138652 unsetJoinExpr(Expr *p, int iTable, int nullable) global() argument
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 175 milliseconds