Home
last modified time | relevance | path

Searched refs:show_source (Results 1 – 25 of 231) sorted by relevance

12345678910

/dports/devel/py-flake8/flake8-4.0.1/tests/unit/
H A Dtest_base_formatter.py54 formatter = base.BaseFormatter(options(show_source=False))
56 formatter.show_source(
67 formatter = base.BaseFormatter(options(show_source=True))
69 formatter.show_source(
98 formatter = base.BaseFormatter(options(show_source=True))
100 output = formatter.show_source(error)
163 formatter = FormatFormatter(options(show_source=False))
/dports/devel/anjuta/anjuta-3.34.0/plugins/git/
H A Dgit-cherry-pick-command.c31 gboolean show_source; member
68 if (self->priv->show_source) in git_cherry_pick_command_run()
95 gboolean show_source, gboolean add_signoff) in git_cherry_pick_command_new() argument
106 self->priv->show_source = show_source; in git_cherry_pick_command_new()
/dports/biology/libgtextutils/libgtextutils-0.7/src/gtextutils/
H A Dexit_manip.h40 bool show_source; member
51 eps.show_source = false ;
53 eps.show_source = true ;
62 if (eps.show_source)
/dports/devel/R-cran-pillar/pillar/R/
H A Dshow_source.R24 options$show_source <- qualified_fun_name
28 knitr::opts_hooks$set(show_source = show_source_opts_hook) functionVar
39 if (is.null(options$show_source)) {
43 qualified_fun_name <- options$show_source
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/app_list/test/
H A Dapp_list_test_helper.cc45 AppListShowSource show_source) { in ShowAndRunLoop() argument
46 app_list_controller_->Show(display_id, show_source, base::TimeTicks()); in ShowAndRunLoop()
64 AppListShowSource show_source) { in ToggleAndRunLoop() argument
65 app_list_controller_->ToggleAppList(display_id, show_source, in ToggleAndRunLoop()
H A Dapp_list_test_helper.h33 void ShowAndRunLoop(uint64_t display_id, AppListShowSource show_source);
47 void ToggleAndRunLoop(uint64_t display_id, AppListShowSource show_source);
/dports/x11-toolkits/gtk30/gtk+-3.24.31/demos/gtk-demo/
H A Dmarkup.c53 GtkWidget *show_source; in do_markup() local
66 show_source = gtk_check_button_new_with_label ("Source"); in do_markup()
67 gtk_widget_set_valign (show_source, GTK_ALIGN_CENTER); in do_markup()
68 g_signal_connect (show_source, "toggled", G_CALLBACK (source_toggled), stack); in do_markup()
72 gtk_header_bar_pack_start (GTK_HEADER_BAR (header), show_source); in do_markup()
/dports/x11-toolkits/gtk40/gtk-4.4.1/demos/gtk-demo/
H A Dmarkup.c56 GtkWidget *show_source; in do_markup() local
68 show_source = gtk_check_button_new_with_label ("Source"); in do_markup()
69 gtk_widget_set_valign (show_source, GTK_ALIGN_CENTER); in do_markup()
70 g_signal_connect (show_source, "toggled", G_CALLBACK (source_toggled), stack); in do_markup()
73 gtk_header_bar_pack_start (GTK_HEADER_BAR (header), show_source); in do_markup()
/dports/devel/nuitka/Nuitka-0.6.17/lib/
H A Dhints.py87 show_source = None variable
115 if not show_source:
145 def enableImportTracing(normalize_paths=True, show_source=False): argument
148 do_show_source = show_source
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/util/py_lib/seqan/pyclangcheck/
H A Dviolations.py72 def __init__(self, ignore_nolint, show_source): argument
76 self.show_source = show_source
85 if self.show_source:
/dports/devel/R-cran-pillar/pillar/inst/doc/
H A Dprinting.Rmd84 ```{r show_source = TRUE}
90 ```{r show_source = TRUE}
114 ```{r show_source = TRUE}
122 ```{r show_source = TRUE}
151 ```{r show_source = TRUE}
155 ```{r show_source = TRUE}
159 ```{r show_source = TRUE}
198 ```{r show_source = TRUE}
211 ```{r show_source = TRUE}
217 ```{r show_source = TRUE}
[all …]
/dports/devel/R-cran-pillar/pillar/vignettes/
H A Dprinting.Rmd84 ```{r show_source = TRUE}
90 ```{r show_source = TRUE}
114 ```{r show_source = TRUE}
122 ```{r show_source = TRUE}
151 ```{r show_source = TRUE}
155 ```{r show_source = TRUE}
159 ```{r show_source = TRUE}
198 ```{r show_source = TRUE}
211 ```{r show_source = TRUE}
217 ```{r show_source = TRUE}
[all …]
/dports/mail/evolution/evolution-3.42.1/src/e-util/
H A Dtest-html-editor.c152 gboolean show_source, in view_source_dialog_show() argument
183 if (show_source || plain_text) { in view_source_dialog_show()
209 gboolean show_source; member
216 gboolean show_source) in view_source_data_new() argument
224 vsd->show_source = show_source; in view_source_data_new()
258 …view_source_dialog_show (vcd->editor, vcd->title, vcd->mode == GET_CONTENT_PLAIN, vcd->show_source, in view_source_dialog_content_hash_ready_cb()
275 gboolean show_source) in view_source_dialog() argument
281 vcd = view_source_data_new (editor, title, mode, show_source); in view_source_dialog()
/dports/textproc/py-reno/reno-2.9.2/reno/
H A Dreport.py31 show_source=args.show_source,
H A Dformatter.py47 show_source=True, branch=None): argument
89 if show_source:
110 if show_source:
/dports/devel/py-flake8/flake8-4.0.1/src/flake8/formatting/
H A Dbase.py99 source = self.show_source(error)
151 def show_source(self, error: "Violation") -> Optional[str]: member in BaseFormatter
169 if not self.options.show_source or error.physical_line is None:
H A Ddefault.py75 def show_source(self, error: "Violation") -> Optional[str]: member in FilenameOnly
93 def show_source(self, error: "Violation") -> Optional[str]: member in Nothing
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.mi/
H A Dmi2-cli-display.exp41 proc check_cli_display {x show_source} { argument
48 if {$show_source} {
/dports/devel/bashdb/bashdb-5.0-1.1.2/command/
H A Dbacktrace.sh76 typeset -i show_source=0
85 show_source=1
/dports/lang/ocaml/ocaml-4.05.0/debugger/
H A D.depend11 show_source.cmi show_information.cmi question.cmi program_management.cmi \
21 show_source.cmx show_information.cmx question.cmx program_management.cmx \
158 show_information.cmo : symbols.cmi source.cmi show_source.cmi printval.cmi \
162 show_information.cmx : symbols.cmx source.cmx show_source.cmx printval.cmx \
167 show_source.cmo : source.cmi primitives.cmi parameters.cmi \
169 debugger_config.cmi show_source.cmi
170 show_source.cmx : source.cmx primitives.cmx parameters.cmx \
172 debugger_config.cmx show_source.cmi
173 show_source.cmi : ../bytecomp/instruct.cmi
/dports/lang/ocaml-nox11/ocaml-4.05.0/debugger/
H A D.depend11 show_source.cmi show_information.cmi question.cmi program_management.cmi \
21 show_source.cmx show_information.cmx question.cmx program_management.cmx \
158 show_information.cmo : symbols.cmi source.cmi show_source.cmi printval.cmi \
162 show_information.cmx : symbols.cmx source.cmx show_source.cmx printval.cmx \
167 show_source.cmo : source.cmi primitives.cmi parameters.cmi \
169 debugger_config.cmi show_source.cmi
170 show_source.cmx : source.cmx primitives.cmx parameters.cmx \
172 debugger_config.cmx show_source.cmi
173 show_source.cmi : ../bytecomp/instruct.cmi
/dports/www/mod_php81/php-8.1.1/ext/standard/tests/strings/
H A Dshow_source_basic.phpt2 Test function show_source() by calling it with its expected arguments, more test for highlight_file…
19 show_source(__FILE__);
25 …;code&nbsp;here&nbsp;*/<br /><br /></span><span style="color: #0000BB">show_source</span><span sty…
/dports/www/mod_php80/php-8.0.15/ext/standard/tests/strings/
H A Dshow_source_basic.phpt2 Test function show_source() by calling it with its expected arguments, more test for highlight_file…
19 show_source(__FILE__);
25 …;code&nbsp;here&nbsp;*/<br /><br /></span><span style="color: #0000BB">show_source</span><span sty…
/dports/lang/php74/php-7.4.27/ext/standard/tests/strings/
H A Dshow_source_basic.phpt2 Test function show_source() by calling it with its expected arguments, more test for highlight_file…
19 show_source(__FILE__);
25 …;code&nbsp;here&nbsp;*/<br /><br /></span><span style="color: #0000BB">show_source</span><span sty…
/dports/lang/php73/php-7.3.33/ext/standard/tests/strings/
H A Dshow_source_basic.phpt2 Test function show_source() by calling it with its expected arguments, more test for highlight_file…
19 show_source(__FILE__);
25 …;code&nbsp;here&nbsp;*/<br /><br /></span><span style="color: #0000BB">show_source</span><span sty…

12345678910