HomeSort by relevance Sort by last modified time
    Searched refs:instances (Results 1 - 25 of 501) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/configurationfailurepolicy/
FactoryClassWithFailedBeforeClassMethod.java 8 Object[] instances = new Object[2]; local
9 instances[0] = new FactoryClassWithFailedBeforeClassMethod();
10 instances[1] = new FactoryClassWithFailedBeforeClassMethod();
11 return instances;
FactoryClassWithFailedBeforeMethod.java 8 Object[] instances = new Object[2]; local
9 instances[0] = new FactoryClassWithFailedBeforeMethod();
10 instances[1] = new FactoryClassWithFailedBeforeMethod();
11 return instances;
FactoryClassWithFailedBeforeMethodAndMultipleInvocations.java 8 Object[] instances = new Object[2]; local
9 instances[0] = new FactoryClassWithFailedBeforeMethodAndMultipleInvocations();
10 instances[1] = new FactoryClassWithFailedBeforeMethodAndMultipleInvocations();
11 return instances;
  /system/libvintf/
HalInterface.cpp 28 if (lft.instances != rgt.instances)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
InstanceOnlyModifierDebuggee.java 66 logWriter.println("Create instances");
67 final TestClass[] instances = new TestClass[10]; local
68 for (int i = 0; i < instances.length; ++i) {
69 instances[i] = new TestClass();
73 INSTANCE_ONLY = instances[instances.length - 1];
84 for (int i = 0; i < instances.length; ++i) {
85 instances[i].eventTestMethod();
89 for (int i = 0; i < instances.length; ++i) {
90 instances[i].throwAndCatchException()
    [all...]
  /frameworks/opt/net/wifi/service/
wifi-events.rc 22 mkdir /sys/kernel/debug/tracing/instances/wifi 711
23 restorecon_recursive /sys/kernel/debug/tracing/instances/wifi
24 write /sys/kernel/debug/tracing/instances/wifi/tracing_on 0
25 write /sys/kernel/debug/tracing/instances/wifi/buffer_size_kb 1
26 write /sys/kernel/debug/tracing/instances/wifi/trace_options disable_on_free
30 # /sys/kernel/debug/tracing/instances/wifi/tracing_on.
32 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/cfg80211_gtk_rekey_notify/enable 1
33 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_add_key/enable 1
34 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_assoc/enable 1
35 write /sys/kernel/debug/tracing/instances/wifi/events/cfg80211/rdev_auth/enable
    [all...]
  /external/swiftshader/src/OpenGL/common/
Object.cpp 27 std::set<Object*> Object::instances; member in class:gl::Object
36 instances.insert(this);
46 ASSERT(instances.find(this) != instances.end()); // Check for double deletion
47 instances.erase(this);
96 ASSERT(Object::instances.empty()); // Check for GL object leak at termination
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
descriptors.py 32 # use weak references so instances can be
35 self.instances = WeakKeyDictionary()
41 if self.instances.setdefault(obj, None) is None:
45 return self.instances[obj]
48 self.instances[obj] = value
  /frameworks/base/core/java/android/gesture/
Learner.java 37 * Retrieve all the instances
39 * @return instances
51 ArrayList<Instance> instances = mInstances; local
52 int count = instances.size();
54 Instance instance = instances.get(i);
56 instances.remove(instance);
63 * Remove all the instances of a category
69 final ArrayList<Instance> instances = mInstances; local
70 final int count = instances.size();
73 final Instance instance = instances.get(i)
    [all...]
  /external/skia/tests/
LRUCacheTest.cpp 27 int instances = 0; local
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
37 REPORTER_ASSERT(r, kSize == instances);
40 REPORTER_ASSERT(r, i == instances);
42 REPORTER_ASSERT(r, (int) test.count() == instances);
45 REPORTER_ASSERT(r, 0 == instances);
49 int instances = 0; local
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)));
61 REPORTER_ASSERT(r, kSize == instances);
69 REPORTER_ASSERT(r, 0 == instances);
    [all...]
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
SummaryStatisticsTest.java 46 List<IntSummaryStatistics> instances = new ArrayList<>(); local
47 instances.add(countTo(1000).stream().collect(Collectors.summarizingInt(i -> i)));
48 instances.add(countTo(1000).stream().mapToInt(i -> i).summaryStatistics());
49 instances.add(countTo(1000).parallelStream().collect(Collectors.summarizingInt(i -> i)));
50 instances.add(countTo(1000).parallelStream().mapToInt(i -> i).summaryStatistics());
52 for (IntSummaryStatistics stats : instances) {
61 List<LongSummaryStatistics> instances = new ArrayList<>(); local
62 instances.add(countTo(1000).stream().collect(Collectors.summarizingLong(i -> i)));
63 instances.add(countTo(1000).stream().mapToLong(i -> i).summaryStatistics());
64 instances.add(countTo(1000).parallelStream().collect(Collectors.summarizingLong(i -> i)))
76 List<DoubleSummaryStatistics> instances = new ArrayList<>(); local
    [all...]
  /system/libvintf/include/vintf/
HalInterface.h 29 std::set<std::string> instances; member in struct:android::vintf::HalInterface
  /external/valgrind/none/tests/linux/
brk-overflow1.stderr.exp 4 NOTE: further instances of this message will not be shown
brk-overflow2.stderr.exp 4 NOTE: further instances of this message will not be shown
  /external/libchrome/base/debug/
leak_tracker.h 23 // LeakTracker is a helper to verify that all instances of a class
28 // instances of that class.
40 // Next, when we believe all instances of net::URLRequest have been deleted:
44 // Should the check fail (because there are live instances of net::URLRequest),
45 // then the allocation callstack for each leaked instances is dumped to
72 instances()->Append(this);
89 for (LinkNode<LeakTracker<T> >* node = instances()->head();
90 node != instances()->end();
117 for (LinkNode<LeakTracker<T> >* node = instances()->head();
118 node != instances()->end()
    [all...]
  /external/testng/src/main/java/org/testng/
ClassMethodMap.java 77 for(Set<Object> instances: m_beforeClassMethods.values()) {
78 instances.clear();
79 instances= null;
81 for(Set<Object> instances: m_afterClassMethods.values()) {
82 instances.clear();
83 instances= null;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
TrackedObjects.java 23 * Tracks instances of classes.
56 final WeakIdentityHashMap<T, Void> instances = new WeakIdentityHashMap<>(); field in class:TrackedObjects.TrackedClass
59 instances.put(object, null);
64 return instances.size();
69 return instances.isEmpty();
  /external/eigen/test/
exceptions.cpp 33 instances--;
38 instances++;
68 static int instances; member in class:ScalarWithExceptions
76 int ScalarWithExceptions::instances = 0; member in class:ScalarWithExceptions
82 int before = ScalarWithExceptions::instances; \
87 VERIFY(ScalarWithExceptions::instances==before && "memory leak detected in " && EIGEN_MAKESTRING(OP)); \
107 VERIFY(ScalarWithExceptions::instances==0 && "global memory leak detected in " && EIGEN_MAKESTRING(OP)); \
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/ftrace/
func-filter-pid.tc 109 mkdir instances/foo
110 cd instances/foo
113 rmdir instances/foo
  /hardware/libhardware/include/hardware/
bt_mce.h 33 int num_instances, btmce_mas_instance_t *instances);
48 /** search for MAS instances on remote device */
  /external/testng/src/test/java/test/methodinterceptors/
Issue392Test.java 25 List<IMethodInstance> instances = new ArrayList<>();
28 instances.add(instance);
31 return instances;
Issue521Test.java 25 List<IMethodInstance> instances = new ArrayList<>();
28 instances.add(instance);
31 return instances;
  /external/testng/src/main/java/org/testng/internal/
TestMethodWorker.java 33 // Map of the test methods and their associated instances
170 Set<Object> instances= invokedBeforeClassMethods.get(testClass); local
171 if(null == instances) {
172 instances= new HashSet<>();
173 invokedBeforeClassMethods.put(testClass, instances);
176 if (! instances.contains(instance)) {
177 instances.add(instance);
219 Set<Object> instances = invokedAfterClassMethods.get(testClass); local
220 if(null == instances) {
221 instances= new HashSet<>()
    [all...]
  /external/ltp/testscripts/
runEALtests.sh 52 [ -m # (in Mb)] -N -n -q [ -r ltproot ] [ -t duration ] [ -x instances ]
69 -x instances Run multiple instances of this testsuite.
148 instances="-x $OPTARG";;
180 if [ -n "$instances" ]; then
181 instances="$instances -O ${TMP}"
210 ${LTPROOT}/../bin/ltp-pan $quiet_mode -e -S $instances $duration -a $$ -n $$ $pretty_prt -f ${TMP}/alltests $logfile
  /device/google/dragon/audio/hal/
cras_dsp_pipeline.c 42 * instances (A and C) and the audio ports on these instances will
107 /* All needed instances for this pipeline. It is sorted in an
110 instance_array instances; member in struct:pipeline
147 static struct instance *find_instance_by_plugin(instance_array *instances,
153 FOR_ARRAY_ELEMENT(instances, i, instance) {
164 static int find_origin_port(struct ini *ini, instance_array *instances,
187 if (find_instance_by_plugin(instances, plugin)) {
224 return find_origin_port(ini, instances, plugin, index, origin,
228 static struct audio_port *find_output_audio_port(instance_array *instances,
    [all...]

Completed in 809 milliseconds

1 2 3 4 5 6 7 8 91011>>