Searched refs:functionName (Results 1 - 25 of 132) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/platform/
H A DTraceLocation.h18 TraceLocation(const char* functionName, const char* fileName) argument
19 : m_functionName(functionName)
28 const char* functionName() const { return m_functionName; } function in class:blink::TraceLocation
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebTraceLocation.h14 WebTraceLocation(const char* functionName, const char* fileName) argument
15 : m_functionName(functionName)
19 const char* functionName() const { return m_functionName; } function in class:blink::WebTraceLocation
/external/chromium_org/extensions/renderer/resources/
H A Dstorage_area.js24 function bindApiFunction(functionName) {
25 self[functionName] = function() {
26 var funSchema = this.functionSchemas[functionName];
30 'storage.' + functionName,
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dkeyboard_handler.js87 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/chrome/renderer/resources/extensions/
H A Ddeveloper_private_custom_bindings.js12 // Converts the argument of |functionName| from DirectoryEntry to URL.
13 function bindFileSystemFunction(functionName) {
15 functionName, function(directoryEntry, callback) {
H A Dlog_private_custom_bindings.js19 function(functionName) {
20 bindFileEntryCallback(functionName, apiFunctions);
H A Dfile_entry_binding_util.js29 var bindFileEntryCallback = function(functionName, apiFunctions) {
30 apiFunctions.setCustomCallback(functionName,
43 apiName + '.' + functionName,
74 apiName + '.' + functionName, request, callback,
78 apiName + '.' + functionName, request, callback,
95 lastError.run(apiName + '.' + functionName,
H A Dsync_file_system_custom_bindings.js17 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) {
H A Dfile_system_custom_bindings.js20 function bindFileEntryFunction(functionName) {
22 functionName, function(fileEntry, callback) {
32 function(functionName) {
33 bindFileEntryCallback(functionName, apiFunctions);
/external/chromium_org/v8/test/webkit/
H A Darray-enumerators-functions.js84 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
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dmemoize.js103 * @param {string} functionName The name of the function you're calling.
112 cvox.Memoize.memoize = function(functionClosure, functionName, node) {
114 cvox.Memoize.nodeMap_[functionName] === undefined) {
115 cvox.Memoize.nodeMap_[functionName] = new WeakMap();
123 var result = cvox.Memoize.nodeMap_[functionName].get(node);
129 cvox.Memoize.nodeMap_[functionName].set(node, result);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallFrame.cpp45 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column) argument
46 : m_functionName(functionName)
H A DScriptCallFrame.h43 ScriptCallFrame(const String& functionName, const String& scriptId, const String& scriptName, unsigned lineNumber, unsigned column = 0);
46 const String& functionName() const { return m_functionName; } function in class:blink::ScriptCallFrame
H A DInspectorInstrumentationCustomInl.h41 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) argument
68 return preprocessEventListenerImpl(instrumentingAgents, frame, source, url, functionName);
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DTracedTask.cpp18 "src_func", m_location.functionName());
37 "src_func", m_location.functionName());
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunctionExecutor.java31 Value executeFunction(String functionName, Value... args); argument
/external/chromium_org/tools/cygprofile/
H A Dpatch_orderfile.py68 functionName = line.replace('.text.', '').split('.clone.')[0].strip() variable
69 profiled_list.append (functionName)
79 functionName = line.split()[3] variable
81 functionName = line.split()[2] variable
82 functionName = functionName.split('.clone.')[0] variable
85 functionAddressMap[functionName].append(functionAddress)
87 functionAddressMap[functionName] = [functionAddress]
88 functions.append(functionName)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPreprocessor.h49 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);
H A DV8LazyEventListener.h51 static PassRefPtr<V8LazyEventListener> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) argument
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*);
/external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.h3 #define LS_TRACE(functionName,fileId,lineNumber) LightSymbol __lstr(functionName,fileId,lineNumber);
/external/qemu/android/utils/
H A Dassert.c33 const char* functionName )
39 loc->function = functionName;
/external/skia/experimental/LightSymbolsUtil/lightsymbols/
H A Dlightsymbols.h3 #define LS_TRACE(functionName,fileId,lineNumber) LightSymbol __lstr(functionName,fileId,lineNumber);
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp96 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/
H A DWebSchedulerProxy.cpp42 TraceLocation location(webLocation.functionName(), webLocation.fileName());
48 TraceLocation location(webLocation.functionName(), webLocation.fileName());
54 TraceLocation location(webLocation.functionName(), webLocation.fileName());
/external/libcxxabi/src/Unwind/
H A DUnwindLevel1.c62 char functionName[512]; local
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]; local
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]; local
247 if ((unw_get_proc_name(&cursor2, functionName, 51
[all...]

Completed in 1269 milliseconds

123456