Home
last modified time | relevance | path

Searched defs:newInstance (Results 1 – 17 of 17) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DNewInstanceSchema.java13 Object newInstance(Object defaultInstance); in newInstance() method
DNewInstanceSchemaFull.java12 public Object newInstance(Object defaultInstance) { in newInstance() method in NewInstanceSchemaFull
DNewInstanceSchemaLite.java13 public Object newInstance(Object defaultInstance) { in newInstance() method in NewInstanceSchemaLite
DGeneratedMessageV3.java118 protected Object newInstance(UnusedPrivateParameter unused) { in newInstance() method in GeneratedMessageV3
DSchema.java47 T newInstance(); in newInstance() method
DExtensionRegistryLite.java86 public static ExtensionRegistryLite newInstance() { in newInstance() method in ExtensionRegistryLite
DCodedInputStream.java57 public static CodedInputStream newInstance(final InputStream input) { in newInstance() method in CodedInputStream
62 public static CodedInputStream newInstance(final InputStream input, int bufferSize) { in newInstance() method in CodedInputStream
74 public static CodedInputStream newInstance(final Iterable<ByteBuffer> input) { in newInstance() method in CodedInputStream
82 static CodedInputStream newInstance( in newInstance() method in CodedInputStream
111 public static CodedInputStream newInstance(final byte[] buf) { in newInstance() method in CodedInputStream
116 public static CodedInputStream newInstance(final byte[] buf, final int off, final int len) { in newInstance() method in CodedInputStream
121 static CodedInputStream newInstance( in newInstance() method in CodedInputStream
152 public static CodedInputStream newInstance(ByteBuffer buf) { in newInstance() method in CodedInputStream
157 static CodedInputStream newInstance(ByteBuffer buf, boolean bufferIsImmutable) { in newInstance() method in CodedInputStream
DExtensionRegistry.java70 public static ExtensionRegistry newInstance() { in newInstance() method in ExtensionRegistry
DBinaryReader.java45 public static BinaryReader newInstance(ByteBuffer buffer, boolean bufferIsImmutable) { in newInstance() method in BinaryReader
228 T newInstance = schema.newInstance(); in readMessage() local
274 T newInstance = schema.newInstance(); in readGroup() local
DMessageSetSchema.java41 public T newInstance() { in newInstance() method in MessageSetSchema
DUnknownFieldSetLite.java42 static UnknownFieldSetLite newInstance() { in newInstance() method in UnknownFieldSetLite
DCodedOutputStream.java72 public static CodedOutputStream newInstance(final OutputStream output) { in newInstance() method in CodedOutputStream
84 public static CodedOutputStream newInstance(final OutputStream output, final int bufferSize) { in newInstance() method in CodedOutputStream
94 public static CodedOutputStream newInstance(final byte[] flatArray) { in newInstance() method in CodedOutputStream
104 public static CodedOutputStream newInstance( in newInstance() method in CodedOutputStream
110 public static CodedOutputStream newInstance(ByteBuffer buffer) { in newInstance() method in CodedOutputStream
179 public static CodedOutputStream newInstance( in newInstance() method in CodedOutputStream
195 static CodedOutputStream newInstance(ByteOutput byteOutput, int bufferSize) { in newInstance() method in CodedOutputStream
DCodedInputStreamReader.java204 T newInstance = schema.newInstance(); in readMessage() local
235 T newInstance = schema.newInstance(); in readGroup() local
DMessageSchema.java797 public T newInstance() { in newInstance() method in MessageSchema
1417 Object newInstance = fieldSchema.newInstance(); in mergeMessage() local
1456 Object newInstance = fieldSchema.newInstance(); in mergeOneofMessage() local
DGeneratedMessage.java462 protected Object newInstance(UnusedPrivateParameter unused) { in newInstance() method in GeneratedMessage
DGeneratedMessageLite.java449 MessageType newInstance = newMutableInstance(); in copyOnWriteInternal() local
/third_party/skia/src/sksl/
DSkSLThreadContext.cpp199 void ThreadContext::SetInstance(std::unique_ptr<ThreadContext> newInstance) { in SetInstance()