HomeSort by relevance Sort by last modified time
    Searched refs:functionName (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/public/platform/
WebTraceLocation.h 14 WebTraceLocation(const char* functionName, const char* fileName)
15 : m_functionName(functionName)
19 const char* functionName() const { return m_functionName; }
  /external/chromium_org/third_party/WebKit/Source/platform/
TraceLocation.h 18 TraceLocation(const char* functionName, const char* fileName)
19 : m_functionName(functionName)
28 const char* functionName() const { return m_functionName; }
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallFrame.h 43 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
46 const String& functionName() const { return m_functionName; }
ScriptCallFrame.cpp 45 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column)
46 : m_functionName(functionName)
InspectorInstrumentationCustomInl.h 41 String preprocessEventListenerImpl(InstrumentingAgents*, LocalFrame*, const String& source, const String& url, const String& functionName);
64 inline String preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName)
68 return preprocessEventListenerImpl(instrumentingAgents, frame, source, url, functionName);
InjectedScriptCanvasModule.cpp 76 ScriptValue InjectedScriptCanvasModule::callWrapContextFunction(const String& functionName, const ScriptValue& context)
78 ScriptFunctionCall function(injectedScriptObject(), functionName);
107 void InjectedScriptCanvasModule::callStartCapturingFunction(const String& functionName, ErrorString* errorString, TraceLogId* traceLogId)
109 ScriptFunctionCall function(injectedScriptObject(), functionName);
113 *errorString = "Internal error: " + functionName;
126 void InjectedScriptCanvasModule::callVoidFunctionWithTraceLogIdArgument(const String& functionName, ErrorString* errorString, const TraceLogId& traceLogId)
128 ScriptFunctionCall function(injectedScriptObject(), functionName);
134 *errorString = "Internal error: " + functionName;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPreprocessor.h 49 String preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName);
54 String preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName);
V8LazyEventListener.h 51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate)
53 return adoptRef(new V8LazyEventListener(functionName, eventParameterName, code, sourceURL, position, node, isolate));
66 V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*, v8::Isolate*);
ScriptPreprocessor.cpp 83 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName)
88 v8::Handle<v8::String> functionNameString = v8String(m_scriptState->isolate(), functionName);
92 String ScriptPreprocessor::preprocessSourceCode(const String& sourceCode, const String& sourceName, v8::Handle<v8::Value> functionName)
102 v8::Handle<v8::Value> argv[] = { sourceCodeString, sourceNameString, functionName};
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
TracedTask.cpp 18 "src_func", m_location.functionName());
37 "src_func", m_location.functionName());
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
FunctionExecutor.java 31 Value executeFunction(String functionName, Value... args);
  /external/chromium_org/tools/cygprofile/
patch_orderfile.py 68 functionName = line.replace('.text.', '').split('.clone.')[0].strip()
69 profiled_list.append (functionName)
79 functionName = line.split()[3]
81 functionName = line.split()[2]
82 functionName = functionName.split('.clone.')[0]
85 functionAddressMap[functionName].append(functionAddress)
87 functionAddressMap[functionName] = [functionAddress]
88 functions.append(functionName)
  /external/chromium_org/chrome/renderer/resources/extensions/
developer_private_custom_bindings.js 12 // Converts the argument of |functionName| from DirectoryEntry to URL.
13 function bindFileSystemFunction(functionName) {
15 functionName, function(directoryEntry, callback) {
log_private_custom_bindings.js 19 function(functionName) {
20 bindFileEntryCallback(functionName, apiFunctions);
sync_file_system_custom_bindings.js 17 function bindFileEntryFunction(functionName) {
19 functionName, function(entry, callback) {
27 function bindFileEntryArrayFunction(functionName) {
29 functionName, function(entries, callback) {
40 function bindFileSystemFunction(functionName) {
42 functionName, function(filesystem, callback) {
  /external/chromium_org/extensions/renderer/resources/
storage_area.js 24 function bindApiFunction(functionName) {
25 self[functionName] = function() {
26 var funSchema = this.functionSchemas[functionName];
30 'storage.' + functionName,
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
lightsymbols.h 3 #define LS_TRACE(functionName,fileId,lineNumber) LightSymbol __lstr(functionName,fileId,lineNumber);
  /external/clang/lib/Analysis/
CocoaConventions.cpp 96 StringRef functionName = ident->getName();
98 StringRef::iterator it = functionName.begin();
100 StringRef::iterator endI = functionName.end();
123 StringRef suffix = functionName.substr(it - start);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSchedulerProxy.cpp 42 TraceLocation location(webLocation.functionName(), webLocation.fileName());
48 TraceLocation location(webLocation.functionName(), webLocation.fileName());
54 TraceLocation location(webLocation.functionName(), webLocation.fileName());
  /external/chromium_org/v8/test/webkit/
array-enumerators-functions.js 84 var functionName = functions[f];
86 if (arrays[a] === "largeEmptyArray" && functionName === "map")
88 if (currentFunc === returnIndex && functionName === "reduceRight")
90 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)",
91 "count=0;lastIndex=-1;Array.prototype."+functionName+".call(toObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0)");
100 var functionName = functions[f];
102 if (arrays[a] === "largeEmptyArray" && functionName === "map")
104 if (currentFunc === returnIndex && functionName === "reduceRight")
106 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)",
107 "count=0;lastIndex=-1;Array.prototype."+functionName+".call(toUnorderedObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0)")
    [all...]
  /external/libcxxabi/src/Unwind/
UnwindLevel1.c 62 char functionName[512];
64 if ((unw_get_proc_name(&cursor1, functionName, 512, &offset) !=
66 strcpy(functionName, ".anonymous.");
72 exception_object, pc, frameInfo.start_ip, functionName,
157 char functionName[512];
159 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !=
161 strcpy(functionName, ".anonymous.");
165 exception_object, frameInfo.start_ip, functionName, sp,
245 char functionName[512];
247 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !
    [all...]
  /cts/suite/audio_quality/test/
SignalProcessingInterfaceTest.cpp 47 android::String8 functionName("echo");
81 ASSERT_TRUE(mSp->run( functionName,
91 android::String8 functionName("intsum");
104 ASSERT_TRUE(mSp->run( functionName,
116 android::String8 functionName("intsum");
129 ASSERT_TRUE(mSp->run( functionName,
134 ASSERT_TRUE(sp2->run( functionName,
143 android::String8 functionName("example");
189 ASSERT_TRUE(mSp->run( functionName,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
keyboard_handler.js 87 var functionName;
89 functionName =
92 functionName = null;
99 if (!functionName) {
105 if (!cvox.ChromeVox.isActive && functionName != 'toggleChromeVox') {
114 var func = cvox.ChromeVoxUserCommands.commands[functionName];
117 history.enterUserCommand(functionName);
119 history.exitUserCommand(functionName);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotCommon.js 55 * @param {string} functionName
67 WebInspector.HeapSnapshotCommon.SerializedAllocationNode = function(nodeId, functionName, scriptName, scriptId, line, column, count, size, liveCount, liveSize, hasChildren)
72 this.name = functionName;
94 * @param {string} functionName
101 WebInspector.HeapSnapshotCommon.AllocationStackFrame = function(functionName, scriptName, scriptId, line, column)
104 this.functionName = functionName;

Completed in 657 milliseconds

1 2 3 4 5