Searched refs:instance (Results 1 - 25 of 2104) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jar ... private static final com.google.zxing.ChecksumException instance private void " href="/5.1.0_r1/s? ...
/external/webrtc/src/system_wrappers/interface/
H A Dstatic_instance.h40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
131 InterlockedExchangePointer(reinterpret_cast<void* volatile*>(&instance),
[all...]
/external/valgrind/main/drd/tests/
H A Dstd_atomic.cpp15 void *func1(void *instance) argument
24 void *func2(void *instance) argument
H A Dstd_list.cpp59 void *func1(void *instance) argument
61 Test *casted = reinterpret_cast<Test*>(instance);
68 void *func2(void *instance) argument
70 Test *casted = reinterpret_cast<Test*>(instance);
H A Dthread_name.stderr.exp3 thread_func instance 1
5 Thread 2 (thread_func instance 1):
12 thread_func instance 2
14 Thread 3 (thread_func instance 2):
21 thread_func instance 3
23 Thread 4 (thread_func instance 3):
30 thread_func instance 4
32 Thread 5 (thread_func instance 4):
39 thread_func instance 5
41 Thread 6 (thread_func instance
[all...]
H A Dthread_name_xml.stderr.exp32 thread_func instance 1
68 thread_func instance 2
104 thread_func instance 3
140 thread_func instance 4
176 thread_func instance 5
212 thread_func instance 6
248 thread_func instance 7
284 thread_func instance 8
320 thread_func instance 9
356 thread_func instance 1
[all...]
/external/valgrind/main/memcheck/tests/x86/
H A Dfpeflags.c3 struct instance struct
8 static struct instance* myInstance;
14 myInstance = malloc(sizeof(struct instance));
/external/tcpdump/
H A Dprint-forces.c473 u_int32_t instance; member in struct:forces_lfbsh
1300 if (dlen != ASRDLN) { /* id, instance, oper tlv */
1532 if (dlen <= OP_MIN) { /* id, instance, oper tlv header .. */
1547 printf("\n%s%s(Classid %x) instance %x\n",
1550 EXTRACT_32BITS(&lfbs->instance));
/external/stlport/
H A Dconfigure.bat168 echo Use this option to add any compilation flag to the build system. For instance
172 echo If you have several options use several --extra-cxxflag options. For instance
/external/stlport/src/
H A Dallocators.cpp186 * the unicity of the node allocator instance. Without that guaranty node
814 static void _S_destructor(void *instance);
/external/stlport/test/unit/
H A Dsort_test.cpp184 SortTestAux instance(copy_constructor_called);
185 SortTestAux &r_instance = instance;
186 SortTestAux const& rc_instance = instance;
/external/skia/platform_tools/nacl/src/
H A Dnacl_debugger.cpp12 #include "ppapi/cpp/instance.h"
37 explicit SkiaInstance(PP_Instance instance) argument
38 : pp::Instance(instance)
211 virtual pp::Instance* CreateInstance(PP_Instance instance) { argument
212 return new SkiaInstance(instance);
H A Dnacl_hello.cpp12 #include "ppapi/cpp/instance.h"
47 explicit SkiaInstance(PP_Instance instance) argument
48 : pp::Instance(instance)
141 virtual pp::Instance* CreateInstance(PP_Instance instance) { argument
142 return new SkiaInstance(instance);
H A Dnacl_interface.cpp12 #include "ppapi/cpp/instance.h"
78 explicit SkiaInstance(PP_Instance instance) : pp::Instance(instance) { argument
102 virtual pp::Instance* CreateInstance(PP_Instance instance) { argument
103 return new SkiaInstance(instance);
H A Dnacl_sample.cpp7 #include "ppapi/cpp/instance.h"
29 explicit SkiaInstance(PP_Instance instance) : pp::Instance(instance), argument
165 virtual pp::Instance* CreateInstance(PP_Instance instance) { argument
166 gPluginInstance = new SkiaInstance(instance);
/external/skia/src/core/
H A DSkConvolver.cpp305 FilterInstance instance; local
308 instance.fDataLocation = (static_cast<int>(fFilterValues.count()) -
310 instance.fOffset = filterOffset;
311 instance.fTrimmedLength = filterLength;
312 instance.fLength = filterSize;
313 fFilters.push_back(instance);
/external/smack/asmack-master/lib/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/smack/src/org/jivesoftware/smack/provider/
H A DProviderManager.java67 * parsing the raw XML stream to create an IQ instance. In the latter case, bean introspection
68 * is used to try to automatically set properties of the IQ instance using the values found
83 * type the IQ instance expects.<p>
120 private static ProviderManager instance; field in class:ProviderManager
126 * Returns the only ProviderManager valid instance. Use {@link #setInstance(ProviderManager)}
127 * to configure your own provider manager. If non was provided then an instance of this
130 * @return the only ProviderManager valid instance.
133 if (instance == null) {
134 instance = new ProviderManager();
136 return instance;
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DBase32Encoder.java32 private static Base32Encoder instance = new Base32Encoder(); field in class:Base32Encoder
40 return instance;
H A DBase64Encoder.java24 private static Base64Encoder instance = new Base64Encoder(); field in class:Base64Encoder
31 return instance;
H A DBase64FileUrlEncoder.java30 private static Base64FileUrlEncoder instance = new Base64FileUrlEncoder(); field in class:Base64FileUrlEncoder
37 return instance;
/external/smack/src/org/jivesoftware/smack/util/dns/
H A DDNSJavaResolver.java31 private static DNSJavaResolver instance = new DNSJavaResolver(); field in class:DNSJavaResolver
38 return instance;
/external/smack/src/org/jivesoftware/smackx/
H A DGatewayManager.java50 * Creates a new instance of GatewayManager
118 * Returns an instance of GatewayManager for the given connection. If no instance for
121 * @return an instance of GatewayManager
129 GatewayManager instance = new GatewayManager(connection);
130 instances.put(connection, instance);
131 return instance;
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DUserRequest.java29 private static UserRequest instance = new UserRequest(); field in class:UserRequest
32 return instance;
/external/sfntly/cpp/src/sfntly/
H A Dfont_factory.cc29 FontFactoryPtr instance = new FontFactory(); local
30 return instance.Detach();

Completed in 5315 milliseconds

1234567891011>>