OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:synchronizedlist
(Results
1 - 25
of
73
) sorted by null
1
2
3
/external/testng/src/main/java/org/testng/
TestListenerAdapter.java
29
Collections.
synchronizedList
(Lists.<ITestNGMethod>newArrayList());
30
private List<ITestResult> m_passedTests = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
31
private List<ITestResult> m_failedTests = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
32
private List<ITestResult> m_skippedTests = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
33
private List<ITestResult> m_failedButWSPerTests = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
34
private List<ITestContext> m_testContexts= Collections.
synchronizedList
(new ArrayList<ITestContext>());
35
private List<ITestResult> m_failedConfs= Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
36
private List<ITestResult> m_skippedConfs= Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
37
private List<ITestResult> m_passedConfs= Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
SuiteRunner.java
76
Collections.
synchronizedList
(Lists.<IInvokedMethod>newArrayList());
/external/jmdns/src/javax/jmdns/impl/
DNSMessage.java
60
_questions = Collections.
synchronizedList
(new LinkedList<DNSQuestion>());
61
_answers = Collections.
synchronizedList
(new LinkedList<DNSRecord>());
62
_authoritativeAnswers = Collections.
synchronizedList
(new LinkedList<DNSRecord>());
63
_additionals = Collections.
synchronizedList
(new LinkedList<DNSRecord>());
/external/testng/src/test/java/test/configuration/
ConfigurationGroupBothSampleTest.java
13
static List<Integer> m_list = Collections.
synchronizedList
(new ArrayList<Integer>());
/external/testng/src/main/java/org/testng/reporters/
JUnitXMLReporter.java
54
Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
56
Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
288
m_allTests = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
289
m_configIssues = Collections.
synchronizedList
(Lists.<ITestResult>newArrayList());
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
ForEachOpTest.java
113
List<Integer> l = Collections.
synchronizedList
(new ArrayList<>());
161
List<Integer> l = Collections.
synchronizedList
(new ArrayList<Integer>());
209
List<Long> l = Collections.
synchronizedList
(new ArrayList<Long>());
257
List<Double> l = Collections.
synchronizedList
(new ArrayList<Double>());
TeeOpTest.java
77
list = Collections.
synchronizedList
(new ArrayList<>());
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallerInfoAsyncQueryFactoryFixture.java
65
final List<Request> mRequests = Collections.
synchronizedList
(new ArrayList<Request>());
/external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java
60
Collections.
synchronizedList
(new ArrayList<LogRecord>());
/external/junit/src/org/junit/runner/
Result.java
21
private final List<Failure> fFailures= Collections.
synchronizedList
(new ArrayList<Failure>());
/external/junit/src/org/junit/runner/notification/
RunNotifier.java
21
Collections.
synchronizedList
(new ArrayList<RunListener>());
/packages/apps/Camera2/src/com/android/camera/util/
ListenerCombiner.java
54
private final List<StateChangeListener> mListeners = Collections.
synchronizedList
(
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Synchronized.java
289
: new
SynchronizedList
<E>(list, mutex);
292
private static class
SynchronizedList
<E> extends SynchronizedCollection<E>
294
SynchronizedList
(List<E> delegate, @Nullable Object mutex) {
387
extends
SynchronizedList
<E> implements RandomAccess {
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipProfileDb.java
123
List<SipProfile> sipProfileList = Collections.
synchronizedList
(
/prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i
245
class Collections$
SynchronizedList
;
/libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java
527
ListDefaultMethodTester.test_replaceAll(Collections.
synchronizedList
(new ArrayList<>()));
531
ListDefaultMethodTester.test_sort(Collections.
synchronizedList
(new ArrayList<>()));
/external/guava/guava/src/com/google/common/collect/
Synchronized.java
305
: new
SynchronizedList
<E>(list, mutex);
308
private static class
SynchronizedList
<E> extends SynchronizedCollection<E>
310
SynchronizedList
(List<E> delegate, @Nullable Object mutex) {
403
extends
SynchronizedList
<E> implements RandomAccess {
[
all
...]
/frameworks/base/services/core/java/com/android/server/tv/
PersistentDataStore.java
75
Collections.
synchronizedList
(new ArrayList<TvContentRating>());
/libcore/ojluni/src/main/java/java/util/
Collections.java
[
all
...]
ArrayList.java
69
* {@link Collections#
synchronizedList
Collections.
synchronizedList
}
72
* List list = Collections.
synchronizedList
(new ArrayList(...));</pre>
[
all
...]
LinkedList.java
49
* {@link Collections#
synchronizedList
Collections.
synchronizedList
}
52
* List list = Collections.
synchronizedList
(new LinkedList(...));</pre>
[
all
...]
/external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java
128
Collections.
synchronizedList
(new ArrayList<ListenerCallQueue<Listener>>());
/external/testng/src/main/java/org/testng/internal/
BaseTestMethod.java
65
private final List<Integer> m_failedInvocationNumbers = Collections.
synchronizedList
(Lists.<Integer>newArrayList());
/prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1-sources.jar
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CollectionsTest.java
[
all
...]
Completed in 1884 milliseconds
1
2
3