OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instanceof
(Results
451 - 475
of
3504
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/easymock/src/org/easymock/internal/matchers/
EndsWith.java
33
return (actual
instanceof
String) && ((String) actual).endsWith(suffix);
Find.java
34
return (actual
instanceof
String)
Matches.java
33
return (actual
instanceof
String) && ((String) actual).matches(regex);
StartsWith.java
33
return (actual
instanceof
String)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/
Pair.java
45
if (!(o
instanceof
Pair<?, ?>)) {
/external/guava/guava/src/com/google/common/collect/
Synchronized.java
298
return (list
instanceof
RandomAccess)
407
if (multiset
instanceof
SynchronizedMultiset ||
408
multiset
instanceof
ImmutableMultiset) {
502
if (multimap
instanceof
SynchronizedMultimap ||
503
multimap
instanceof
ImmutableMultimap) {
687
if (multimap
instanceof
SynchronizedListMultimap ||
688
multimap
instanceof
ImmutableListMultimap) {
724
if (multimap
instanceof
SynchronizedSetMultimap ||
725
multimap
instanceof
ImmutableSetMultimap) {
771
if (multimap
instanceof
SynchronizedSortedSetMultimap)
[
all
...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Synchronized.java
285
return (list
instanceof
RandomAccess)
394
if (multiset
instanceof
SynchronizedMultiset ||
395
multiset
instanceof
ImmutableMultiset) {
489
if (multimap
instanceof
SynchronizedMultimap ||
490
multimap
instanceof
ImmutableMultimap) {
674
if (multimap
instanceof
SynchronizedListMultimap ||
675
multimap
instanceof
ImmutableListMultimap) {
711
if (multimap
instanceof
SynchronizedSetMultimap ||
712
multimap
instanceof
ImmutableSetMultimap) {
758
if (multimap
instanceof
SynchronizedSortedSetMultimap)
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
BaseComparable.java
40
} else if (other
instanceof
BaseComparable) {
UnhashableObject.java
34
if (object
instanceof
UnhashableObject) {
/external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetTest.java
91
assertTrue(set
instanceof
SingletonImmutableSet);
160
assertTrue(set
instanceof
RegularImmutableSet);
186
assertTrue(list
instanceof
ImmutableAsList);
188
assertTrue(copy
instanceof
ImmutableAsList);
MapsSortedTransformValuesTest.java
52
instanceof
SortedMap);
SynchronizedMultimapTest.java
202
assertTrue(multimap.get("foo")
instanceof
RandomAccess);
203
assertTrue(multimap.get("bar")
instanceof
RandomAccess);
212
assertFalse(multimap.get("foo")
instanceof
RandomAccess);
213
assertFalse(multimap.get("bar")
instanceof
RandomAccess);
/external/hamcrest/src/org/hamcrest/
CoreMatchers.java
28
* This is a shortcut to the frequently used is(
instanceOf
(SomeClass.class)).
30
* eg. assertThat(cheese, is(
instanceOf
(Cheddar.class)))
65
public static org.hamcrest.Matcher<java.lang.Object>
instanceOf
(java.lang.Class<?> type) {
66
return org.hamcrest.core.IsInstanceOf.
instanceOf
(type);
/external/javassist/sample/reflect/
Person.java
46
if (p
instanceof
Metalevel) {
/external/jmdns/src/javax/jmdns/impl/
NetworkTopologyEventImpl.java
48
return (this.getSource()
instanceof
JmDNS ? (JmDNS) getSource() : null);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
SimpleBatchNode.java
31
if (!(child
instanceof
Geometry)) {
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java
38
if (id
instanceof
Button){
41
}else if (id
instanceof
Axis){
164
}else if (id
instanceof
Axis){
169
}else if (id
instanceof
Button){
/external/junit/src/org/junit/runner/manipulation/
Sorter.java
37
if (object
instanceof
Sortable) {
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
AreaCodeMapTest.java
87
assertFalse(mapStorage
instanceof
FlyweightMapStorage);
93
assertTrue(mapStorage
instanceof
FlyweightMapStorage);
176
assertFalse(localAreaCodeMap.getAreaCodeMapStorage()
instanceof
FlyweightMapStorage);
186
assertTrue(localAreaCodeMap.getAreaCodeMapStorage()
instanceof
FlyweightMapStorage);
/external/proguard/src/proguard/obfuscate/
MemberObfuscator.java
153
if (!(lastVisitorAccepter
instanceof
LibraryMember) &&
154
!(lastVisitorAccepter
instanceof
MyFixedName))
185
return lastVisitorAccepter
instanceof
LibraryMember ||
186
lastVisitorAccepter
instanceof
MyFixedName;
/external/proguard/src/proguard/optimize/info/
InstanceofClassFilter.java
28
* but only for Clazz objects that are used in an '
instanceof
' test.
/external/v8/test/mjsunit/harmony/
block-leave.js
77
assertTrue(e2
instanceof
ReferenceError);
159
if (e
instanceof
MjsUnitAssertionError) throw e;
176
if (e
instanceof
MjsUnitAssertionError) throw e;
226
if (e
instanceof
MjsUnitAssertionError) throw e;
/external/v8/test/mjsunit/regress/
regress-1020.js
29
return o
instanceof
Object;
regress-676025.js
31
assertTrue(result
instanceof
SyntaxError);
/external/v8/test/mjsunit/
with-leave.js
56
assertTrue(e2
instanceof
ReferenceError);
148
if (e
instanceof
MjsUnitAssertionError) throw e;
165
if (e
instanceof
MjsUnitAssertionError) throw e;
219
if (e
instanceof
MjsUnitAssertionError) throw e;
Completed in 1794 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>