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

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
TextValueCellEditor.java 36 if (value instanceof UiAttributeNode) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 84 if (xml_node instanceof IndexedRegion) {
94 if (xml_node instanceof NodeContainer) {
110 if (!(mUiNode.getUiParent() instanceof UiDocumentNode)) {
112 if (xml_node instanceof IndexedRegion) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringContribution.java 48 if (descriptor instanceof ExtractStringDescriptor) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFolderWrapper.java 47 mFolder = container instanceof IFolder ? (IFolder)container : null;
81 if (f instanceof IFile) {
133 if (obj instanceof IFolderWrapper) {
137 if (obj instanceof IFolder) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLBooleanProperty.java 51 if (value instanceof Boolean) {
GLEnumProperty.java 53 if (value instanceof GLEnum) {
GLFloatProperty.java 41 if (value instanceof Float) {
GLStringProperty.java 36 if (value instanceof String) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
Predicates.java 29 return value instanceof Integer && ((Integer) value).intValue() == mExpected;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FrameSummaryView.java 35 if (!(part instanceof GLFunctionTraceViewer)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DetailsView.java 33 if (!(part instanceof GLFunctionTraceViewer)) {
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetProviderTest.java 144 assertTrue(Charset.forName("mockCharset10") instanceof MockCharset);
145 assertTrue(Charset.forName("mockCharset11") instanceof MockCharset);
146 assertTrue(Charset.forName("mockCharset12") instanceof MockCharset);
206 assertFalse(Charset.forName("us-ascii") instanceof MockCharset);
207 assertFalse(Charset.availableCharsets().get("us-ascii") instanceof MockCharset);
284 assertTrue(Charset.availableCharsets().get("mockCharset00") instanceof MockCharset);
285 assertTrue(Charset.availableCharsets().get("MOCKCharset00") instanceof MockCharset);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 270 if(m_contentHandler instanceof org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.CharacterNodeHandler)
292 if (m_contentHandler instanceof NodeConsumer)
297 if (node instanceof Locator)
317 if (m_contentHandler instanceof LexicalHandler)
388 boolean isLexH = (m_contentHandler instanceof LexicalHandler);
429 if (m_contentHandler instanceof LexicalHandler)
496 if (m_contentHandler instanceof LexicalHandler)
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyPairGenerator.java 102 if (!(params instanceof RSAKeyGenParameterSpec))
156 if (!(params instanceof DHParameterSpec))
238 if (!(params instanceof DSAParameterSpec))
300 // if (!(params instanceof ElGamalParameterSpec) && !(params instanceof DHParameterSpec))
305 // if (params instanceof ElGamalParameterSpec)
387 // if (!(params instanceof GOST3410ParameterSpec))
JCEStreamCipher.java 169 if (!(key instanceof SecretKey))
174 if (key instanceof JCEPBEKey)
192 else if (params instanceof PBEParameterSpec)
211 else if (params instanceof IvParameterSpec)
221 if ((ivLength != 0) && !(param instanceof ParametersWithIV))
  /frameworks/base/core/java/android/content/
ContentValues.java 78 if (!(object instanceof ContentValues)) {
265 if (value instanceof CharSequence) {
290 if (value instanceof CharSequence) {
315 if (value instanceof CharSequence) {
340 if (value instanceof CharSequence) {
365 if (value instanceof CharSequence) {
390 if (value instanceof CharSequence) {
415 if (value instanceof CharSequence) {
417 } else if (value instanceof Number) {
435 if (value instanceof byte[])
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactEntryListAdapter.java 154 if ((partition instanceof DirectoryPartition)
167 if (partition instanceof DirectoryPartition) {
187 if (partition instanceof DirectoryPartition) {
205 if (partition instanceof DirectoryPartition) {
384 if (partition instanceof DirectoryPartition) {
404 if (partition instanceof DirectoryPartition) {
486 if (partition instanceof DirectoryPartition
512 if (partition instanceof DirectoryPartition &&
534 if (!(partition instanceof DirectoryPartition)) {
610 if (partition instanceof DirectoryPartition)
    [all...]
  /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/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) {
  /packages/apps/Settings/src/com/android/settings/
SettingsPreferenceFragment.java 194 if (!(fragment instanceof Fragment)) {
217 if (!(mParentFragment instanceof DialogCreatable)) {
224 if (mParentFragment instanceof SettingsPreferenceFragment) {
257 if (mParentFragment instanceof SettingsPreferenceFragment) {
280 if (getActivity() instanceof PreferenceActivity) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 112 if (parent instanceof Document) {
120 } else if (useParent && (parent instanceof Element)) {
136 if (mContainer.getParentNode() instanceof Document) {
184 if (mContainer.getParentNode() instanceof Document) {
191 if (attribute instanceof IndexedRegion) {

Completed in 2110 milliseconds

<<21222324252627282930>>