HomeSort by relevance Sort by last modified time
    Searched refs:function_name (Results 26 - 50 of 66) sorted by null

12 3

  /external/valgrind/main/VEX/priv/
guest_s390_defs.h 58 IRExpr* guest_s390x_spechelper ( HChar *function_name,
guest_x86_defs.h 64 IRExpr* guest_x86_spechelper ( HChar* function_name,
guest_arm_helpers.c 553 IRExpr* guest_arm_spechelper ( HChar* function_name,
568 vex_printf(" %s ", function_name);
578 if (vex_streq(function_name, "armg_calculate_condition")) {
745 if (vex_streq(function_name, "armg_calculate_flag_c")) {
795 if (vex_streq(function_name, "armg_calculate_flag_v")) {
    [all...]
guest_amd64_defs.h 64 IRExpr* guest_amd64_spechelper ( HChar* function_name,
guest_s390_helpers.c 703 guest_s390x_spechelper(HChar *function_name, IRExpr **args,
713 vex_printf(" %s ", function_name);
723 if (vex_streq(function_name, "s390_calculate_cond")) {
    [all...]
guest_ppc_helpers.c 190 IRExpr* guest_ppc32_spechelper ( HChar* function_name,
198 IRExpr* guest_ppc64_spechelper ( HChar* function_name,
guest_x86_helpers.c 775 IRExpr* guest_x86_spechelper ( HChar* function_name,
790 vex_printf(" %s ", function_name);
800 if (vex_streq(function_name, "x86g_calculate_condition")) {
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
rebaselineserver.py 103 function_name = function_or_file_name.replace(".", "_")
104 if not hasattr(self, function_name):
105 self.send_error(404, "Unknown function %s" % function_name)
107 if function_name[0] == "_":
111 function = getattr(self, function_name)
  /external/chromium/chrome/browser/extensions/
extension_function.h 36 public: static const char* function_name() { return name; }
extension_function_dispatcher.cc 106 factories_[T::function_name()] = &NewExtensionFunction<T>;
  /external/chromium/base/
tracked_objects.cc 780 if (left.location().function_name() != right.location().function_name()) {
781 int comp = strcmp(left.location().function_name(),
782 right.location().function_name());
844 if (left.location().function_name() != right.location().function_name()) {
845 int comp = strcmp(left.location().function_name(),
846 right.location().function_name());
890 if (!strstr(sample.location().function_name(), required_.c_str()))
    [all...]
  /external/e2fsprogs/ext2ed/
main.c 537 void internal_error (char *description,char *source_name,char *function_name)
539 wprintw (command_win,"Internal error - Found by source: %s.c , function: %s\n",source_name,function_name);
ext2ed.h 297 extern void internal_error (char *description,char *source_name,char *function_name);
  /external/mesa3d/src/glsl/
ir_if_return.cpp 165 if (strcmp(ir->function_name(), "main") == 0)
link_functions.cpp 76 const char *const name = callee->function_name();
ir.h 396 const char *function_name() const;
524 inline const char *ir_function_signature::function_name() const function in class:ir_function_signature
973 return callee->function_name();
    [all...]
lower_jumps.cpp 158 this->is_main = this->signature && (strcmp(this->signature->function_name(), "main") == 0);
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 162 // Executes the javascript function |function_name| in the renderer, passing
164 void CallJavascriptFunction(const std::wstring& function_name,
313 // Helper that executes |function_name| in the attached renderer.
316 void CallJavascriptFunction(const std::wstring& function_name, Value* arg);
596 const std::wstring& function_name,
600 web_ui_->CallJavascriptFunction(WideToASCII(function_name), *value);
602 web_ui_->CallJavascriptFunction(WideToASCII(function_name));
    [all...]
  /external/v8/src/
liveedit-debugger.js 338 change_log.push( {function_patched: new_info.function_name} );
340 change_log.push( {function_patched: new_info.function_name,
356 report_array.push( { name: old_info_node.info.function_name } );
359 { name: old_info_node.info.function_name, not_found: true } );
821 this.function_name = raw_array[0];
835 this.function_name = raw_array[0];
850 report_array.push( { name: old_info_node.info.function_name } );
854 { name: old_info_node.info.function_name, info_not_found: true } );
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 472 const std::string& function_name);
481 bool HasApiPermission(const std::string& function_name) const {
482 return HasApiPermission(this->api_permissions(), function_name);
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_window.cc 325 void DevToolsWindow::CallClientFunction(const string16& function_name,
329 string16 javascript = function_name + char16('(') + UTF8ToUTF16(json) +
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor_unittest.cc 78 bookmarks_function->set_name(T::function_name());
  /build/tools/releasetools/
common.py 680 def _DoCall(self, function_name, *args, **kwargs):
686 if self.module is None or not hasattr(self.module, function_name):
688 return getattr(self.module, function_name)(*((self,) + args), **kwargs)
  /external/v8/test/cctest/
test-debug.cc 172 const char* function_name) {
175 (*env)->Global()->Get(v8::String::New(function_name)));
181 const char* function_name) {
184 v8::Context::GetCurrent()->Global()->Get(v8::String::New(function_name)));
219 static int SetBreakPointFromJS(const char* function_name,
224 function_name, line, position);
672 v8::Handle<v8::String> function_name(result->ToString());
673 function_name->WriteAscii(last_function_hit);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 526 def begin(self, function_name, function_name_start_position, body_start_position, end_position,
531 function_name: The name of the function being tracked.
541 self.current_function = function_name
    [all...]

Completed in 1414 milliseconds

12 3