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

  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.h 36 class FunctionNode {
40 FunctionNode(const TString& fname);
45 void addCallee(FunctionNode* callee);
58 TVector<FunctionNode*> callees;
63 ErrorCode detectCallDepthForFunction(FunctionNode* func);
64 FunctionNode* findFunctionByName(const TString& name);
69 TVector<FunctionNode*> functions;
70 FunctionNode* currentFunction;
DetectCallDepth.cpp 10 DetectCallDepth::FunctionNode::FunctionNode(const TString& fname)
16 const TString& DetectCallDepth::FunctionNode::getName() const
21 void DetectCallDepth::FunctionNode::addCallee(
22 DetectCallDepth::FunctionNode* callee)
31 int DetectCallDepth::FunctionNode::detectCallDepth(DetectCallDepth* detectCallDepth, int depth)
67 void DetectCallDepth::FunctionNode::reset()
76 maxDepth(limitCallStackDepth ? maxCallStackDepth : FunctionNode::kInfiniteCallDepth)
92 // Don't add FunctionNode here because node->getName() is the
100 currentFunction = new FunctionNode(node->getName())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
FunctionRecord.java 4 import com.google.javascript.rhino.head.ast.FunctionNode;
7 final FunctionNode functionNode;
15 public FunctionRecord(FunctionNode functionNode, Comment jsDocNode, String name,
18 this.functionNode = functionNode;
AstUtil.java 7 import com.google.javascript.rhino.head.ast.FunctionNode;
20 static AstNode getFunctionNameNode(FunctionNode functionNode) {
21 AstNode nameNode = functionNode.getFunctionName();
26 AstNode parentNode = functionNode.getParent();
33 if (assignment.getRight() == functionNode &&
67 return getJsDocNode((FunctionNode) node);
73 static Comment getJsDocNode(FunctionNode functionNode) {
74 Comment jsDocNode = functionNode.getJsDocNode()
    [all...]
ContextTrackingChecker.java 5 import com.google.javascript.rhino.head.ast.FunctionNode;
ContextTrackingValidationCheck.java 7 import com.google.javascript.rhino.head.ast.FunctionNode;
44 enterFunctionNode((FunctionNode) node);
62 leaveFunctionNode((FunctionNode) node);
86 private void enterFunctionNode(FunctionNode node) {
109 private void leaveFunctionNode(FunctionNode node) {
191 return AstUtil.getJsDocNode((FunctionNode) node);
MethodAnnotationChecker.java 7 import com.google.javascript.rhino.head.ast.FunctionNode;
32 handleFunction((FunctionNode) node);
45 private void handleFunction(FunctionNode node) {
95 AstNode nameNode = getFunctionNameNode(record.functionNode);
107 AstNode nameNode = getFunctionNameNode(record.functionNode);
128 String functionName = getFunctionName(function.functionNode);
136 Comment jsDocNode = AstUtil.getJsDocNode(function.functionNode);
152 AstNode functionNameNode = getFunctionNameNode(function.functionNode);
180 private String getFunctionName(FunctionNode functionNode) {
    [all...]
ReturnAnnotationChecker.java 6 import com.google.javascript.rhino.head.ast.FunctionNode;
41 AstNode nameNode = getFunctionNameNode(record.functionNode);
53 AstNode nameNode = getFunctionNameNode(record.functionNode);
74 String functionName = getFunctionName(function.functionNode);
82 Comment jsDocNode = AstUtil.getJsDocNode(function.functionNode);
97 AstNode functionNameNode = getFunctionNameNode(function.functionNode);
125 private String getFunctionName(FunctionNode functionNode) {
126 AstNode nameNode = getFunctionNameNode(functionNode);
134 private static AstNode getFunctionNameNode(FunctionNode functionNode)
    [all...]
FunctionReceiverChecker.java 6 import com.google.javascript.rhino.head.ast.FunctionNode;
42 handleFunction((FunctionNode) node);
83 private void handleFunction(FunctionNode node) {
192 AstNode functionNameNode = AstUtil.getFunctionNameNode(function.functionNode);
200 errorTargetNode = function.functionNode;

Completed in 211 milliseconds