Home
last modified time | relevance | path

Searched refs:UnaryOperation (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Ddiscrete_distribution.h72 template <class UnaryOperation>
74 UnaryOperation fw) { in param_type()
122 template <class UnaryOperation>
124 UnaryOperation fw) in discrete_distribution()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.h198 void VisitVoid(UnaryOperation* expr);
199 void VisitTypeOf(UnaryOperation* expr);
200 void VisitNot(UnaryOperation* expr);
201 void VisitDelete(UnaryOperation* expr);
Dbytecode-generator.cc3346 .UnaryOperation(Token::INC, feedback_index(index_slot)) in BuildFillArrayWithIterator()
3491 ->UnaryOperation(Token::INC, feedback_index(index_slot.Get())) in BuildCreateArrayLiteral()
3500 .UnaryOperation(Token::INC, feedback_index(index_slot.Get())) in BuildCreateArrayLiteral()
5770 void BytecodeGenerator::VisitVoid(UnaryOperation* expr) { in VisitVoid()
5787 void BytecodeGenerator::VisitTypeOf(UnaryOperation* expr) { in VisitTypeOf()
5792 void BytecodeGenerator::VisitNot(UnaryOperation* expr) { in VisitNot()
5810 void BytecodeGenerator::VisitUnaryOperation(UnaryOperation* expr) { in VisitUnaryOperation()
5829 builder()->UnaryOperation( in VisitUnaryOperation()
5837 void BytecodeGenerator::VisitDelete(UnaryOperation* unary) { in VisitDelete()
6025 builder()->UnaryOperation(expr->op(), feedback_index(count_slot)); in VisitCountOperation()
Dbytecode-array-builder.h375 BytecodeArrayBuilder& UnaryOperation(Token::Value op, int feedback_slot);
Dbytecode-array-builder.cc485 BytecodeArrayBuilder& BytecodeArrayBuilder::UnaryOperation(Token::Value op, in UnaryOperation() function in v8::internal::interpreter::BytecodeArrayBuilder
/third_party/node/deps/v8/src/ast/
Dast.cc867 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsTypeof()
890 UnaryOperation* maybe_unary = expr->AsUnaryOperation(); in IsVoidOfLiteral()
Dast.h108 V(UnaryOperation) \
1826 class UnaryOperation final : public Expression {
1835 UnaryOperation(Token::Value op, Expression* expression, int pos) in UnaryOperation() function
3136 UnaryOperation* NewUnaryOperation(Token::Value op, in NewUnaryOperation()
3139 return zone_->New<UnaryOperation>(op, expression, pos); in NewUnaryOperation()
Dprettyprinter.cc493 void CallPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation()
1398 void AstPrinter::VisitUnaryOperation(UnaryOperation* node) { in VisitUnaryOperation()
Dast-traversal-visitor.h424 void AstTraversalVisitor<Subclass>::VisitUnaryOperation(UnaryOperation* expr) { in VisitUnaryOperation()