Home
last modified time | relevance | path

Searched refs:instances (Results 1 – 25 of 172) sorted by relevance

1234567

/external/lldb/source/Core/
DPluginManager.cpp286 ABIInstances &instances = GetABIInstances (); in UnregisterPlugin() local
288 ABIInstances::iterator pos, end = instances.end(); in UnregisterPlugin()
289 for (pos = instances.begin(); pos != end; ++ pos) in UnregisterPlugin()
293 instances.erase(pos); in UnregisterPlugin()
305 ABIInstances &instances = GetABIInstances (); in GetABICreateCallbackAtIndex() local
306 if (idx < instances.size()) in GetABICreateCallbackAtIndex()
307 return instances[idx].create_callback; in GetABICreateCallbackAtIndex()
317 ABIInstances &instances = GetABIInstances (); in GetABICreateCallbackForPluginName() local
319 ABIInstances::iterator pos, end = instances.end(); in GetABICreateCallbackForPluginName()
320 for (pos = instances.begin(); pos != end; ++ pos) in GetABICreateCallbackForPluginName()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DInstanceOnlyModifierDebuggee.java67 final TestClass[] instances = new TestClass[10]; in run() local
68 for (int i = 0; i < instances.length; ++i) { in run()
69 instances[i] = new TestClass(); in run()
73 INSTANCE_ONLY = instances[instances.length - 1]; in run()
84 for (int i = 0; i < instances.length; ++i) { in run()
85 instances[i].eventTestMethod(); in run()
89 for (int i = 0; i < instances.length; ++i) { in run()
90 instances[i].throwAndCatchException(); in run()
94 for (int i = 0; i < instances.length; ++i) { in run()
95 instances[i].readAndWriteField(); in run()
/external/eigen/test/
Dexceptions.cpp33 instances--; in ~ScalarWithExceptions()
38 instances++; in init()
68 static int instances; member in ScalarWithExceptions
76 int ScalarWithExceptions::instances = 0; member in ScalarWithExceptions
82 int before = ScalarWithExceptions::instances; \
87 …VERIFY(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(O…
107 …VERIFY(ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING… in memoryleak()
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/modulator/
DCatRom2.java43 private static Map<Integer, CatRom2> instances = new HashMap<Integer, CatRom2>(); field in CatRom2
60 if (!CatRom2.instances.containsKey(sampleRate)) { in getInstance()
61 CatRom2.instances.put(sampleRate, new CatRom2(sampleRate)); in getInstance()
63 return CatRom2.instances.get(sampleRate); in getInstance()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dreloader.py67 instances = [] variable in Monitor
76 self.instances.append(self)
132 for instance in cls.instances:
144 for instance in cls.instances:
/external/owasp/sanitizer/tools/findbugs/doc/
DFilterFile.txt7 element represents a predicate which is applied to generated bug instances.
8 Usually, a filter will be used to exclude bug instances. For example:
12 However, a filter could also be used to select bug instances to specifically
48 bug instances. Every bug instance has a class, so in general, excluding
51 Some bug instances have two classes. For example, the DE (dropped exception)
67 Many kinds of bugs report what method they occur in. For those bug instances,
/external/skia/src/gpu/
DGrVertices.h160 int instances = SkTMin(fInstancesRemaining, fVertices->fMaxInstancesPerDraw); in next() local
161 fInstanceBatch.fIndexCount = instances * fVertices->fIndicesPerInstance; in next()
162 fInstanceBatch.fVertexCount = instances * fVertices->fVerticesPerInstance; in next()
163 fInstancesRemaining -= instances; in next()
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/
Dfig.t23 has 'instances' => (
38 $self->instances->{$v.text, $o);
51 | '$' ID { $value = instances.get($ID.text); }
/external/deqp/modules/gles3/functional/
Des3fVertexArrayObjectTests.cpp119 int instances; member
133 , instances (-1) in Spec()
576 if (m_spec.instances == 0) in makeDrawCall()
579 …lDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances)); in makeDrawCall()
583 if (m_spec.instances == 0) in makeDrawCall()
586 …NGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset), m_spec.instances)); in makeDrawCall()
591 if (m_spec.instances == 0) in makeDrawCall()
594 GLU_CHECK_CALL(glDrawArraysInstanced(GL_TRIANGLES, 0, m_spec.count, m_spec.instances)); in makeDrawCall()
744 m_spec.instances = 0; in init()
1153 if (m_spec.instances == 0) in makeDrawCall()
[all …]
/external/bison/tests/
Dc++.at209 /// A class that counts its number of instances.
213 static objects instances;
219 return instances.empty();
231 for (objects::const_iterator i = instances.begin(),
232 i_end = instances.end();
246 instances.push_back(this);
252 instances.remove(this);
264 Object::objects Object::instances;
Dpush.at80 ## Multiple impure instances. ##
83 AT_SETUP([[Multiple impure instances]])
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowLayoutInflater.java22 … private static AppSingletonizer<LayoutInflater> instances = new LayoutInflaterAppSingletonizer(); field in ShadowLayoutInflater
33 return bind(instances.getInstance(context), context); in from()
DShadowAppWidgetManager.java27 …private static AppSingletonizer<AppWidgetManager> instances = new AppSingletonizer<AppWidgetManage… field in ShadowAppWidgetManager
67 return instances.getInstance(context); in getInstance()
/external/linux-tools-perf/src/tools/perf/Documentation/
Dperf-lock.txt28 of lock instances.
62 dump map of lock instances (address:name table)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/
DExpr.g351 Change all instances of "System.out" with "JSystem.@out".
53 Change all instances of "System.err" with "JSystem.err".
55 Change all instances of "skip()" with "Skip()".
/external/guava/guava-testlib/src/com/google/common/testing/
DFreshValueGenerator.java146 <T> void addSampleInstances(Class<T> type, Iterable<? extends T> instances) { in addSampleInstances() argument
147 sampleInstances.putAll(checkNotNull(type), checkNotNull(instances)); in addSampleInstances()
262 private <T> T nextInstance(T[] instances, T defaultValue) { in nextInstance() argument
263 return nextInstance(Arrays.asList(instances), defaultValue); in nextInstance()
266 private <T> T nextInstance(Collection<T> instances, T defaultValue) { in nextInstance() argument
267 if (instances.isEmpty()) { in nextInstance()
271 return Iterables.get(instances, (freshInt() - 1) % instances.size()); in nextInstance()
/external/apache-http/src/org/apache/commons/logging/impl/
DLogFactoryImpl.java210 protected Hashtable instances = new Hashtable(); field in LogFactoryImpl
336 Log instance = (Log) instances.get(name); in getInstance()
339 instances.put(name, instance); in getInstance()
357 instances.clear(); in release()
/external/llvm/test/CodeGen/PowerPC/
D2012-10-11-dynalloc.ll15 ; Check we actually have two instances of dynamic stack allocation,
/external/libxml2/optim/
DTOTRY6 - recheck > 4Gb instances for parsing, and RNG validation.
/external/libexif/m4m/
Dgp-pkg-config.m437 dnl I use this to find all the different instances of this file which
/external/deqp/doc/testspecs/GLES31/
Dfunctional.tessellation_geometry_interaction.txt51 number geometry shader instances, or sets the maximum tessellation level.
68 emitted by the other instances of the same geometry shader execution. In the
/external/clang/docs/
DDriverInternals.rst114 (``Arg`` instances). The driver expects to understand all available
120 additional metadata. The Arg instances themselves are lightweight and
126 Arg instances (a JoinedArg and a SeparateArg instance), but each
133 Arg instances themselves do not generally store the values of
135 unnecessary string copies. Instead, Arg instances are always embedded
164 a list of Action instances for each task. The result is a list of one
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/iptables/extensions/
Dlibxt_NFLOG.man21 nfnetlink_log). nfnetlink_log instances may specify their own
/external/openssh/
DPROTOCOL.chacha20poly130536 keys (K_1 and K_2), used by two separate instances of chacha20.
44 Two separate cipher instances are used here so as to keep the packet

1234567