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

  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 40 , divot(d)
47 , divot(rhs.start)
53 int divot; member in struct:JSC::ASTBuilder::BinaryOpInfo
61 AssignmentInfo(ExpressionNode* node, int start, int divot, int initAssignments, Operator op)
64 , m_divot(divot)
114 ExpressionNode* makeFunctionCallNode(ExpressionNode* func, ArgumentsNode* args, int start, int divot, int end);
127 ExpressionNode* makeAssignNode(ExpressionNode* left, Operator, ExpressionNode* right, bool leftHasAssignments, bool rightHasAssignments, int start, int divot, int end);
128 ExpressionNode* makePrefixNode(ExpressionNode*, Operator, int start, int divot, int end);
129 ExpressionNode* makePostfixNode(ExpressionNode*, Operator, int start, int divot, int end);
131 ExpressionNode* makeDeleteNode(ExpressionNode*, int start, int divot, int end)
    [all...]
NodeConstructors.h 238 inline EvalFunctionCallNode::EvalFunctionCallNode(JSGlobalData* globalData, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
240 , ThrowableExpressionData(divot, startOffset, endOffset)
245 inline FunctionCallValueNode::FunctionCallValueNode(JSGlobalData* globalData, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
247 , ThrowableExpressionData(divot, startOffset, endOffset)
253 inline FunctionCallResolveNode::FunctionCallResolveNode(JSGlobalData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
255 , ThrowableExpressionData(divot, startOffset, endOffset)
261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
263 , ThrowableSubExpressionData(divot, startOffset, endOffset)
270 inline FunctionCallDotNode::FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
272 , ThrowableSubExpressionData(divot, startOffset, endOffset
    [all...]
Nodes.h 256 ThrowableExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
257 : m_divot(divot)
263 void setExceptionSourceCode(unsigned divot, unsigned startOffset, unsigned endOffset)
265 m_divot = divot;
270 uint32_t divot() const { return m_divot; } function in class:JSC::ThrowableExpressionData
291 ThrowableSubExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
292 : ThrowableExpressionData(divot, startOffset, endOffset)
300 ASSERT(subexpressionDivot <= divot());
301 if ((divot() - subexpressionDivot) & ~0xFFFF) // Overflow means we can't do this safely, so just point at the primary divot
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 229 void emitExpressionInfo(unsigned divot, unsigned startOffset, unsigned endOffset)
234 divot -= m_codeBlock->sourceOffset();
235 if (divot > ExpressionRangeInfo::MaxDivot) {
237 divot = 0;
242 // so we only get the divot marker. Error message will have to be reduced
255 info.divotPoint = divot;
332 RegisterID* emitCall(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned startOffset, unsigned endOffset);
333 RegisterID* emitCallEval(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned startOffset, unsigned endOffset);
334 RegisterID* emitCallVarargs(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, RegisterID* argCount, unsigned divot, unsigned startOffset, unsigned endOffset);
340 RegisterID* emitConstruct(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned startOffset, unsigned endOffset)
    [all...]
NodesCodegen.cpp 81 generator.emitExpressionInfo(divot(), startOffset(), endOffset());
270 generator.emitExpressionInfo(divot(), startOffset(), endOffset());
276 generator.emitExpressionInfo(divot(), startOffset(), endOffset());
290 generator.emitExpressionInfo(divot(), startOffset(), endOffset());
296 generator.emitExpressionInfo(divot(), startOffset(), endOffset());
314 return generator.emitConstruct(generator.finalDestinationOrIgnored(dst), func.get(), callArguments, divot(), startOffset(), endOffset());
338 generator.emitExpressionInfo(divot() - startOffset() + 4, 4, 0);
340 return generator.emitCallEval(generator.finalDestination(dst, func.get()), func.get(), callArguments, divot(), startOffset(), endOffset());
350 return generator.emitCall(generator.finalDestinationOrIgnored(dst, func.get()), func.get(), callArguments, divot(), startOffset(), endOffset());
360 return generator.emitCall(generator.finalDestinationOrIgnored(dst, callArguments.thisRegister()), local.get(), callArguments, divot(), startOffset(), endOffset())
    [all...]
BytecodeGenerator.cpp     [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h     [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H     [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp     [all...]
CodeBlock.h 244 void expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset);

Completed in 836 milliseconds