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

1 2 34 5 6 7

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseAuthorizer.cpp 375 int DatabaseAuthorizer::allowFunction(const String& functionName)
377 if (m_securityEnabled && !m_whitelistedFunctions.contains(functionName))
  /external/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 476 char functionName[512];
478 if ((unw_get_proc_name(&cursor1, functionName, 512, &offset) !=
480 strcpy(functionName, ".anonymous.");
487 functionName, (long long)frameInfo.lsda,
603 char functionName[512];
605 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !=
607 strcpy(functionName, ".anonymous.");
611 exception_object, (long long)frameInfo.start_ip, functionName,
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 292 char *functionName,
296 "functionName='%s')", (unsigned long) imvID, functionName);
304 if (os_strcmp(functionName, "TNC_TNCS_ReportMessageTypes") == 0)
306 else if (os_strcmp(functionName, "TNC_TNCS_SendMessage") == 0)
308 else if (os_strcmp(functionName, "TNC_TNCS_RequestHandshakeRetry") ==
311 else if (os_strcmp(functionName, "TNC_TNCS_ProvideRecommendation") ==
314 else if (os_strcmp(functionName, "TNC_TNCS_GetAttribute") == 0)
316 else if (os_strcmp(functionName, "TNC_TNCS_SetAttribute") == 0)
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-EHABI.cpp 443 char functionName[512];
445 if ((unw_get_proc_name(&cursor1, functionName, 512, &offset) !=
447 strcpy(functionName, ".anonymous.");
454 functionName, (long long)frameInfo.lsda,
570 char functionName[512];
572 if ((unw_get_proc_name(&cursor2, functionName, 512, &offset) !=
574 strcpy(functionName, ".anonymous.");
578 exception_object, (long long)frameInfo.start_ip, functionName,
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 228 char *functionName,
232 "functionName='%s')", (unsigned long) imcID, functionName);
240 if (os_strcmp(functionName, "TNC_TNCC_ReportMessageTypes") == 0)
242 else if (os_strcmp(functionName, "TNC_TNCC_SendMessage") == 0)
244 else if (os_strcmp(functionName, "TNC_TNCC_RequestHandshakeRetry") ==
247 else if (os_strcmp(functionName, "TNC_9048_LogMessage") == 0)
249 else if (os_strcmp(functionName, "TNC_9048_UserMessage") == 0)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CPUProfileFlameChart.js 235 var name = WebInspector.CPUProfileDataModel.beautifyFunctionName(node.functionName);
267 return WebInspector.CPUProfileDataModel.beautifyFunctionName(node.functionName);
292 return this._colorGenerator.colorForID(node.functionName + ":" + node.url);
  /external/chromium_org/extensions/renderer/resources/
send_request.js 123 function sendRequest(functionName, args, argSchemas, optArgs) {
140 return nativeFunction(functionName,
messaging.js 354 function sendMessageUpdateArguments(functionName, hasOptionsArgument) {
355 // skip functionName and hasOptionsArgument
360 throw new Error('Invalid arguments to ' + functionName + '.');
  /external/chromium_org/v8/src/
macros.py 149 # Will throw a TypeError of the form "[functionName] called on null or undefined".
150 macro CHECK_OBJECT_COERCIBLE(arg, functionName) = if (IS_NULL_OR_UNDEFINED(arg) && !IS_UNDETECTABLE(arg)) throw MakeTypeError('called_on_null_or_undefined', [functionName]);
messages.js     [all...]
  /external/srec/srec/Grammar/include/
SR_Grammar.h 60 * @param functionName Name of function that was invoked
68 typedef ESR_ReturnCode(*SR_GrammarDispatchFunction)(LCHAR* functionName, LCHAR** argv, size_t argc, void* value, LCHAR* result, size_t* resultSize);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
PageScriptDebugServer.cpp 303 String PageScriptDebugServer::preprocessEventListener(LocalFrame* frame, const String& source, const String& url, const String& functionName)
308 return m_scriptPreprocessor->preprocessSourceCode(source, url, functionName);
ScriptDebugServer.cpp 69 v8::Local<v8::Value> ScriptDebugServer::callDebuggerMethod(const char* functionName, int argc, v8::Handle<v8::Value> argv[])
72 v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(debuggerScript->Get(v8AtomicString(m_isolate, functionName)));
481 static v8::Handle<v8::Value> callInternalGetterFunction(v8::Handle<v8::Object> object, const char* functionName, v8::Isolate* isolate)
483 v8::Handle<v8::Value> getterValue = object->Get(v8AtomicString(isolate, functionName));
720 String ScriptDebugServer::preprocessEventListener(LocalFrame*, const String& source, const String& url, const String& functionName)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CPUProfileDataModel.js 129 if (node.functionName === "(garbage collector)")
131 else if (node.functionName === "(program)")
133 else if (node.functionName === "(idle)")
ConsoleModel.js 374 stackTrace1[i].functionName !== stackTrace2[i].functionName ||
DebuggerModel.js 67 /** @typedef {{location: ?WebInspector.DebuggerModel.Location, sourceURL: ?string, functionName: string, scopeChain: (Array.<!DebuggerAgent.Scope>|null)}} */
697 callback({location: rawLocation, sourceURL: sourceURL, functionName: response.functionName, scopeChain: response.scopeChain || null});
    [all...]
  /art/runtime/
check_jni.cc 152 explicit ScopedCheck(JNIEnv* env, int flags, const char* functionName)
155 Init(flags, functionName, true);
161 explicit ScopedCheck(JavaVM* vm, bool has_method, const char* functionName)
164 Init(kFlag_Invocation, functionName, has_method);
668 void Init(int flags, const char* functionName, bool has_method) {
670 function_name_ = functionName;
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_error_overlay.js 9 * functionName: string,
224 if (frame.functionName) {
225 var functionName = frame.functionName == '(anonymous function)' ?
227 frame.functionName;
228 description += ' (' + functionName + ')';
  /external/deqp/modules/gles3/functional/
es3fInstancedRenderingTests.cpp 628 const char* functionName = function == (int)InstancedRenderingCase::FUNCTION_DRAW_ARRAYS_INSTANCED ? "draw_arrays_instanced"
636 DE_ASSERT(functionName != DE_NULL);
639 TestCaseGroup* functionGroup = new TestCaseGroup(m_context, functionName, functionDesc);
es3fPrimitiveRestartTests.cpp 688 const char* functionName = function == (int)PrimitiveRestartCase::FUNCTION_DRAW_ELEMENTS ? "draw_elements"
693 DE_ASSERT(functionName != DE_NULL);
696 functionName,
  /external/chromium_org/chrome/browser/resources/google_now/
utility.js 350 * @param {string} functionName Name of the chrome API function.
357 functionName,
366 functionIdentifierParts.join('.') + '.' + functionName +
370 callback, functionName == 'addListener');
376 return chromeContainer[functionName].
391 var functionName = functionIdentifierParts.pop();
407 var targetFunction = chromeContainer[functionName];
413 instrumentedContainer[functionName] = createInstrumentedFunction(
415 functionName,
    [all...]
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
connection_handler.js 53 findExecutionTarget_: function(functionName) {
54 var funcSegments = functionName.split('.');
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
Scheduler.cpp 38 "src_func", m_location.functionName());
  /external/chromium_org/third_party/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
Callstacker.cpp 419 const char* functionName() {
624 emit("LS_TRACE(\"%s\", %i, %i);", state.functionName(), fileId, state.lineNumber()); // light symbol traces, create a macro to define it
  /external/skia/experimental/LightSymbolsUtil/Callstacker/Callstacker/
Callstacker.cpp 419 const char* functionName() {
624 emit("LS_TRACE(\"%s\", %i, %i);", state.functionName(), fileId, state.lineNumber()); // light symbol traces, create a macro to define it

Completed in 1398 milliseconds

1 2 34 5 6 7