Home
last modified time | relevance | path

Searched refs:asInstanceOf (Results 1 – 4 of 4) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DInstanceOf.java59 return other.asInstanceOf().type == type; in identicalNonValueParts()
64 return type.slowCompareTo(other.asInstanceOf().type); in compareNonValueParts()
73 public InstanceOf asInstanceOf() { in asInstanceOf() method in InstanceOf
DInstruction.java494 public InstanceOf asInstanceOf() { in asInstanceOf() method in Instruction
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
DScala.stg665 …(input,<token>,FOLLOW_<token>_in_<ruleName><elementIndex>)<if(label)>.asInstanceOf[<labelType>]<en…
703 <label>=input.LT(1).asInstanceOf[<labelType>]<\n>
756 <label>=input.LT(1).asInstanceOf[<labelType>]<\n>
1058 val input = _input.asInstanceOf[TokenStream]
1061 val input = _input.asInstanceOf[TreeNodeStream]
1299 ruleLabelPropertyRef_start(scope,attr) ::= "(if (<scope>!=null) <scope>.start.asInstanceOf[<labelTy…
1300 ruleLabelPropertyRef_stop(scope,attr) ::= "(if (<scope>!=null) <scope>.stop.asInstanceOf[<labelType…
1301 ruleLabelPropertyRef_tree(scope,attr) ::= "(if (<scope>!=null) <scope>.tree.asInstanceOf[<ASTLabelT…
1333 rulePropertyRef_start(scope,attr) ::= "(retval.start.asInstanceOf[<labelType>])"
1334 rulePropertyRef_stop(scope,attr) ::= "(retval.stop.asInstanceOf[<labelType>])"
[all …]
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
DLensCodeRewriter.java175 InstanceOf instanceOf = current.asInstanceOf(); in rewrite()