OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FunctionNode
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/angle/src/compiler/
DetectCallDepth.h
38
class
FunctionNode
{
42
FunctionNode
(const TString& fname);
47
void addCallee(
FunctionNode
* callee);
60
TVector<
FunctionNode
*> callees;
65
ErrorCode detectCallDepthForFunction(
FunctionNode
* func);
66
FunctionNode
* findFunctionByName(const TString& name);
71
TVector<
FunctionNode
*> functions;
72
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/
RequiredThisAnnotationCheck.java
6
import com.google.javascript.rhino.head.ast.
FunctionNode
;
47
FunctionNode
functionNode
= (
FunctionNode
) functionStack.remove();
48
if (thisReferencingFunctions.contains(
functionNode
) && !functionStack.isEmpty()) {
50
String jsDoc = getJsDoc(
functionNode
);
51
AstNode functionNameNode = getFunctionNameNode(
functionNode
);
58
thisReferencingFunctions.remove(
functionNode
);
65
private AstNode getFunctionNameNode(
FunctionNode
functionNode
) {
[
all
...]
Completed in 35 milliseconds