Home
last modified time | relevance | path

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

/external/smali/dexlib2/accessorTestGenerator/src/main/resources/
DAccessorTest.stg24 binary_method(input, type, binary_operation) ::= <<
25 public void <type.name>_<binary_operation.name>(<input> val) {
26 <(operation_template_name(binary_operation))(type)>
30 binary_methods(binary_operation, type) ::= <<
31 <binary_operation.inputTypes:binary_method(type, binary_operation);separator="\n\n">
/external/v8/src/ast/
Dast.h2067 BinaryOperation* binary_operation() const { return binary_operation_; } in binary_operation() function
2073 int pos, BinaryOperation* binary_operation) in CompoundAssignment() argument
2075 binary_operation_(binary_operation) {} in CompoundAssignment()
/external/v8/src/interpreter/
Dbytecode-generator.cc2953 BinaryOperation* binop = expr->AsCompoundAssignment()->binary_operation(); in VisitAssignment()