HomeSort by relevance Sort by last modified time
    Searched refs:ArgumentsNode (Results 1 - 7 of 7) sorted by null

  /external/webkit/JavaScriptCore/parser/
NodeInfo.h 37 typedef NodeInfo<ArgumentsNode*> ArgumentsNodeInfo;
Nodes.h 491 class ArgumentsNode : public ParserArenaFreeable {
493 ArgumentsNode(JSGlobalData*);
494 ArgumentsNode(JSGlobalData*, ArgumentListNode*);
502 NewExprNode(JSGlobalData*, ExpressionNode*, ArgumentsNode*);
508 ArgumentsNode* m_args;
513 EvalFunctionCallNode(JSGlobalData*, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
518 ArgumentsNode* m_args;
523 FunctionCallValueNode(JSGlobalData*, ExpressionNode*, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
529 ArgumentsNode* m_args;
534 FunctionCallResolveNode(JSGlobalData*, const Identifier&, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset)
    [all...]
NodeConstructors.h 214 inline ArgumentsNode::ArgumentsNode(JSGlobalData*)
219 inline ArgumentsNode::ArgumentsNode(JSGlobalData*, ArgumentListNode* listNode)
231 inline NewExprNode::NewExprNode(JSGlobalData* globalData, ExpressionNode* expr, ArgumentsNode* args)
238 inline EvalFunctionCallNode::EvalFunctionCallNode(JSGlobalData* globalData, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
245 inline FunctionCallValueNode::FunctionCallValueNode(JSGlobalData* globalData, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
253 inline FunctionCallResolveNode::FunctionCallResolveNode(JSGlobalData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
270 inline FunctionCallDotNode::FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset
    [all...]
Grammar.y 155 ArgumentsNodeInfo argumentsNode;
274 %type <argumentsNode> Arguments
468 '(' ')' { $$ = createNodeInfo<ArgumentsNode*>(new (GLOBAL_DATA) ArgumentsNode(GLOBAL_DATA), 0, 0); }
469 | '(' ArgumentList ')' { $$ = createNodeInfo<ArgumentsNode*>(new (GLOBAL_DATA) ArgumentsNode(GLOBAL_DATA, $2.m_node.head), $2.m_features, $2.m_numConstants); }
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 312 RegisterID* emitCall(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
313 RegisterID* emitCallEval(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
320 RegisterID* emitConstruct(RegisterID* dst, RegisterID* func, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
403 RegisterID* emitCall(OpcodeID, RegisterID* dst, RegisterID* func, RegisterID* thisRegister, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
BytecodeGenerator.cpp     [all...]
NodesCodegen.cpp 425 static bool areTrivialApplyArguments(ArgumentsNode* args)
    [all...]

Completed in 43 milliseconds