HomeSort by relevance Sort by last modified time
    Searched full:instanceof (Results 901 - 925 of 3504) sorted by null

<<31323334353637383940>>

  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 444 if (cst instanceof CstString) {
446 } else if (cst instanceof CstType) {
448 } else if (cst instanceof CstBaseMethodRef) {
450 } else if (cst instanceof CstFieldRef) {
452 } else if (cst instanceof CstEnumRef) {
473 if (cst instanceof CstString) {
475 } else if (cst instanceof CstType) {
477 } else if (cst instanceof CstBaseMethodRef) {
479 } else if (cst instanceof CstFieldRef) {
538 if (one instanceof MixedItemSection)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 444 if (cst instanceof CstString) {
446 } else if (cst instanceof CstType) {
448 } else if (cst instanceof CstBaseMethodRef) {
450 } else if (cst instanceof CstFieldRef) {
452 } else if (cst instanceof CstEnumRef) {
473 if (cst instanceof CstString) {
475 } else if (cst instanceof CstType) {
477 } else if (cst instanceof CstBaseMethodRef) {
479 } else if (cst instanceof CstFieldRef) {
538 if (one instanceof MixedItemSection)
    [all...]
  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 351 return (typeof object === "undefined") && inspectedWindow.HTMLAllCollection && object instanceof inspectedWindow.HTMLAllCollection;
372 if (obj instanceof inspectedWindow.Node)
374 if (obj instanceof inspectedWindow.String)
376 if (obj instanceof inspectedWindow.Array)
378 if (obj instanceof inspectedWindow.Boolean)
380 if (obj instanceof inspectedWindow.Number)
382 if (obj instanceof inspectedWindow.Date)
384 if (obj instanceof inspectedWindow.RegExp)
395 if (obj instanceof inspectedWindow.NodeList)
397 if (obj instanceof inspectedWindow.HTMLCollection
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
JavaPerformanceDetector.java 225 if (mFlagAllocations && !(node.getParent() instanceof Throw) && mCheckAllocations) {
231 if (method instanceof MethodDeclaration) {
310 if (curr instanceof MethodDeclaration) {
312 } else if (curr instanceof If) {
346 if (expression instanceof BinaryExpression) {
350 } else if (expression instanceof UnaryExpression) {
353 } else if (expression instanceof VariableReference) {
356 } else if (expression instanceof Select) {
358 if (select.astOperand() instanceof This) {
528 if (left instanceof Select && ((Select) left).astOperand() instanceof This)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 113 // if (baseDoc == DTM.NULL /* || baseDoc instanceof Stylesheet -->What to do?? */)
291 instanceof org.apache.xml.utils.WrappedRuntimeException)
297 if ((throwable instanceof NullPointerException)
298 || (throwable instanceof ClassCastException))
307 if (throwable instanceof TransformerException)
322 if (e instanceof TransformerException)
335 if (e instanceof org.apache.xml.utils.WrappedRuntimeException)
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 92 if (m_contentHandler instanceof SerializationHandler) {
265 // if (m_contentHandler instanceof NodeConsumer)
271 if (node instanceof Locator)
291 if (m_contentHandler instanceof LexicalHandler)
383 boolean isLexH = (m_contentHandler instanceof LexicalHandler);
424 if (m_contentHandler instanceof LexicalHandler)
515 if (m_contentHandler instanceof LexicalHandler)
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 142 if(parent instanceof Node) {
173 if(parent instanceof Node) {
204 if(light instanceof PointLight) {
206 } else if(light instanceof DirectionalLight) {
215 } else if(light instanceof SpotLight) {
248 if(parent instanceof Node) {
278 if(result instanceof Spatial && properties != null && properties.getValue() != null) {
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
VarOptimizer.java 167 if (expression instanceof AAddExpression) {
179 if (expression instanceof AFunctionExpression) {
215 if (command instanceof AMultipleCommand) {
231 if (!(nvar instanceof ANameVariable)) {
291 if (escapedCommand instanceof AMultipleCommand) {
305 if (!(command instanceof AEscapeCommand)) {
309 if (!(escapeCommand.getExpression() instanceof AStringExpression)) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java 330 if (this.getParameterValue(parameterName) instanceof String) {
352 if (this.getParameterValue(parameterName) instanceof String) {
377 if (this.getParameterValue(parameterName) instanceof String) {
400 if (this.getParameterValue(parameterName) instanceof String) {
423 if (val instanceof GenericURI)
445 } else if (val instanceof Boolean) {
447 } else if (val instanceof String) {
  /external/v8/test/mjsunit/
array-reduce.js 34 if (v instanceof Array) {
419 assertTrue(e instanceof TypeError,
431 assertTrue(e instanceof TypeError,
443 assertTrue(e instanceof TypeError,
455 assertTrue(e instanceof TypeError,
467 assertTrue(e instanceof TypeError,
479 assertTrue(e instanceof TypeError,
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 162 final boolean isGeneratedItem = child instanceof ActionMenuItemView;
282 if (child instanceof ActionMenuItemView) {
357 final ActionMenuItemView itemView = child instanceof ActionMenuItemView ?
492 if (p instanceof LayoutParams) {
504 return p != null && p instanceof LayoutParams;
530 if (childIndex < getChildCount() && childBefore instanceof ActionMenuChildView) {
533 if (childIndex > 0 && child instanceof ActionMenuChildView) {
  /frameworks/base/media/java/android/media/videoeditor/
Transition.java 233 if (this instanceof TransitionAlpha) {
247 } else if (this instanceof TransitionSliding) {
257 } else if (this instanceof TransitionCrossfade) {
265 } else if (this instanceof TransitionFadeBlack) {
309 if (effect instanceof EffectColor) {
314 if (m instanceof MediaVideoItem) {
476 if (!(object instanceof Transition)) {
  /libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationMember.java 111 if (value instanceof Throwable) {
198 if (obj instanceof AnnotationMember) {
223 if (value instanceof Object[] && otherValue instanceof Object[]) {
296 if (value instanceof TypeNotPresentException) {
299 } else if (value instanceof EnumConstantNotPresentException) {
302 } else if (value instanceof ArrayStoreException) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeMoveParticipant.java 174 if (element instanceof IType) {
182 || !(manifestResource instanceof IFile)) {
197 if (destination instanceof IPackageFragment) {
240 if ((member instanceof IFile) && member.exists()) {
275 if (lDocument instanceof IStructuredDocument) {
291 if (attributeNode instanceof Attr) {
360 if (document instanceof IStructuredDocument) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 199 assertTrue(editor.getClass().getName(), editor instanceof AndroidXmlEditor);
216 if (link instanceof Hyperlinks.ResourceLink) {
239 assertTrue(!(newEditor instanceof ErrorEditorPart));
244 if (newEditor instanceof AndroidXmlEditor) {
248 } else if (newEditor instanceof XMLMultiPageEditorPart) {
260 } else if (newEditor instanceof WebBrowserEditor) {
274 } else if (newEditor instanceof JavaEditor) {
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DecimalFormatTest.java 71 assertTrue(number instanceof Double);
78 assertTrue(number instanceof Double);
83 assertTrue(number instanceof BigDecimal);
95 assertTrue(number instanceof Long);
98 assertTrue(number instanceof Long);
101 assertTrue(number instanceof Long);
106 assertTrue(number instanceof Double);
114 assertTrue(number instanceof Double);
123 assertTrue(number instanceof Double);
133 assertTrue(number instanceof BigDecimal)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKAlgorithmParameters.java 119 if (!(paramSpec instanceof IvParameterSpec))
286 // if (paramSpec instanceof IvParameterSpec)
290 // else if (paramSpec instanceof RC2ParameterSpec)
400 if (!(paramSpec instanceof PBEParameterSpec))
483 if (!(paramSpec instanceof PBEParameterSpec))
577 if (!(paramSpec instanceof DHParameterSpec))
689 if (!(paramSpec instanceof DSAParameterSpec))
795 // if (!(paramSpec instanceof GOST3410ParameterSpec))
904 // if (!(paramSpec instanceof ElGamalParameterSpec) && !(paramSpec instanceof DHParameterSpec)
    [all...]
JCEBlockCipher.java 381 if (!(key instanceof SecretKey))
399 if (key instanceof JCEPBEKey)
417 else if (params instanceof PBEParameterSpec)
427 if (param instanceof ParametersWithIV)
436 else if (params instanceof IvParameterSpec)
461 // else if (params instanceof GOST28147ParameterSpec)
474 // else if (params instanceof RC2ParameterSpec)
486 // else if (params instanceof RC5ParameterSpec)
524 if ((ivLength != 0) && !(param instanceof ParametersWithIV))
1010 return !(cipher instanceof CTSBlockCipher)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 496 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
540 !(ui_root.getUiParent() instanceof UiDocumentNode)) {
602 mRemoveButton.setEnabled(!selection.isEmpty() && selection instanceof ITreeSelection);
651 if (selectedObj instanceof UiElementNode) {
668 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
671 if (first != null && first instanceof UiElementNode) {
692 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
706 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
719 if (!selection.isEmpty() && selection instanceof ITreeSelection) {
735 if (!selection.isEmpty() && selection instanceof ITreeSelection)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java 267 s.getLocalAddress() instanceof Inet6Address);
735 ((InetSocketAddress) s.getLocalSocketAddress()).getAddress() instanceof Inet6Address);
742 ((InetSocketAddress) s.getLocalSocketAddress()).getAddress() instanceof Inet6Address);
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
MediaLinearLayout.java 564 if (item instanceof MovieMediaItem) {
566 } else if (item instanceof MovieTransition) {
657 if (tag != null && tag instanceof MovieMediaItem) {
705 if (tag != null && tag instanceof MovieTransition) {
713 if (tag != null && tag instanceof MovieTransition) {
732 if (tag != null && tag instanceof MovieMediaItem) {
767 if (tag != null && tag instanceof MovieMediaItem) {
777 if (tagT != null && tagT instanceof MovieTransition) {
787 if (tagT != null && tagT instanceof MovieTransition) {
826 if (tag != null && tag instanceof MovieMediaItem)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputFinisher.java 106 if (insn instanceof LocalSnapshot) {
114 } else if (insn instanceof LocalStart) {
162 if (insn instanceof CstInsn) {
165 } else if (insn instanceof LocalSnapshot) {
171 } else if (insn instanceof LocalStart) {
291 if (insn instanceof CstInsn) {
313 if (cst instanceof CstMemberRef) {
405 * have registers in any case. Hence, the instanceof
409 if (!(insn instanceof CodeAddress)) {
667 if (!(insn instanceof TargetInsn))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputFinisher.java 115 if (insn instanceof LocalSnapshot) {
123 } else if (insn instanceof LocalStart) {
171 if (insn instanceof CstInsn) {
174 } else if (insn instanceof LocalSnapshot) {
180 } else if (insn instanceof LocalStart) {
301 if (insn instanceof CstInsn) {
323 if (cst instanceof CstMemberRef) {
416 * have registers in any case. Hence, the instanceof
420 if (!(insn instanceof CodeAddress)) {
684 if (!(insn instanceof TargetInsn))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputFinisher.java 115 if (insn instanceof LocalSnapshot) {
123 } else if (insn instanceof LocalStart) {
171 if (insn instanceof CstInsn) {
174 } else if (insn instanceof LocalSnapshot) {
180 } else if (insn instanceof LocalStart) {
301 if (insn instanceof CstInsn) {
323 if (cst instanceof CstMemberRef) {
416 * have registers in any case. Hence, the instanceof
420 if (!(insn instanceof CodeAddress)) {
684 if (!(insn instanceof TargetInsn))
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 71 if (multiset instanceof UnmodifiableMultiset ||
72 multiset instanceof ImmutableMultiset) {
434 if (object instanceof Multiset) {
474 if (elements instanceof Multiset) {
668 if (object instanceof Multiset.Entry) {
706 if (object instanceof Multiset) {
736 if (elements instanceof Multiset) {
752 Collection<?> collection = (elementsToRemove instanceof Multiset)
763 Collection<?> collection = (elementsToRetain instanceof Multiset)
850 if (o instanceof Entry)
    [all...]

Completed in 2771 milliseconds

<<31323334353637383940>>