/external/libchrome/mojo/public/js/lib/ |
D | validator.js | 190 Validator.prototype.validateHandle = function(offset, nullable) { argument 204 nullable) { argument 219 Validator.prototype.validateInterface = function(offset, nullable) { argument 223 Validator.prototype.validateInterfaceRequest = function(offset, nullable) { argument 228 nullable) { argument 233 offset, nullable) { argument 383 offset, elementSize, elementType, nullable, expectedDimensionSizes, argument 398 offset, structClass, nullable) { argument 411 offset, unionClass, nullable) { argument 422 offset, unionClass, nullable) { argument [all …]
|
/external/libchrome/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
D | Encoder.java | 212 public void encode(Struct v, int offset, boolean nullable) { in encode() 224 public void encode(Union v, int offset, boolean nullable) { in encode() 240 public void encode(String v, int offset, boolean nullable) { in encode() 254 public void encode(Handle v, int offset, boolean nullable) { in encode() 266 public <T extends Interface> void encode(T v, int offset, boolean nullable, in encode() 280 encode(handler.passHandle(), offset, nullable); in encode() local 294 public <I extends Interface> void encode(InterfaceRequest<I> v, int offset, boolean nullable) { in encode() 303 encode(v.passHandle(), offset, nullable); in encode() local 309 public void encode(AssociatedInterfaceNotSupported v, int offset, boolean nullable) { in encode() 315 public void encode(AssociatedInterfaceRequestNotSupported v, int offset, boolean nullable) { in encode() [all …]
|
D | Decoder.java | 309 public Decoder readPointer(int offset, boolean nullable) { in readPointer() 442 public Handle readHandle(int offset, boolean nullable) { in readHandle() 458 public UntypedHandle readUntypedHandle(int offset, boolean nullable) { in readUntypedHandle() 465 public DataPipe.ConsumerHandle readConsumerHandle(int offset, boolean nullable) { in readConsumerHandle() 472 public DataPipe.ProducerHandle readProducerHandle(int offset, boolean nullable) { in readProducerHandle() 479 public MessagePipeHandle readMessagePipeHandle(int offset, boolean nullable) { in readMessagePipeHandle() 486 public SharedBufferHandle readSharedBufferHandle(int offset, boolean nullable) { in readSharedBufferHandle() 495 public <P extends Proxy> P readServiceInterface(int offset, boolean nullable, in readServiceInterface() 509 boolean nullable) { in readInterfaceRequest() 521 boolean nullable) { in readAssociatedServiceInterfaceNotSupported() [all …]
|
/external/jacoco/org.jacoco.core.test.validation.kotlin/src/org/jacoco/core/test/validation/kotlin/targets/ |
D | KotlinUnsafeCastOperatorTarget.kt | 20 private fun nullable(): String? { in nullable() method
|
/external/dagger2/java/dagger/internal/codegen/writing/ |
D | InstanceFactoryCreationExpression.java | 32 private final boolean nullable; field in InstanceFactoryCreationExpression 39 InstanceFactoryCreationExpression(boolean nullable, Supplier<CodeBlock> instanceExpression) { in InstanceFactoryCreationExpression()
|
/external/auto/factory/src/main/java/com/google/auto/factory/processor/ |
D | ProviderField.java | 35 Optional<AnnotationMirror> nullable() { in nullable() method in ProviderField 39 static ProviderField create(String name, Key key, Optional<AnnotationMirror> nullable) { in create()
|
D | Parameter.java | 79 Optional<AnnotationMirror> nullable() { in nullable() method in Parameter 88 Optional<AnnotationMirror> nullable = in forVariableElement() local
|
/external/auto/factory/src/test/resources/good/ |
D | SimpleClassNullableParameters.java | 25 @Nullable private final String nullable; field in SimpleClassNullableParameters 31 SimpleClassNullableParameters( in SimpleClassNullableParameters()
|
/external/json-schema-validator/src/test/resources/data/ |
D | issue428.json | 8 "nullable": true, boolean 77 "nullable": true, boolean 84 "nullable": true boolean 137 "nullable": true, boolean 193 "nullable": true, boolean 197 "nullable": true, boolean 204 "nullable": true boolean
|
/external/guice/core/src/com/google/inject/spi/ |
D | Dependency.java | 42 private final boolean nullable; field in Dependency 45 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) { in Dependency()
|
/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/ |
D | NotNullSerializersCompatibilityOnFileTest.kt | 32 …data class FileContextualHolder(val nullable: FileContextualType?, val nonNullable: FileContextual… constant in kotlinx.serialization.NotNullSerializersCompatibilityOnFileTest.FileContextualHolder 50 …data class ContextualHolder(@Contextual val nullable: ContextualType?, @Contextual val nonNullable… constant in kotlinx.serialization.NotNullSerializersCompatibilityOnFileTest.ContextualHolder 54 data class Holder(val nullable: Int?, val nonNullable: Int) constant in kotlinx.serialization.NotNullSerializersCompatibilityOnFileTest.Holder
|
D | SerializationForNullableTypeOnFileTest.kt | 17 data class Holder(val nullable: Int?, val nonNullable: Int) constant in kotlinx.serialization.SerializationForNullableTypeOnFileTest.Holder
|
D | GenericSerializersOnFileTest.kt | 22 data class Holder(val notnull: GenericClass<String>, val nullable: GenericClass<String>?) constant in kotlinx.serialization.GenericSerializersOnFileTest.Holder
|
/external/golang-protobuf/internal/testprotos/nullable/ |
D | methods_test.go | 12 package nullable package
|
D | nullable_test.go | 5 package nullable package
|
/external/jspecify/samples/ |
D | AssignmentAsExpression.java | 21 Object go(@Nullable Object nullable, Object notNull) { in go()
|
/external/auto/value/src/test/java/com/google/auto/value/extension/memoized/ |
D | MemoizedTest.java | 133 String nullable() { in nullable() method in MemoizedTest.Value 293 public void nullable() { in nullable() method in MemoizedTest 462 Method nullable = AutoValue_MemoizedTest_Value.class.getDeclaredMethod("nullable"); in nullableHasAnnotation() local 468 Method nullable = in nullableWithTypeAnnotationHasAnnotation() local
|
/external/jspecify/conformance-tests/src/assertions/java/org/jspecify/conformance/tests/ |
D | Basic.java | 24 @NonNull Object cannotConvertNullableToNonNull(@Nullable Object nullable) { in cannotConvertNullableToNonNull()
|
/external/auto/factory/src/test/resources/expected/ |
D | SimpleClassNullableParametersFactory.java | 40 SimpleClassNullableParameters create( in create()
|
/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/features/ |
D | PartiallyCustomSerializerTest.kt | 14 data class WithNull(@SerialName("value") val nullable: String? = null) { constant in kotlinx.serialization.features.WithNull
|
D | UseSerializersTest.kt | 17 val nullable: Int?, constant in kotlinx.serialization.features.Carrier2
|
/external/googleapis/google/cloud/automl/v1beta1/ |
D | data_types.proto | 95 bool nullable = 4; field
|
/external/google-cloud-java/java-automl/proto-google-cloud-automl-v1beta1/src/main/proto/google/cloud/automl/v1beta1/ |
D | data_types.proto | 95 bool nullable = 4; field
|
/external/googleapis/google/cloud/aiplatform/v1beta1/ |
D | openapi.proto | 77 bool nullable = 6 [(google.api.field_behavior) = OPTIONAL]; field
|
/external/googleapis/google/cloud/aiplatform/v1/ |
D | openapi.proto | 77 bool nullable = 6 [(google.api.field_behavior) = OPTIONAL]; field
|