Home
last modified time | relevance | path

Searched refs:FunctionCall (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DTimelineAgent.js61 FunctionCall: "FunctionCall", property
DTimelinePanel.js190 …recordStyles[recordTypes.FunctionCall] = { title: WebInspector.UIString("Function Call"), category…
353 if (childRecord.type === recordTypes.FunctionCall) {
972 case recordTypes.FunctionCall:
/external/webkit/Source/WebCore/inspector/
DInspectorTimelineAgent.cpp79 static const char FunctionCall[] = "FunctionCall"; variable
160 …neRecordFactory::createFunctionCallData(scriptName, scriptLine), TimelineRecordType::FunctionCall); in willCallFunction()
165 didCompleteCurrentRecord(TimelineRecordType::FunctionCall); in didCallFunction()
/external/webkit/Source/WebCore/xml/
DXPathGrammar.y104 %type <expr> FunctionCall
365 FunctionCall
368 FunctionCall:
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h474 class FunctionCall : public SimpleCall {
478 FunctionCall(const CallExpr *CE, ProgramStateRef St, in FunctionCall() function
482 FunctionCall(const FunctionCall &Other) : SimpleCall(Other) {} in FunctionCall() function
483 virtual void cloneTo(void *Dest) const { new (Dest) FunctionCall(*this); } in cloneTo()
939 return Alloc.Allocate<FunctionCall>(); in allocate()
/external/chromium/base/
Dstringize_macros_unittest.cc13 #define PREPROCESSOR_UTIL_UNITTEST_B(x) myobj->FunctionCall(x)
/external/clang/unittests/Tooling/
DRefactoringTest.cpp291 TEST(Replacement, FunctionCall) { in TEST() argument
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DXPathParser.java1446 matchFound = FunctionCall(); in PrimaryExpr()
1483 protected boolean FunctionCall() throws javax.xml.transform.TransformerException in FunctionCall() method in XPathParser
2233 FunctionCall(); in IdKeyPattern()
/external/v8/src/
Dbuiltins.h175 V(FunctionCall, BUILTIN, UNINITIALIZED, \
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp921 return create<FunctionCall>(CE, State, LCtx); in getSimpleCall()
/external/clang/lib/StaticAnalyzer/Checkers/
DMallocChecker.cpp1404 if (!(isa<FunctionCall>(Call) || isa<ObjCMethodCall>(Call))) in doesNotFreeMemOrInteresting()
1450 const FunctionDecl *FD = cast<FunctionCall>(Call)->getDecl(); in doesNotFreeMemOrInteresting()
DRetainCountChecker.cpp935 if (const FunctionCall *FC = dyn_cast<FunctionCall>(&Call)) { in updateSummaryForCall()
983 Summ = getFunctionSummary(cast<FunctionCall>(Call).getDecl()); in getSummary()
/external/v8/test/cctest/
Dtest-api.cc2565 THREADED_TEST(FunctionCall) { in THREADED_TEST() argument
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1625145 Refactor InspectorResource to use ScriptObject/FunctionCall.
25182 * inspector/InspectorResource.cpp: Refactored to use ScriptObject/FunctionCall.