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

  /external/webkit/Source/JavaScriptCore/parser/
NodeInfo.h 37 typedef NodeInfo<ArgumentsNode*> ArgumentsNodeInfo;
Nodes.h 497 class ArgumentsNode : public ParserArenaFreeable {
499 ArgumentsNode(JSGlobalData*);
500 ArgumentsNode(JSGlobalData*, ArgumentListNode*);
508 NewExprNode(JSGlobalData*, ExpressionNode*, ArgumentsNode*);
514 ArgumentsNode* m_args;
519 EvalFunctionCallNode(JSGlobalData*, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
524 ArgumentsNode* m_args;
529 FunctionCallValueNode(JSGlobalData*, ExpressionNode*, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
535 ArgumentsNode* m_args;
540 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...]
ASTBuilder.h 95 typedef ArgumentsNode* Arguments;
114 ExpressionNode* makeFunctionCallNode(ExpressionNode* func, ArgumentsNode* args, int start, int divot, int end);
229 ExpressionNode* createNewExpr(ExpressionNode* expr, ArgumentsNode* arguments, int start, int divot, int end)
276 ArgumentsNode* createArguments() { return new (m_globalData) ArgumentsNode(m_globalData); }
277 ArgumentsNode* createArguments(ArgumentListNode* args) { return new (m_globalData) ArgumentsNode(m_globalData, args); }
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 54 CallArguments(BytecodeGenerator& generator, ArgumentsNode* argumentsNode);
61 ArgumentsNode* argumentsNode() { return m_argumentsNode; }
65 ArgumentsNode* m_argumentsNode;
NodesCodegen.cpp 317 CallArguments::CallArguments(BytecodeGenerator& generator, ArgumentsNode* argumentsNode)
318 : m_argumentsNode(argumentsNode)
323 if (argumentsNode) {
324 for (ArgumentListNode* n = argumentsNode->m_listNode; n; n = n->m_next) {
448 static bool areTrivialApplyArguments(ArgumentsNode* args)
    [all...]
BytecodeGenerator.cpp     [all...]

Completed in 68 milliseconds