OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:instanceof
(Results
626 - 650
of
3901
) sorted by null
<<
21
22
23
24
25
26
27
28
29
30
>>
/external/apache-http/src/org/apache/http/protocol/
HttpService.java
146
if (request
instanceof
HttpEntityEnclosingRequest) {
191
if (request
instanceof
HttpEntityEnclosingRequest) {
218
if (ex
instanceof
MethodNotSupportedException) {
220
} else if (ex
instanceof
UnsupportedHttpVersionException) {
222
} else if (ex
instanceof
ProtocolException) {
/external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java
100
if (null != owner && owner
instanceof
org.w3c.dom.Node)
115
while((null != parent) && (parent
instanceof
Expression))
195
if (exception
instanceof
TransformerException)
230
if (exception
instanceof
TransformerException)
296
if (exception
instanceof
TransformerException)
/external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprWalker.java
78
//if((OpCodes.OP_FUNCTION == stepType) && (m_expr
instanceof
org.apache.xalan.templates.FuncKey))
79
if(m_expr
instanceof
org.apache.xpath.operations.Variable)
89
// if(m_expr
instanceof
WalkingIterator)
92
// if(wi.getFirstWalker()
instanceof
FilterExprWalker)
267
if (null != m_expr && m_expr
instanceof
PathComponent)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralizedTime.java
29
if (obj == null || obj
instanceof
ASN1GeneralizedTime)
34
if (obj
instanceof
DERGeneralizedTime)
39
if (obj
instanceof
byte[])
69
if (explicit || o
instanceof
DERGeneralizedTime)
338
if (!(o
instanceof
DERGeneralizedTime))
/external/javassist/src/main/javassist/expr/
ExprEditor.java
234
else if (c == Opcode.
INSTANCEOF
) {
235
expr = new
Instanceof
(pos, iterator, clazz, minfo);
236
edit((
Instanceof
)expr);
300
* Edits an
instanceof
expression (overridable).
303
public void edit(
Instanceof
i) throws CannotCompileException {}
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java
233
if (evt
instanceof
MouseMotionEvent) {
235
} else if (evt
instanceof
MouseButtonEvent) {
237
} else if (evt
instanceof
KeyInputEvent) {
239
} else if (evt
instanceof
TouchEvent) {
254
if (textField != null && !(textField
instanceof
TextFieldNull)) {
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java
95
if (analyzedInstruction.getInstruction()
instanceof
RegisterRangeInstruction) {
100
} else if (analyzedInstruction.getInstruction()
instanceof
FiveRegisterInstruction) {
119
} else if (analyzedInstruction.getInstruction()
instanceof
ThreeRegisterInstruction) {
124
} else if (analyzedInstruction.getInstruction()
instanceof
TwoRegisterInstruction) {
128
} else if (analyzedInstruction.getInstruction()
instanceof
SingleRegisterInstruction) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityViewFlipper.java
72
if (child
instanceof
KeyguardSecurityView) {
143
if (child
instanceof
KeyguardSecurityView) {
155
if (child
instanceof
KeyguardSecurityView) {
164
return p
instanceof
LayoutParams;
169
return p
instanceof
LayoutParams ? new LayoutParams((LayoutParams) p) : new LayoutParams(p);
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLCipherRSA.java
162
if (key
instanceof
OpenSSLRSAPrivateKey) {
166
} else if (key
instanceof
RSAPrivateCrtKey) {
170
} else if (key
instanceof
RSAPrivateKey) {
174
} else if (key
instanceof
OpenSSLRSAPublicKey) {
178
} else if (key
instanceof
RSAPublicKey) {
/packages/apps/Camera/src/com/android/camera/
ComboPreferences.java
81
if (v
instanceof
String) {
83
} else if (v
instanceof
Integer) {
85
} else if (v
instanceof
Long) {
87
} else if (v
instanceof
Float) {
89
} else if (v
instanceof
Boolean) {
/packages/apps/Gallery2/src/com/android/camera/
ComboPreferences.java
84
if (v
instanceof
String) {
86
} else if (v
instanceof
Integer) {
88
} else if (v
instanceof
Long) {
90
} else if (v
instanceof
Float) {
92
} else if (v
instanceof
Boolean) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java
113
if (parent
instanceof
Document) {
121
} else if (useParent && (parent
instanceof
Element)) {
137
if (mContainer.getParentNode()
instanceof
Document) {
185
if (mContainer.getParentNode()
instanceof
Document) {
192
if (attribute
instanceof
IndexedRegion) {
/external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java
68
return obj
instanceof
IsOdd;
548
* Tests for Predicates.
instanceOf
(x).
554
@GwtIncompatible("Predicates.
instanceOf
")
556
Predicate<Object> isInteger = Predicates.
instanceOf
(Integer.class);
564
@GwtIncompatible("Predicates.
instanceOf
")
566
Predicate<Object> isNumber = Predicates.
instanceOf
(Number.class);
574
@GwtIncompatible("Predicates.
instanceOf
")
576
Predicate<Object> isComparable = Predicates.
instanceOf
(Comparable.class);
584
@GwtIncompatible("Predicates.
instanceOf
")
588
Predicates.
instanceOf
(Integer.class)
[
all
...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java
211
if(input
instanceof
TestCaseInputString) {
215
} else if(input
instanceof
TestCaseInputMultiString) {
219
} else if(input
instanceof
TestCaseInputFile) {
238
if(output
instanceof
TestCaseOutputAST) {
244
} else if(output
instanceof
TestCaseOutputResult) {
250
} else if(output
instanceof
TestCaseOutputStdOut) {
256
} else if(output
instanceof
TestCaseOutputReturn) {
607
if (value
instanceof
TestCase) {
618
labIn.setIcon(item.getInput()
instanceof
TestCaseInputFile ?
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DOTGenerator.java
74
if ( startState
instanceof
DFAState ) {
139
if ( edge.target
instanceof
DFAState &&
209
if ( edge
instanceof
RuleClosureTransition ) {
294
if ( !edge.isSemanticPredicate() && target
instanceof
DFAState ) {
315
if ( s
instanceof
DFAState ) {
320
if ( s
instanceof
DFAState ) {
369
if ( (s
instanceof
NFAState) && ((NFAState)s).isDecisionState() ) {
376
else if ( (s
instanceof
NFAState) &&
382
else if ( s
instanceof
DFAState && ((DFAState)s).isAcceptState() ) {
/external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java
63
@SuppressWarnings("unchecked") // the
instanceof
check and the cast generate this warning
69
Preconditions.checkState(valueRef
instanceof
Reference);
82
@SuppressWarnings("unchecked") // the
instanceof
check and the cast generate this warning
86
Preconditions.checkState(entry
instanceof
Reference);
114
if (cache
instanceof
LocalLoadingCache) {
126
return (cache
instanceof
LocalLoadingCache);
457
if (map
instanceof
LocalCache) {
478
if (collection
instanceof
Set) {
483
} else if (collection
instanceof
List) {
/external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetMultimapTest.java
226
assertFalse(multimap.get("a")
instanceof
ImmutableSortedSet);
227
assertFalse(multimap.get("x")
instanceof
ImmutableSortedSet);
228
assertFalse(multimap.asMap().get("a")
instanceof
ImmutableSortedSet);
246
assertTrue(multimap.get("a")
instanceof
ImmutableSortedSet);
249
assertTrue(multimap.get("x")
instanceof
ImmutableSortedSet);
252
assertTrue(multimap.asMap().get("a")
instanceof
ImmutableSortedSet);
273
assertTrue(multimap.get("a")
instanceof
ImmutableSortedSet);
276
assertTrue(multimap.get("x")
instanceof
ImmutableSortedSet);
279
assertTrue(multimap.asMap().get("a")
instanceof
ImmutableSortedSet);
MultimapsTest.java
136
assertTrue(multimap.get("foo")
instanceof
RandomAccess);
137
assertTrue(multimap.get("bar")
instanceof
RandomAccess);
146
assertFalse(multimap.get("foo")
instanceof
RandomAccess);
147
assertFalse(multimap.get("bar")
instanceof
RandomAccess);
302
assertFalse(unmodifiable.entries()
instanceof
Serializable);
303
assertFalse(unmodifiable.asMap().values()
instanceof
Serializable);
331
if (multimap
instanceof
SortedSetMultimap) {
334
} else if (multimap
instanceof
SetMultimap) {
337
} else if (multimap
instanceof
ListMultimap) {
572
assertFalse(multimap.keySet()
instanceof
SortedSet)
[
all
...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java
148
if (light
instanceof
DirectionalLight)
150
else if (light
instanceof
SpotLight){
160
if (light
instanceof
PointLight || light
instanceof
SpotLight){
175
if (light
instanceof
PointLight){
189
if (!(light
instanceof
SpotLight)){
380
if (light
instanceof
DirectionalLight){
386
}else if (light
instanceof
PointLight){
390
}else if (light
instanceof
SpotLight){
/external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java
135
if (!(sipEvent
instanceof
IOExceptionEvent)) {
141
if (sipEvent
instanceof
RequestEvent) {
273
} else if (sipEvent
instanceof
ResponseEvent) {
369
} else if (sipEvent
instanceof
TimeoutEvent) {
382
} else if (sipEvent
instanceof
DialogTimeoutEvent) {
385
if (sipListener != null && sipListener
instanceof
SipListenerExt) {
395
} else if (sipEvent
instanceof
IOExceptionEvent) {
402
} else if (sipEvent
instanceof
TransactionTerminatedEvent) {
430
} else if (sipEvent
instanceof
DialogTerminatedEvent) {
/external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java
287
if (requestLine.getUri()
instanceof
SipUri) {
333
if (u
instanceof
SipUri) {
702
if (nextHeader
instanceof
From
703
|| nextHeader
instanceof
To
704
|| nextHeader
instanceof
ViaList
705
|| nextHeader
instanceof
CallID
706
|| (nextHeader
instanceof
RecordRouteList && mustCopyRR(statusCode))
707
|| nextHeader
instanceof
CSeq
709
|| nextHeader
instanceof
TimeStamp) {
825
if (nextHeader
instanceof
RouteList)
[
all
...]
SIPResponse.java
696
|| nextHeader
instanceof
ViaList
697
|| nextHeader
instanceof
CSeq
698
|| nextHeader
instanceof
ContentType
699
|| nextHeader
instanceof
ContentLength
700
|| nextHeader
instanceof
RecordRouteList
701
|| nextHeader
instanceof
RequireList
702
|| nextHeader
instanceof
ContactList // JvB: added
703
|| nextHeader
instanceof
ContentLength
704
|| nextHeader
instanceof
ServerHeader
705
|| nextHeader
instanceof
ReasonHeade
[
all
...]
/frameworks/base/core/java/android/database/
DatabaseUtils.java
87
if (e
instanceof
FileNotFoundException) {
90
} else if (e
instanceof
IllegalArgumentException) {
92
} else if (e
instanceof
UnsupportedOperationException) {
94
} else if (e
instanceof
SQLiteAbortException) {
96
} else if (e
instanceof
SQLiteConstraintException) {
98
} else if (e
instanceof
SQLiteDatabaseCorruptException) {
100
} else if (e
instanceof
SQLiteFullException) {
102
} else if (e
instanceof
SQLiteDiskIOException) {
104
} else if (e
instanceof
SQLiteException) {
106
} else if (e
instanceof
OperationApplicationException)
[
all
...]
/libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java
140
while (b
instanceof
PropertyChangeListenerProxy) {
145
if (!(a
instanceof
PropertyChangeListenerProxy)) {
180
if (p
instanceof
PropertyChangeListenerProxy && Objects.equal(
275
if (!(p
instanceof
PropertyChangeListenerProxy) || Objects.equal(
324
if (p
instanceof
PropertyChangeListenerProxy && !(p
instanceof
Serializable)) {
327
if (listener
instanceof
Serializable) {
344
if (p
instanceof
Serializable) {
389
while (p
instanceof
PropertyChangeListenerProxy) {
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java
110
assertTrue(testData[i].toString(), testData[i]
instanceof
String);
114
assertTrue(member.getClass().getSimpleName(), member
instanceof
IFile);
136
if (change
instanceof
CompositeChange
165
if (change
instanceof
TextFileChange) {
187
} else if (change
instanceof
RenameCompilationUnitChange) {
189
} else if (change
instanceof
RenameResourceChange) {
191
} else if (change
instanceof
RenamePackageChange) {
193
} else if (change
instanceof
MoveResourceChange) {
195
} else if (change
instanceof
CompositeChange) {
204
if (change
instanceof
CompositeChange)
[
all
...]
Completed in 801 milliseconds
<<
21
22
23
24
25
26
27
28
29
30
>>