/external/google-styleguide/include/ |
D | styleguide.js | 88 var heading = headings[h]; 91 var level = parseInt(heading.tagName.charAt(1)); 96 if ((level == masterLevel) && (!hasClass(heading, 'ignoreLink'))) { 97 toc_current_row = AddTOCMaster(tbody_element, heading); 101 if ((level == masterLevel) && (hasClass(heading, 'ignoreLink'))) { 106 AddTOCElements(toc_current_row, heading); 115 function AddTOCMaster(tocTable, heading) { argument 129 link.href = '#' + heading.id; // Create the anchor link 130 link.textContent = heading.textContent; // Link text is same as heading 144 function AddTOCElements(toc_div, heading) { argument [all …]
|
D | jsguide.js | 32 var heading = document.getElementById(href.substring(1)); 34 if (heading && link.textContent == '??') { 35 link.textContent = heading.textContent;
|
/external/markdown/markdown/extensions/ |
D | rss.py | 22 def get_time(heading): argument 24 heading = heading.split("-")[0] 25 heading = heading.strip().replace(",", " ").replace(".", " ") 27 month, date, year = heading.split() 81 heading = child.text.strip() 86 title.text = heading 88 guid = ''.join([x for x in heading if x.isalnum()])
|
/external/python/cpython2/Lib/test/ |
D | test_turtle.py | 311 self.assertAlmostEqual(self.nav.heading(), 90) 313 self.assertAlmostEqual(self.nav.heading(), 1.57079633) 315 self.assertAlmostEqual(self.nav.heading(), 90) 339 self.assertAlmostEqual(self.nav.heading(), 90) 341 self.assertAlmostEqual(self.nav.heading(), 135) 343 self.assertAlmostEqual(self.nav.heading(), 133.4) 351 self.assertEqual(self.nav.heading(), result) 357 self.assertEqual(self.nav.heading(), result) 368 self.assertAlmostEqual(self.nav.heading(), sum_so_far % 360) 372 self.assertAlmostEqual(self.nav.heading(), 102.32) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_turtle.py | 315 self.assertAlmostEqual(self.nav.heading(), 90) 317 self.assertAlmostEqual(self.nav.heading(), 1.57079633) 319 self.assertAlmostEqual(self.nav.heading(), 90) 343 self.assertAlmostEqual(self.nav.heading(), 90) 345 self.assertAlmostEqual(self.nav.heading(), 135) 347 self.assertAlmostEqual(self.nav.heading(), 133.4) 355 self.assertEqual(self.nav.heading(), result) 361 self.assertEqual(self.nav.heading(), result) 372 self.assertAlmostEqual(self.nav.heading(), sum_so_far % 360) 376 self.assertAlmostEqual(self.nav.heading(), 102.32) [all …]
|
/external/skia/modules/particles/include/ |
D | SkParticleData.h | 66 SkVector heading = fVelocity.fLinear; in getFrameHeading() local 67 if (!heading.normalize()) { in getFrameHeading() 68 heading.set(0, -1); in getFrameHeading() 70 return heading; in getFrameHeading()
|
/external/ImageMagick/scripts/ |
D | txt2html | 708 local($heading) = @_; 709 local($anchor) = &make_new_anchor($heading); 713 sub heading subroutine 715 local($hindent, $heading) = $line =~ /^(\s*)(.+)$/; 725 if((length($heading) > (length($underline) + $underline_tolerance_short)) 726 || (length($heading) < (length($underline) -$underline_tolerance_long))) 745 &anchor_heading($heading); 884 &heading if (!($mode & $PRE) &&
|
D | format_c_api_docs | 583 my($heading) = @_; 584 return( "=head1 $heading\n\n" ); 592 my($heading) = @_; 593 return( "=head2 $heading\n\n" );
|
/external/skia/modules/particles/src/ |
D | SkParticleAffector.cpp | 47 SkVector heading = ps[i].getFrameHeading(static_cast<SkParticleFrame>(fFrame)); in REFLECTED() local 48 SkScalar c = heading.fX * c_local - heading.fY * s_local; in REFLECTED() 49 SkScalar s = heading.fX * s_local + heading.fY * c_local; in REFLECTED() 149 SkVector heading = ps[i].getFrameHeading(static_cast<SkParticleFrame>(fFrame)); in REFLECTED() local 150 ps[i].fPose.fHeading.set(heading.fX * c_local - heading.fY * s_local, in REFLECTED() 151 heading.fX * s_local + heading.fY * c_local); in REFLECTED()
|
/external/grpc-grpc/tools/run_tests/ |
D | run_microbenchmark.py | 62 def heading(name): function 84 heading('Latency Profiles: %s' % bm_name) 137 heading('Flamegraphs: %s' % bm_name) 205 heading('Summary: %s [no counters]' % bm_name) 207 heading('Summary: %s [with counters]' % bm_name)
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | ui.py | 10 def PrintMessage(heading, eol='\n'): argument 11 sys.stdout.write('%s%s' % (heading, eol))
|
/external/toybox/kconfig/ |
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()
|
/external/u-boot/Licenses/ |
D | Exceptions | 8 U-Boot, and does *not* fall under the heading of "derived work". 13 *not* fall under the heading of "derived work".
|
/external/python/cpython3/Doc/library/ |
D | cmd.rst | 276 'Print the current turtle heading in degrees: HEADING' 277 print('Current heading is %d\n' % (heading(),)) 332 circle forward heading left position reset undo 340 (turtle) heading 341 Current heading is 0 357 (turtle) heading 358 Current heading is 180 376 Current heading is 0 378 Current heading is 180
|
D | turtle.rst | 127 | :func:`heading` 271 turtle is headed. Do not change the turtle's heading. 303 >>> turtle.heading() 306 >>> turtle.heading() 326 >>> turtle.heading() 329 >>> turtle.heading() 428 >>> turtle.heading() 434 Move turtle to the origin -- coordinates (0,0) -- and set its heading to 445 >>> turtle.heading() 452 >>> turtle.heading() [all …]
|
/external/python/cpython3/Lib/ |
D | pydoc.py | 492 def heading(self, title, fgcol, bgcol, extras=''): member in HTMLDoc 686 result = self.heading( 2391 heading = html.heading( 2397 contents = [heading, '<p>' + html.bigsection( 2431 heading = html.heading( 2436 contents = heading + html.bigsection( 2446 heading = html.heading( 2449 contents = heading + html.bigsection( 2459 heading = html.heading( 2465 contents = heading + html.bigsection( [all …]
|
/external/python/cpython3/Tools/scripts/ |
D | texi2html.py | 1102 self.heading('H1', args, 0) 1106 self.heading('H1', args, -1) 1109 self.heading('H1', args, -1) 1112 self.heading('H1', args, -1) 1114 self.heading('H1', args, -1) 1116 self.heading('H1', args, -1) 1119 self.heading('H1', args, 1) 1123 self.heading('H1', args, -1) 1126 self.heading('H1', args, -1) 1130 self.heading('H1', args, -1) [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | texi2html.py | 1103 self.heading('H1', args, 0) 1107 self.heading('H1', args, -1) 1110 self.heading('H1', args, -1) 1113 self.heading('H1', args, -1) 1115 self.heading('H1', args, -1) 1117 self.heading('H1', args, -1) 1120 self.heading('H1', args, 1) 1124 self.heading('H1', args, -1) 1127 self.heading('H1', args, -1) 1131 self.heading('H1', args, -1) [all …]
|
/external/u-boot/scripts/kconfig/ |
D | mconf.c | 867 const char *heading; in conf_string() local 871 heading = _(inputbox_instructions_int); in conf_string() 874 heading = _(inputbox_instructions_hex); in conf_string() 877 heading = _(inputbox_instructions_string); in conf_string() 880 heading = _("Internal mconf error!"); in conf_string() 884 heading, 10, 75, in conf_string()
|
/external/selinux/python/semanage/ |
D | seobject.py | 386 def list(self, heading=1, locallist=0): argument 391 if heading: 481 def list(self, heading=1, locallist=0): argument 486 if heading: 496 if heading: 757 def list(self, heading=1, locallist=0): argument 766 if heading: 778 if heading: 1027 def list(self, heading=1, locallist=0): argument 1034 if heading: [all …]
|
/external/python/cpython2/Doc/library/ |
D | turtle.rst | 112 | :func:`heading` 251 turtle is headed. Do not change the turtle's heading. 283 >>> turtle.heading() 286 >>> turtle.heading() 306 >>> turtle.heading() 309 >>> turtle.heading() 408 >>> turtle.heading() 414 Move turtle to the origin -- coordinates (0,0) -- and set its heading to 425 >>> turtle.heading() 432 >>> turtle.heading() [all …]
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | treeview_multicolumn.py | 36 tree.heading(col, 76 self.tree.heading(col, text=col.title(),
|
D | dirbrowser.py | 78 tree.heading("#0", text="Directory Structure", anchor='w') 79 tree.heading("size", text="File Size", anchor='w')
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | markdown.py | 93 self._root_section.heading = md_heading(self._prog, level=1) 97 def start_section(self, heading): argument 99 md_heading(heading, level=2))
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | CheckHtmlFiles.java | 720 HeadingInfo heading = new HeadingInfo(); in parseFile() local 764 heading.addId(content.toString()); in parseFile() 813 if (heading.isContents()) { in parseFile() 816 headingInfoList.add(parser.getLineCount(), heading); in parseFile() local 817 lastHeading = heading; in parseFile() 819 heading = new HeadingInfo(); in parseFile() 822 heading.setLevel(contentString, lastHeading); in parseFile() 847 heading.addText(contentString); in parseFile()
|