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

1 2 3 4 5 6 7

  /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; }
  /frameworks/native/opengl/tools/glgen/src/
ParameterChecker.java 45 public String[] getChecks(String functionName) {
46 String[] checks = map.get(functionName);
48 (functionName.endsWith("fv") ||
49 functionName.endsWith("xv") ||
50 functionName.endsWith("iv"))) {
51 functionName = functionName.substring(0, functionName.length() - 2);
52 checks = map.get(functionName);
  /libcore/luni/src/main/java/android/system/
ErrnoException.java 29 private final String functionName;
39 public ErrnoException(String functionName, int errno) {
40 this.functionName = functionName;
47 public ErrnoException(String functionName, int errno, Throwable cause) {
49 this.functionName = functionName;
64 return functionName + " failed: " + errnoName + " (" + description + ")";
GaiException.java 30 private final String functionName;
40 public GaiException(String functionName, int error) {
41 this.functionName = functionName;
48 public GaiException(String functionName, int error, Throwable cause) {
50 this.functionName = functionName;
65 return functionName + " failed: " + gaiName + " (" + description + ")";
  /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; }
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFunctionResolver.java 50 * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
52 * @param functionName The function name.
55 * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
57 * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
59 public XPathFunction resolveFunction(QName functionName, int arity);
  /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);
  /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*);
  /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/qemu/android/utils/
assert.c 33 const char* functionName )
39 loc->function = functionName;
  /external/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());
  /libnativehelper/include/nativehelper/
JniConstants.h 97 #define NATIVE_METHOD(className, functionName, signature) \
98 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /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...]

Completed in 1232 milliseconds

1 2 3 4 5 6 7