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

  /external/chromium_org/third_party/angle/src/compiler/translator/
DetectCallDepth.cpp 74 currentFunction(NULL),
98 currentFunction = findFunctionByName(node->getName());
99 if (currentFunction == NULL) {
100 currentFunction = new FunctionNode(node->getName());
101 functions.push_back(currentFunction);
104 currentFunction = NULL;
116 if (currentFunction)
117 currentFunction->addCallee(func);
141 currentFunction = NULL;
DetectCallDepth.h 70 FunctionNode* currentFunction;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
ScriptFormatterWorker.js 127 var currentFunction = null;
157 currentFunction = { line: i, column: column, name: tokenValue };
166 currentFunction = { line: i, column: column, name: previousIdentifier };
181 currentFunction.arguments = argumentsText.replace(/,[\r\n\s]*/g, ", ").replace(/([^,])[\r\n\s]+/g, "$1");
183 outlineChunk.push(currentFunction);

Completed in 176 milliseconds