Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 1420) sorted by relevance

12345678910>>...57

/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/
H A Dbuildtables.py31 self.title = "Packages built"
94 self.add_column(title="Layer",
108 self.add_column(title="Layer branch",
126 self.add_column(title="Layer commit",
136 self.title = "Packages built"
166 self.title = "Packages Included"
206 self.add_column(title="Installed size",
236 self.title = "Recipes built"
315 self.add_column(title="Recipe",
322 self.add_column(title="Version",
[all …]
H A Dtables.py37 self.title = "Compatible layers"
91 self.add_column(title="Layer",
97 self.add_column(title="Summary",
115 self.add_column(title="Layer source code location",
136 self.add_column(title="Subdirectory",
153 self.add_column(title="Git revision",
173 self.add_column(title="Dependencies",
178 self.add_column(title="Add | Remove",
192 self.title = "Compatible machines"
235 self.add_column(title="Machine",
[all …]
H A Dtablefilter.py21 def __init__(self, name, title): argument
23 self.title = title
62 'title': self.title,
107 def __init__(self, name, title, criteria): argument
109 self.title = title
132 'title': self.title,
157 def __init__(self, name, title, field, day, argument
163 super(TableFilterActionDay, self).__init__(name, title, None)
200 def __init__(self, name, title, field, argument
207 title,
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dbiblio.rst14 :title: CEA-608-E R-2014 "Line 21 Data Services"
24 :title: EN 300 294 "625-line television Wide Screen Signalling (WSS)"
34 :title: ETS 300 231 "Specification of the domestic video Programme Delivery Control system (PDC…
44 :title: ETS 300 706 "Enhanced Teletext specification"
54 :title: ITU-T Rec. H.222.0 | ISO/IEC 13818-1 "Information technology — Generic coding of moving…
64 :title: ITU-T Rec. H.262 | ISO/IEC 13818-2 "Information technology — Generic coding of moving p…
74 :title: ITU-R Recommendation BT.470-6 "Conventional Television Systems"
84 :title: ITU-R Recommendation BT.601-5 "Studio Encoding Parameters of Digital Television for Sta…
94 :title: ITU-R Recommendation BT.653-3 "Teletext systems"
104 :title: ITU-R Recommendation BT.709-5 "Parameter values for the HDTV standards for production a…
[all …]
/OK3568_Linux_fs/kernel/tools/perf/Documentation/
H A Dasciidoc.conf34 <example><title>{title}</title>
44 {title#}</example>
51 <example><title>{title}</title>
55 {title#}</example>
58 <formalpara{id? id="{id}"}><title>{title}</title><para>
59 {title%}<literallayout{id? id="{id}"}>
60 {title#}<literallayout>
63 {title#}</para></formalpara>
64 {title%}<simpara></simpara>
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Drsdump.c19 static void acpi_rs_out_string(const char *title, const char *value);
21 static void acpi_rs_out_integer8(const char *title, u8 value);
23 static void acpi_rs_out_integer16(const char *title, u16 value);
25 static void acpi_rs_out_integer32(const char *title, u32 value);
27 static void acpi_rs_out_integer64(const char *title, u64 value);
29 static void acpi_rs_out_title(const char *title);
43 acpi_rs_dump_resource_label(char *title,
417 acpi_rs_dump_resource_label(char *title, in acpi_rs_dump_resource_label() argument
422 acpi_rs_out_string(title, in acpi_rs_dump_resource_label()
488 static void acpi_rs_out_string(const char *title, const char *value) in acpi_rs_out_string() argument
[all …]
/OK3568_Linux_fs/kernel/tools/lib/perf/Documentation/
H A Dasciidoc.conf34 <example><title>{title}</title>
44 {title#}</example>
51 <example><title>{title}</title>
55 {title#}</example>
58 <formalpara{id? id="{id}"}><title>{title}</title><para>
59 {title%}<literallayout{id? id="{id}"}>
60 {title#}<literallayout>
63 {title#}</para></formalpara>
64 {title%}<simpara></simpara>
/OK3568_Linux_fs/kernel/tools/lib/traceevent/Documentation/
H A Dasciidoc.conf34 <example><title>{title}</title>
44 {title#}</example>
51 <example><title>{title}</title>
55 {title#}</example>
58 <formalpara{id? id="{id}"}><title>{title}</title><para>
59 {title%}<literallayout{id? id="{id}"}>
60 {title#}<literallayout>
63 {title#}</para></formalpara>
64 {title%}<simpara></simpara>
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Dterminal.py32 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
34 fmt_sh_cmd = self.format_command(sh_cmd, title)
44 def format_command(self, sh_cmd, title): argument
45 fmt = {'title': title or 'Terminal', 'command': sh_cmd, 'cwd': os.getcwd() }
52 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
53 Terminal.__init__(self, sh_cmd, title, env, d)
61 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
68 XTerminal.__init__(self, sh_cmd, title, env, d)
86 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
95 XTerminal.__init__(self, sh_cmd, title, env, d)
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Dbootmenu.c28 char *title; /* title of entry */ member
75 puts(entry->title); in bootmenu_print_entry()
240 free(iter->title); in bootmenu_destroy()
279 entry->title = malloc(len + 1); in bootmenu_create()
280 if (!entry->title) { in bootmenu_create()
284 memcpy(entry->title, option, len); in bootmenu_create()
285 entry->title[len] = 0; in bootmenu_create()
290 free(entry->title); in bootmenu_create()
321 entry->title = strdup("U-Boot console"); in bootmenu_create()
322 if (!entry->title) { in bootmenu_create()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/ui/tui/
H A Dutil.c75 int ui_browser__input_window(const char *title, const char *text, char *input, in ui_browser__input_window() argument
107 if (title) { in ui_browser__input_window()
109 SLsmg_write_string((char *)title); in ui_browser__input_window()
167 void __ui__info_window(const char *title, const char *text, const char *exit_msg) in __ui__info_window() argument
198 if (title) { in __ui__info_window()
200 SLsmg_write_string((char *)title); in __ui__info_window()
216 void ui__info_window(const char *title, const char *text) in ui__info_window() argument
219 __ui__info_window(title, text, NULL); in ui__info_window()
224 int ui__question_window(const char *title, const char *text, in ui__question_window() argument
228 __ui__info_window(title, text, exit_msg); in ui__question_window()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/
H A Dqplacereview.cpp55 title = other.title; in QPlaceReviewPrivate()
71 title == od->title; in compare()
214 QString QPlaceReview::title() const in title() function in QPlaceReview
217 return d->title; in title()
223 void QPlaceReview::setTitle(const QString &title) in setTitle() argument
226 d->title = title; in setTitle()
H A Dqplacesearchresult.cpp61 return title == other->title in compare()
174 QString QPlaceSearchResult::title() const in title() function in QPlaceSearchResult
177 return d->title; in title()
183 void QPlaceSearchResult::setTitle(const QString &title) in setTitle() argument
186 d->title = title; in setTitle()
/OK3568_Linux_fs/kernel/tools/testing/selftests/splice/
H A Dshort_splice_read.sh17 title="$1"
21 echo "$title ..." >&2
30 echo "ok: $title succeeded" >&2
33 echo "FAIL: $title should work" >&2
45 title="$1"
49 echo "$title ..." >&2
58 echo "FAIL: $title unexpectedly worked" >&2
62 echo "ok: $title correctly failed" >&2
/OK3568_Linux_fs/u-boot/common/
H A Dmenu.c37 char *title; member
118 if (m->title) { in menu_display()
119 puts(m->title); in menu_display()
361 struct menu *menu_create(char *title, int timeout, int prompt, in menu_create() argument
380 if (title) { in menu_create()
381 m->title = strdup(title); in menu_create()
382 if (!m->title) { in menu_create()
387 m->title = NULL; in menu_create()
409 if (m->title) in menu_destroy()
410 free(m->title); in menu_destroy()
/OK3568_Linux_fs/kernel/tools/perf/ui/
H A Dprogress.h10 const char *title; member
16 const char *title, bool size);
18 #define ui_progress__init(p, total, title) \ argument
19 __ui_progress__init(p, total, title, false)
21 #define ui_progress__init_size(p, total, title) \ argument
22 __ui_progress__init(p, total, title, true)
/OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/bin/
H A Dparse-console.sh16 title="$2"
27 echo $title unreadable console output file: $file
63 print_bug $title FAILURE, $nerrs
100 print_warning $title `cat $T.seq`
107 print_warning HOTPLUG FAILURES $title `cat $T.seq`
111 …echo $title no success message, `grep --binary-files=text 'ver:' $file | wc -l` successful version…
114 print_warning $title `cat $T.seq`
123 print_warning "Assertion failure in $file $title"
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dreference_tracking.c27 const char *title; in test_reference_tracking() local
30 title = bpf_program__section_name(prog); in test_reference_tracking()
31 if (strstr(title, ".text") != NULL) in test_reference_tracking()
34 if (!test__start_subtest(title)) in test_reference_tracking()
38 if (strstr(title, "fail") != NULL) { in test_reference_tracking()
47 CHECK(err, title, "\n"); in test_reference_tracking()
H A Dsockopt_multi.c5 static int prog_attach(struct bpf_object *obj, int cgroup_fd, const char *title) in prog_attach() argument
12 err = libbpf_prog_type_by_name(title, &prog_type, &attach_type); in prog_attach()
14 log_err("Failed to deduct types for %s BPF program", title); in prog_attach()
18 prog = bpf_object__find_program_by_title(obj, title); in prog_attach()
20 log_err("Failed to find %s BPF program", title); in prog_attach()
27 log_err("Failed to attach %s BPF program", title); in prog_attach()
34 static int prog_detach(struct bpf_object *obj, int cgroup_fd, const char *title) in prog_detach() argument
41 err = libbpf_prog_type_by_name(title, &prog_type, &attach_type); in prog_detach()
45 prog = bpf_object__find_program_by_title(obj, title); in prog_detach()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchresult/
H A Dtst_qplacesearchresult.cpp42 void title();
52 QVERIFY(result.title().isEmpty()); in constructorTest()
63 QCOMPARE(result2.title(), QStringLiteral("title")); in constructorTest()
70 void tst_QPlaceSearchResult::title() in title() function in tst_QPlaceSearchResult
73 QVERIFY(result.title().isEmpty()); in title()
75 QCOMPARE(result.title(), QStringLiteral("title")); in title()
77 QVERIFY(result.title().isEmpty()); in title()
/OK3568_Linux_fs/yocto/poky/scripts/tiny/
H A Dksize.py29 self.title = glob
43 (indent+self.title, self.total, self.text, self.data, self.bss))
47 def create(filename, title, subglob=None): argument
48 r = Report(filename, title)
55 oreport.sizes.title = str(path) + "/*.o"
78 def __init__(self, glob, title): argument
80 self.title = title
89 (indent+self.title, "total", "text", "data", "bss"))
149 if b.title == "drivers" and driver_detail:
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dtable.js217 help_text.tooltip({title: col.help_text}); property
223 var title = $('<a href=\"#\" ></a>');
225 title.data('field-name', col.field_name);
226 title.attr('data-sort-field', col.field_name);
227 title.text(col.title);
228 title.click(sortColumnClicked);
230 header.append(title);
248 title.addClass("default-orderby");
254 header.append('<span class="text-muted">' + col.title + '</span> ');
278 … col.field_name +'" class="col-toggle" value="'+col.field_name+'" />'+col.title+'</label></div></l…
[all …]
/OK3568_Linux_fs/u-boot/scripts/kconfig/lxdialog/
H A Ddialog.h108 struct dialog_color title; member
213 void print_title(WINDOW *dialog, const char *title, int width);
219 int dialog_yesno(const char *title, const char *prompt, int height, int width);
220 int dialog_msgbox(const char *title, const char *prompt, int height,
226 int dialog_textbox(const char *title, char *tbuf, int initial_height,
229 int dialog_menu(const char *title, const char *prompt,
231 int dialog_checklist(const char *title, const char *prompt, int height,
233 int dialog_inputbox(const char *title, const char *prompt, int height,
/OK3568_Linux_fs/buildroot/support/kconfig/lxdialog/
H A Ddialog.h120 struct dialog_color title; member
225 void print_title(WINDOW *dialog, const char *title, int width);
231 int dialog_yesno(const char *title, const char *prompt, int height, int width);
232 int dialog_msgbox(const char *title, const char *prompt, int height,
238 int dialog_textbox(const char *title, char *tbuf, int initial_height,
241 int dialog_menu(const char *title, const char *prompt,
243 int dialog_checklist(const char *title, const char *prompt, int height,
245 int dialog_inputbox(const char *title, const char *prompt, int height,
/OK3568_Linux_fs/kernel/scripts/kconfig/lxdialog/
H A Ddialog.h101 struct dialog_color title; member
206 void print_title(WINDOW *dialog, const char *title, int width);
212 int dialog_yesno(const char *title, const char *prompt, int height, int width);
213 int dialog_msgbox(const char *title, const char *prompt, int height,
219 int dialog_textbox(const char *title, char *tbuf, int initial_height,
222 int dialog_menu(const char *title, const char *prompt,
224 int dialog_checklist(const char *title, const char *prompt, int height,
226 int dialog_inputbox(const char *title, const char *prompt, int height,

12345678910>>...57