Home
last modified time | relevance | path

Searched refs:opcodeName (Results 1 – 3 of 3) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcodes.java58 public Opcode getOpcodeByName(String opcodeName) { in getOpcodeByName() argument
59 return opcodesByName.get(opcodeName.toLowerCase()); in getOpcodeByName()
DOpcode.java331 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format) { in Opcode() argument
332 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, 0, (short)-1); in Opcode()
335 Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags) { in Opcode() argument
336 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, (short)-1); in Opcode()
339 …Opcode(short opcodeValue, String opcodeName, int referenceType, Format format, int flags, short ju… in Opcode() argument
340 this(opcodeValue, opcodeName, ALL_APIS, referenceType, format, flags, jumboOpcodeValue); in Opcode()
343 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format)… in Opcode() argument
344 this(opcodeValue, opcodeName, apiConstraints, referenceType, format, 0, (short)-1); in Opcode()
347 …Opcode(short opcodeValue, String opcodeName, int apiConstraints, int referenceType, Format format,… in Opcode() argument
348 this(opcodeValue, opcodeName, apiConstraints, referenceType, format, flags, (short)-1); in Opcode()
[all …]
/external/llvm/utils/TableGen/
DDAGISelMatcher.h1026 EmitNodeMatcherCommon(const std::string &opcodeName, in EmitNodeMatcherCommon() argument
1032 : Matcher(isMorphNodeTo ? MorphNodeTo : EmitNode), OpcodeName(opcodeName), in EmitNodeMatcherCommon()
1076 EmitNodeMatcher(const std::string &opcodeName, in EmitNodeMatcher() argument
1082 : EmitNodeMatcherCommon(opcodeName, vts, operands, hasChain, in EmitNodeMatcher()
1099 MorphNodeToMatcher(const std::string &opcodeName, in MorphNodeToMatcher() argument
1105 : EmitNodeMatcherCommon(opcodeName, vts, operands, hasChain, in MorphNodeToMatcher()