OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newInstance
(Results
126 - 150
of
1257
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
MessageMicro.java
91
final CodedOutputStreamMicro output = CodedOutputStreamMicro.
newInstance
(data, offset, length);
115
final CodedInputStreamMicro input = CodedInputStreamMicro.
newInstance
(data, off, len);
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNano.java
91
CodedOutputByteBufferNano.
newInstance
(data, offset, length);
117
CodedInputByteBufferNano.
newInstance
(data, off, len);
WireFormatNano.java
210
CodedInputByteBufferNano buffer = CodedInputByteBufferNano.
newInstance
(data);
228
MessageNano message = (MessageNano) clazz.
newInstance
();
280
CodedOutputByteBufferNano.
newInstance
(data).writeStringNoTag(str);
285
CodedOutputByteBufferNano.
newInstance
(data).writeInt32NoTag(integer);
290
CodedOutputByteBufferNano.
newInstance
(data).writeInt64NoTag(longValue);
295
CodedOutputByteBufferNano.
newInstance
(data).writeBoolNoTag(boolValue);
300
CodedOutputByteBufferNano.
newInstance
(data).writeFloatNoTag(floatValue);
305
CodedOutputByteBufferNano.
newInstance
(data).writeDoubleNoTag(doubleValue);
310
CodedOutputByteBufferNano.
newInstance
(data).writeByteArrayNoTag(byteArrayValue);
318
CodedOutputByteBufferNano buffer = CodedOutputByteBufferNano.
newInstance
(data)
[
all
...]
/external/smack/src/org/jivesoftware/smack/compression/
JzlibInputOutputStream.java
58
Object in = constructor.
newInstance
(inputStream);
69
Object out = constructor.
newInstance
(outputStream, 9);
/frameworks/base/core/java/android/webkit/
WebViewFactory.java
43
sPreloadedProvider = getFactoryClass().
newInstance
();
102
sProviderInstance = providerClass.
newInstance
();
/libcore/benchmarks/src/benchmarks/regression/
XmlEntitiesBenchmark.java
41
xmlPullParserFactory = XmlPullParserFactory.
newInstance
();
42
documentBuilderFactory = DocumentBuilderFactory.
newInstance
();
/libcore/support/src/test/java/tests/support/
Support_ClassLoader.java
39
"tests.support.Support_ClassLoader$Dalvik").
newInstance
();
42
"tests.support.Support_ClassLoader$RefImpl").
newInstance
();
/art/test/068-classloader/src/
Main.java
35
* implementation" throws an exception from Class.
newInstance
(),
81
obj = altClass.
newInstance
();
84
System.err.println("
newInstance
failed: " + ie);
153
obj = doubledExtendClass.
newInstance
();
155
System.err.println("
newInstance
failed: " + ie);
158
System.err.println("
newInstance
failed: " + iae);
200
obj = doubledExtendOkayClass.
newInstance
();
202
System.err.println("
newInstance
failed: " + ie);
205
System.err.println("
newInstance
failed: " + iae);
248
obj = getDoubledClass.
newInstance
();
[
all
...]
/dalvik/tests/068-classloader/src/
Main.java
35
* implementation" throws an exception from Class.
newInstance
(),
81
obj = altClass.
newInstance
();
84
System.err.println("
newInstance
failed: " + ie);
153
obj = doubledExtendClass.
newInstance
();
155
System.err.println("
newInstance
failed: " + ie);
158
System.err.println("
newInstance
failed: " + iae);
200
obj = doubledExtendOkayClass.
newInstance
();
202
System.err.println("
newInstance
failed: " + ie);
205
System.err.println("
newInstance
failed: " + iae);
248
obj = getDoubledClass.
newInstance
();
[
all
...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
ConstructorTest.java
170
* @tests java.lang.reflect.Constructor#
newInstance
(java.lang.Object[])
176
test = (ConstructorTestHelper) ctor.
newInstance
((Object[]) null);
182
* @tests java.lang.reflect.Constructor#
newInstance
(java.lang.Object[])
189
constructor.
newInstance
(new Object[] { null });
200
constructor.
newInstance
(InvocationTargetException.class);
207
constructor.
newInstance
(IllegalAccessException.class);
214
constructor.
newInstance
(IllegalArgumentException.class);
221
constructor.
newInstance
(InvocationTargetException.class);
228
constructor.
newInstance
(Throwable.class);
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java
63
final CodedOutputStream output = CodedOutputStream.
newInstance
(result);
78
CodedOutputStream.
newInstance
(output, bufferSize);
88
CodedOutputStream.
newInstance
(output, bufferSize);
169
CodedInputStream.
newInstance
(data, off, len);
195
CodedInputStream.
newInstance
(data, off, len);
209
final CodedInputStream codedInput = CodedInputStream.
newInstance
(input);
219
final CodedInputStream codedInput = CodedInputStream.
newInstance
(input);
/external/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java
63
final CodedOutputStream output = CodedOutputStream.
newInstance
(result);
78
CodedOutputStream.
newInstance
(output, bufferSize);
88
CodedOutputStream.
newInstance
(output, bufferSize);
161
CodedInputStream.
newInstance
(data, off, len);
187
CodedInputStream.
newInstance
(data, off, len);
201
final CodedInputStream codedInput = CodedInputStream.
newInstance
(input);
211
final CodedInputStream codedInput = CodedInputStream.
newInstance
(input);
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
CodedOutputStreamTest.java
84
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
96
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
112
CodedOutputStream.
newInstance
(rawOutput, blockSize);
121
CodedOutputStream.
newInstance
(rawOutput, blockSize);
166
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
174
output = CodedOutputStream.
newInstance
(rawOutput, blockSize);
188
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
196
output = CodedOutputStream.
newInstance
(rawOutput, blockSize);
289
CodedOutputStream.
newInstance
(rawOutput, blockSize);
/external/protobuf/java/src/test/java/com/google/protobuf/
CodedOutputStreamTest.java
83
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
95
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
111
CodedOutputStream.
newInstance
(rawOutput, blockSize);
120
CodedOutputStream.
newInstance
(rawOutput, blockSize);
165
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
173
output = CodedOutputStream.
newInstance
(rawOutput, blockSize);
187
CodedOutputStream output = CodedOutputStream.
newInstance
(rawOutput);
195
output = CodedOutputStream.
newInstance
(rawOutput, blockSize);
288
CodedOutputStream.
newInstance
(rawOutput, blockSize);
/development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentCustomAnimations.java
54
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
73
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
96
static CountingFragment
newInstance
(int num) {
FragmentStack.java
56
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
75
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
95
static CountingFragment
newInstance
(int num) {
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentCustomAnimationSupport.java
51
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
70
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
93
static CountingFragment
newInstance
(int num) {
FragmentStackSupport.java
63
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
82
Fragment newFragment = CountingFragment.
newInstance
(mStackLevel);
102
static CountingFragment
newInstance
(int num) {
/external/javassist/src/test/test/javassist/proxy/
ProxyCacheGCTest.java
96
MethodHandler handler= (MethodHandler)javaHandlerClass.
newInstance
();
97
MethodFilter filter = (MethodFilter)javaFilterClass.
newInstance
();
105
Object target = proxyClass.
newInstance
();
/libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java
60
SAXParserFactory saxFactory = SAXParserFactory.
newInstance
();
91
domFactoryConstructor.
newInstance
(
114
public DOMTestDocumentBuilderFactory
newInstance
(
/libcore/luni/src/main/java/javax/xml/validation/
SchemaFactory.java
180
public static SchemaFactory
newInstance
(String schemaLanguage) {
204
public static SchemaFactory
newInstance
(String schemaLanguage, String factoryClassName,
218
SchemaFactory result = (SchemaFactory) type.
newInstance
();
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServReqAllTestCase01.java
30
* WifiP2pServiceRequest.
newInstance
(WifiP2pServiceInfo.SERVICE_TYPE_ALL).
47
reqList.add(WifiP2pServiceRequest.
newInstance
(
ServReqDnsPtrTestCase.java
45
reqList.add(WifiP2pDnsSdServiceRequest.
newInstance
("_ipp._tcp"));
ServReqDnsTxtTestCase.java
45
reqList.add(WifiP2pDnsSdServiceRequest.
newInstance
("MyPrinter",
ServReqRemoveRequestTestCase.java
44
WifiP2pUpnpServiceRequest.
newInstance
();
46
WifiP2pUpnpServiceRequest.
newInstance
("ssdp:all");
48
WifiP2pDnsSdServiceRequest.
newInstance
();
50
WifiP2pDnsSdServiceRequest.
newInstance
("_ipp._tcp");
Completed in 855 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>