/third_party/python/Lib/test/ |
H A D | test_turtle.py | 324 self.assertAlmostEqual(self.nav.heading(), 90) 326 self.assertAlmostEqual(self.nav.heading(), 1.57079633) 328 self.assertAlmostEqual(self.nav.heading(), 90) 352 self.assertAlmostEqual(self.nav.heading(), 90) 354 self.assertAlmostEqual(self.nav.heading(), 135) 356 self.assertAlmostEqual(self.nav.heading(), 133.4) 364 self.assertEqual(self.nav.heading(), result) 370 self.assertEqual(self.nav.heading(), result) 381 self.assertAlmostEqual(self.nav.heading(), sum_so_far % 360) 385 self.assertAlmostEqual(self.nav.heading(), 102.3 [all...] |
/third_party/ffmpeg/doc/ |
H A D | t2h.pm | 100 # node is used as heading if there is nothing else. 117 my $heading = $self->command_text($command); 118 # $heading not defined may happen if the command is a @node, for example 120 if (defined($heading) and $heading ne '' and defined($heading_level)) { 128 $heading .= '<span class="pull-right">'. 144 $result .= $heading."\n"; 154 $heading = [$heading]; 157 $self, $cmdname, $heading, [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | check_files.py | 34 this class and implement `check_file_for_issue` and define ``heading``. 44 ``heading``: human-readable description of the issue 49 # heading must be defined in derived classes. 96 logger.info(self.heading) 161 heading = "Invalid shebang line:" variable in ShebangIssueTracker 208 heading = "Missing newline at end of file:" variable in EndOfFileNewlineIssueTracker 229 heading = "UTF-8 BOM present:" variable in Utf8BomIssueTracker 243 heading = "Invalid UTF-8 or forbidden character:" variable in UnicodeIssueTracker 283 heading = "Non-Unix line endings:" variable in UnixLineEndingIssueTracker 297 heading variable in WindowsLineEndingIssueTracker 311 heading = "Trailing whitespace:" global() variable in TrailingWhitespaceIssueTracker 321 heading = "Tabs present:" global() variable in TabIssueTracker 340 heading = "Merge artifact:" global() variable in MergeArtifactIssueTracker 368 heading = "License issue:" global() variable in LicenseIssueTracker [all...] |
/third_party/toybox/kconfig/ |
H A D | mconf.c | 773 char *heading; in conf_string() local 777 heading = (char *)_(inputbox_instructions_int); in conf_string() 780 heading = (char *)_(inputbox_instructions_hex); in conf_string() 783 heading = (char *)_(inputbox_instructions_string); in conf_string() 786 heading = "Internal mconf error!"; in conf_string() 790 heading, 10, 75, in conf_string()
|
/third_party/python/Tools/scripts/ |
H A D | texi2html.py | 1101 self.heading('H1', args, 0) 1105 self.heading('H1', args, -1) 1108 self.heading('H1', args, -1) 1111 self.heading('H1', args, -1) 1113 self.heading('H1', args, -1) 1115 self.heading('H1', args, -1) 1118 self.heading('H1', args, 1) 1122 self.heading('H1', args, -1) 1125 self.heading('H1', args, -1) 1129 self.heading('H 1155 def heading(self, type, args, level): global() member in TexinfoParser [all...] |
/third_party/node/deps/npm/node_modules/npmlog/lib/ |
H A D | log.js | 291 var heading = this.heading 292 if (heading) { 293 this.write(heading, this.headingStyle)
|
/third_party/python/Lib/ |
H A D | pydoc.py | 586 def heading(self, title, extras=''): function 587 """Format a page heading.""" 589 <table class="heading"> 590 <tr class="heading-text decor"> 597 """Format a section with a heading.""" 602 <tr class="decor %s-decor heading-text"> 617 """Format a section with a big heading.""" 728 result = result + '<dt class="heading-text">' 777 result = self.heading(head, '<a href=".">index</a><br>' + filelink + docloc) 1079 self.grey('<span class="heading [all...] |
H A D | optparse.py | 258 def format_heading(self, heading): 383 def format_heading(self, heading): 384 return "%*s%s:\n" % (self.current_indent, "", heading) 402 def format_heading(self, heading): 403 return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
|
H A D | argparse.py | 206 def __init__(self, formatter, parent, heading=None): 209 self.heading = heading 225 # add the heading if the section was non-empty 226 if self.heading is not SUPPRESS and self.heading is not None: 228 heading = '%*s%s:\n' % (current_indent, '', self.heading) 230 heading = '' 232 # join the section-initial newline, the heading an [all...] |
/third_party/cJSON/tests/unity/auto/ |
H A D | parse_output.rb | 202 heading = '<testsuite tests="' + @total_tests.to_s + '" failures="' + test_fail.to_s + '"' + ' skips="' + test_ignore.to_s + '">' 203 @array_list.insert(0, heading)
|
/third_party/python/Lib/turtledemo/ |
H A D | penrose.py | 52 h, x, y = int(heading()), round(px,3), round(py,3) 74 h, x, y = int(heading()), round(px,3), round(py,3)
|
H A D | bytedesign.py | 69 oldh = self.heading() 86 oldh = self.heading()
|
/third_party/rust/crates/clap/clap_mangen/src/ |
H A D | lib.rs | 209 let heading = subcommand_heading(&self.cmd); in _render_subcommands_section() 210 roff.control("SH", [heading]); in _render_subcommands_section()
|
/third_party/node/deps/npm/node_modules/columnify/ |
H A D | columnify.js | 112 // disable default heading transform if we wrote to column.name 115 column.headingTransform = function (heading) { 116 return heading;
|
H A D | index.js | 106 // disable default heading transform if we wrote to column.name 109 column.headingTransform = heading => heading
|
/third_party/unity/auto/ |
H A D | parse_output.rb | 78 heading = "<testsuite name=#{xml_encode_s(@real_test_suite_name)} tests=\"#{@total_tests}\" failures=\"#{@test_failed}\" skips=\"#{@test_ignored}\">" 79 @array_list.insert(0, heading)
|
/third_party/rust/crates/clap/src/output/ |
H A D | help_template.rs | 61 {usage-heading} {usage} 68 {usage-heading} {usage}{after-help}\ 165 "usage-heading" => { 180 // Include even those with a heading as we don't have a good way of 398 for heading in custom_headings { 404 return help_heading == heading; 416 self.header(heading); 419 self.write_args(&args, heading, option_sort_key);
|
/third_party/libcoap/src/oscore/ |
H A D | oscore_context.c | 341 oscore_log_context(oscore_ctx_t *osc_ctx, const char *heading) { in oscore_log_context() argument 344 (void)heading; in oscore_log_context() 351 coap_log_oscore("%s\n", heading); in oscore_log_context()
|
/third_party/icu/icu4c/source/common/ |
H A D | rbbidata.h | 178 void printTable(const char *heading, const RBBIStateTable *table);
|
H A D | rbbidata.cpp | 229 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) { in printTable() argument 233 RBBIDebugPrintf("%s\n", heading); in printTable()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | rbbidata.h | 178 void printTable(const char *heading, const RBBIStateTable *table);
|
H A D | rbbidata.cpp | 229 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) { in printTable() argument 233 RBBIDebugPrintf("%s\n", heading); in printTable()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | rbbidata.h | 178 void printTable(const char *heading, const RBBIStateTable *table);
|
/third_party/skia/modules/particles/include/ |
H A D | SkParticleEffect.h | 133 void start(double now, bool looping, SkPoint position, SkVector heading, float scale, 140 { 0.0f, -1.0f }, // heading in start()
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_widgets.py | 1515 self.assertIsInstance(self.tv.heading('#0'), dict) 1518 self.tv.heading('#0', text='hi') 1519 self.assertEqual(self.tv.heading('#0', 'text'), 'hi') 1520 self.assertEqual(self.tv.heading('#0', text=None), 'hi') 1523 self.assertRaises(tkinter.TclError, self.tv.heading, '#0', 1526 self.assertRaises(tkinter.TclError, self.tv.heading, '#0', 1533 self.assertEqual(self.tv.identify_region(x, y), 'heading') 1540 self.tv.heading('#0', command=lambda: success.append(True)) 1544 # assuming that the coords (5, 5) fall into heading #0 1547 self.fail("The command associated to the treeview heading was [all...] |