Searched refs:opcodeName (Results 1 – 3 of 3) sorted by relevance
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | Opcodes.java | 118 public Opcode getOpcodeByName(@Nonnull String opcodeName) { in getOpcodeByName() argument 119 return opcodesByName.get(opcodeName.toLowerCase()); in getOpcodeByName()
|
D | Opcode.java | 363 Opcode(int opcodeValue, String opcodeName, int referenceType, Format format) { in Opcode() argument 364 this(opcodeValue, opcodeName, referenceType, format, 0); in Opcode() 367 Opcode(int opcodeValue, String opcodeName, int referenceType, Format format, int flags) { in Opcode() argument 368 this(allVersions(opcodeValue), opcodeName, referenceType, format, flags); in Opcode() 371 …Opcode(List<VersionConstraint> versionConstraints, String opcodeName, int referenceType, Format fo… in Opcode() argument 386 this.name = opcodeName; in Opcode()
|
/external/llvm/utils/TableGen/ |
D | DAGISelMatcher.h | 1027 EmitNodeMatcherCommon(const std::string &opcodeName, in EmitNodeMatcherCommon() argument 1033 : Matcher(isMorphNodeTo ? MorphNodeTo : EmitNode), OpcodeName(opcodeName), in EmitNodeMatcherCommon() 1077 EmitNodeMatcher(const std::string &opcodeName, in EmitNodeMatcher() argument 1083 : EmitNodeMatcherCommon(opcodeName, vts, operands, hasChain, in EmitNodeMatcher() 1100 MorphNodeToMatcher(const std::string &opcodeName, in MorphNodeToMatcher() argument 1106 : EmitNodeMatcherCommon(opcodeName, vts, operands, hasChain, in MorphNodeToMatcher()
|