/external/webkit/Source/JavaScriptCore/parser/ |
D | ASTBuilder.h | 40 , divot(d) in BinaryOpInfo() 47 , divot(rhs.start) in BinaryOpInfo() 53 int divot; member 61 AssignmentInfo(ExpressionNode* node, int start, int divot, int initAssignments, Operator op) in AssignmentInfo() 64 , m_divot(divot) in AssignmentInfo() 114 …de* makeFunctionCallNode(ExpressionNode* func, ArgumentsNode* args, int start, int divot, int end); 127 …sionNode* 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 …]
|
D | NodeConstructors.h | 238 …lFunctionCallNode(JSGlobalData* globalData, ArgumentsNode* args, unsigned divot, unsigned startOff… in EvalFunctionCallNode() argument 240 , ThrowableExpressionData(divot, startOffset, endOffset) in EvalFunctionCallNode() 245 …obalData* globalData, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOff… in FunctionCallValueNode() argument 247 , ThrowableExpressionData(divot, startOffset, endOffset) in FunctionCallValueNode() 253 …lData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOff… in FunctionCallResolveNode() argument 255 , ThrowableExpressionData(divot, startOffset, endOffset) in FunctionCallResolveNode() 261 …ssionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOff… in FunctionCallBracketNode() argument 263 , ThrowableSubExpressionData(divot, startOffset, endOffset) in FunctionCallBracketNode() 270 …ressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOff… in FunctionCallDotNode() argument 272 , ThrowableSubExpressionData(divot, startOffset, endOffset) in FunctionCallDotNode() [all …]
|
D | Nodes.h | 256 ThrowableExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset) in ThrowableExpressionData() argument 257 : m_divot(divot) in ThrowableExpressionData() 263 void setExceptionSourceCode(unsigned divot, unsigned startOffset, unsigned endOffset) in setExceptionSourceCode() argument 265 m_divot = divot; in setExceptionSourceCode() 270 uint32_t divot() const { return m_divot; } in divot() function 291 ThrowableSubExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset) in ThrowableSubExpressionData() argument 292 : ThrowableExpressionData(divot, startOffset, endOffset) in ThrowableSubExpressionData() 300 ASSERT(subexpressionDivot <= divot()); in setSubexpressionInfo() 301 …if ((divot() - subexpressionDivot) & ~0xFFFF) // Overflow means we can't do this safely, so just p… in setSubexpressionInfo() 303 m_subexpressionDivotOffset = divot() - subexpressionDivot; in setSubexpressionInfo() [all …]
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | NodesCodegen.cpp | 81 generator.emitExpressionInfo(divot(), startOffset(), endOffset()); in emitThrowReferenceError() 270 generator.emitExpressionInfo(divot(), startOffset(), endOffset()); in emitBytecode() 276 generator.emitExpressionInfo(divot(), startOffset(), endOffset()); in emitBytecode() 290 generator.emitExpressionInfo(divot(), startOffset(), endOffset()); in emitBytecode() 296 generator.emitExpressionInfo(divot(), startOffset(), endOffset()); in emitBytecode() 314 …ruct(generator.finalDestinationOrIgnored(dst), func.get(), callArguments, divot(), startOffset(), … in emitBytecode() 338 generator.emitExpressionInfo(divot() - startOffset() + 4, 4, 0); in emitBytecode() 340 …l(generator.finalDestination(dst, func.get()), func.get(), callArguments, divot(), startOffset(), … in emitBytecode() 350 …or.finalDestinationOrIgnored(dst, func.get()), func.get(), callArguments, divot(), startOffset(), … in emitBytecode() 360 …OrIgnored(dst, callArguments.thisRegister()), local.get(), callArguments, divot(), startOffset(), … in emitBytecode() [all …]
|
D | BytecodeGenerator.h | 229 void emitExpressionInfo(unsigned divot, unsigned startOffset, unsigned endOffset) in emitExpressionInfo() argument 234 divot -= m_codeBlock->sourceOffset(); in emitExpressionInfo() 235 if (divot > ExpressionRangeInfo::MaxDivot) { in emitExpressionInfo() 237 divot = 0; in emitExpressionInfo() 255 info.divotPoint = divot; in emitExpressionInfo() 332 …RegisterID* emitCall(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned s… 333 …RegisterID* emitCallEval(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsign… 334 …egisterID* func, RegisterID* thisRegister, RegisterID* argCount, unsigned divot, unsigned startOff… 340 …RegisterID* emitConstruct(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsig… 427 …all(OpcodeID, RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned startOff…
|
D | BytecodeGenerator.cpp | 1609 …RegisterID* dst, RegisterID* func, CallArguments& callArguments, unsigned divot, unsigned startOff… in emitCall() argument 1611 return emitCall(op_call, dst, func, callArguments, divot, startOffset, endOffset); in emitCall() 1642 …RegisterID* dst, RegisterID* func, CallArguments& callArguments, unsigned divot, unsigned startOff… in emitCallEval() argument 1644 return emitCall(op_call_eval, dst, func, callArguments, divot, startOffset, endOffset); in emitCallEval() 1647 …RegisterID* dst, RegisterID* func, CallArguments& callArguments, unsigned divot, unsigned startOff… in emitCall() argument 1670 emitExpressionInfo(divot, startOffset, endOffset); in emitCall() 1704 …D* func, RegisterID* thisRegister, RegisterID* argCountRegister, unsigned divot, unsigned startOff… in emitCallVarargs() argument 1714 emitExpressionInfo(divot, startOffset, endOffset); in emitCallVarargs() 1763 …RegisterID* dst, RegisterID* func, CallArguments& callArguments, unsigned divot, unsigned startOff… in emitConstruct() argument 1787 emitExpressionInfo(divot, startOffset, endOffset); in emitConstruct()
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
D | CodeBlock.cpp | 1541 void CodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOff… in expressionRangeForBytecodeOffset() argument 1548 divot = 0; in expressionRangeForBytecodeOffset() 1568 divot = 0; in expressionRangeForBytecodeOffset() 1574 divot = expressionInfo[low - 1].divotPoint + m_sourceOffset; in expressionRangeForBytecodeOffset()
|
D | CodeBlock.h | 244 …void expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& …
|
/external/quake/quake/src/QW/scitech/include/ |
D | mgraph.h | 1365 void MGLAPI MGL_getDivotCoord(MGLDC *dc,m_int left,m_int top,m_int right,m_int bottom,void *divot); 1366 void MGLAPI MGL_putDivot(MGLDC *dc,void *divot); 1879 #define MGL_getDivot(dc,r,divot) MGL_getDivotCoord(dc,(r).left,(r).top, \ argument 1880 (r).right,(r).bottom,divot)
|
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
D | MGRAPH.H | 1365 void MGLAPI MGL_getDivotCoord(MGLDC *dc,m_int left,m_int top,m_int right,m_int bottom,void *divot); 1366 void MGLAPI MGL_putDivot(MGLDC *dc,void *divot); 1879 #define MGL_getDivot(dc,r,divot) MGL_getDivotCoord(dc,(r).left,(r).top, \ argument 1880 (r).right,(r).bottom,divot)
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2011-02-16 | 9589 Instead only hold info as necessary – keep divot info is the inspector 10250 …user scripts – only through an internal C++ interface. The code adding divot properties to objects… 10303 - Removed divot properties. 10306 - Removed divot properties. 22921 divot information to error had been duplicated, and is coalesced
|
D | ChangeLog-2008-08-10 | 1311 (KJS::ThrowableExpressionData::divot):
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog | 8448 divot information to error had been duplicated, and is coalesced
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 10177 Instead only hold info as necessary – keep divot info is the inspector
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 9315 Instead only hold info as necessary – keep divot info is the inspector 127462 divot information to error had been duplicated, and is coalesced
|