HomeSort by relevance Sort by last modified time
    Searched defs:UnaryOpNode (Results 1 - 2 of 2) sorted by null

  /external/webkit/JavaScriptCore/parser/
NodeConstructors.h 407 inline UnaryOpNode::UnaryOpNode(JSGlobalData* globalData, ResultType type, ExpressionNode* expr, OpcodeID opcodeID)
415 : UnaryOpNode(globalData, ResultType::numberType(), expr, op_to_jsnumber)
420 : UnaryOpNode(globalData, ResultType::numberTypeCanReuse(), expr, op_negate)
425 : UnaryOpNode(globalData, ResultType::forBitOp(), expr, op_bitnot)
430 : UnaryOpNode(globalData, ResultType::booleanType(), expr, op_not)
    [all...]
Nodes.h 758 class UnaryOpNode : public ExpressionNode {
760 UnaryOpNode(JSGlobalData*, ResultType, ExpressionNode*, OpcodeID);
775 class UnaryPlusNode : public UnaryOpNode {
783 class NegateNode : public UnaryOpNode {
788 class BitwiseNotNode : public UnaryOpNode {
793 class LogicalNotNode : public UnaryOpNode {
    [all...]

Completed in 2150 milliseconds