HomeSort by relevance Sort by last modified time
    Searched refs:heading (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /art/tools/ahat/src/
Column.java 23 public DocString heading; field in class:Column
30 public Column(DocString heading, Align align) {
31 this.heading = heading;
36 * Construct a left-aligned column with a simple heading.
38 public Column(String heading) {
39 this(DocString.text(heading), Align.LEFT);
43 * Construct a column with a simple heading.
45 public Column(String heading, Align align) {
46 this(DocString.text(heading), align)
    [all...]
HtmlDoc.java 89 ps.format("<th>%s</th>", columns[i].heading.html());
94 ps.format("<th align=\"left\">%s</th>", columns[columns.length - 1].heading.html());
113 ps.format("<th rowspan=\"2\">%s</th>", cols.get(i).heading.html());
119 cols.get(cols.size() - 1).heading.html());
125 ps.format("<th>%s</th>", subcol.heading.html());
  /external/markdown/markdown/extensions/
rss.py 22 def get_time(heading):
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()])
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
hmc5883l.js 36 // Print out the coordinates, heading, and direction every second
44 var heading = round2Digits(myCompass.heading());
47 " heading: " + heading + " direction " + direction;
  /external/chromium-trace/catapult/systrace/profile_chrome/
ui.py 10 def PrintMessage(heading, eol='\n'):
11 sys.stdout.write('%s%s' % (heading, eol))
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
hmc5883l.cxx 39 // Print out the coordinates, heading, and direction every second
44 fprintf(stdout, "heading: %5.2f direction: %3.2f\n", compass->heading(), compass->direction());
  /hardware/bsp/intel/peripheral/libupm/examples/python/
hmc5883l.py 35 hdg = hmc.heading() # Read heading
40 print "Heading: %5.2f" % (hdg)
  /hardware/bsp/intel/peripheral/libupm/src/hmc5883l/
hmc5883l.h 75 * Returns the heading
77 float heading();
  /packages/apps/Dialer/InCallUI/tests/src/com/android/incallui/
InCallContactInteractionsTest.java 55 .heading);
66 .heading);
77 .heading);
91 .heading);
105 .heading);
116 .heading);
127 .heading);
138 .heading);
241 assertEquals("0.8 mi away", info.heading);
251 assertEquals("1.2 km away", info.heading);
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/java/
Hmc5883lSample.java 53 System.out.println("Heading: " + compas.heading() + " Direction:" + compas.direction());
  /hardware/bsp/intel/peripheral/libupm/src/lsm303/
lsm303.cxx 74 float heading = 180.0 * atan2(double(coor[Y]), double(coor[X]))/M_PI; local
76 if (heading < 0.0)
77 heading += 360.0;
79 return heading;
  /hardware/bsp/intel/peripheral/libupm/src/lsm303d/
lsm303d.cxx 92 float heading = 180.0 * atan2(double(coor[Y]), double(coor[X]))/M_PI; local
94 if (heading < 0.0)
95 heading += 360.0;
97 return heading;
  /hardware/invensense/6515/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 65 float inv_heading_accuracy_check(float orient[3], float *heading, int8_t *accuracy);
  /hardware/invensense/65xx/libsensors_iio/software/core/mpl/
quat_accuracy_monitor.h 65 float inv_heading_accuracy_check(float orient[3], float *heading, int8_t *accuracy);
  /packages/apps/Camera2/src/com/android/camera/one/
OneCamera.java 332 /** The heading of the device at time of capture. In degrees. */
333 public final int heading; field in class:OneCamera.PhotoCaptureParameters
341 int heading, float zoom, float timerSeconds) {
345 this.heading = heading;
  /external/icu/icu4c/source/common/
rbbidata.h 162 void printTable(const char *heading, const RBBIStateTable *table);
165 #define printTable(heading, table)
  /frameworks/support/v4/api21/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatApi21.java 49 int columnSpan, boolean heading, boolean selected) {
51 columnSpan, heading, selected);
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallContactInteractions.java 129 * @return BusinessContextInfo object with the schedule icon, the heading set to whether the
181 hoursInfo.heading = isOpenNow ? mContext.getString(R.string.open_now)
263 * @return A BusinessContextInfo object with the location icon, the heading as the distance to
282 locationInfo.heading = mContext.getString(R.string.distance_imperial_away,
285 locationInfo.heading = mContext.getString(R.string.distance_metric_away,
317 String heading; field in class:InCallContactInteractions.BusinessContextInfo
323 TextView headingTextView = (TextView) listItem.findViewById(R.id.heading);
326 if (this.iconId == 0 || (this.heading == null && this.detail == null)) {
332 headingTextView.setText(this.heading);
333 headingTextView.setVisibility(TextUtils.isEmpty(this.heading)
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
support.py 81 heading = self.isSectionHeading(line)
82 if heading:
83 if data and heading == self.newTestHeading:
88 key = heading
96 """If the current heading is a test section heading return the heading,
  /frameworks/wilhelm/src/itf/
I3DLocation.c 189 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll)
193 if (!((-360000 <= heading) && (heading <= 360000) &&
200 thiz->mOrientationAngles.mHeading = heading;
I3DMacroscopic.c 70 SLmillidegree heading, SLmillidegree pitch, SLmillidegree roll)
74 if (!((-360000 <= heading) && (heading <= 360000) &&
81 thiz->mOrientationAngles.mHeading = heading;
  /frameworks/base/core/java/com/android/internal/alsa/
AlsaDevicesParser.java 279 public void Log(String heading) {
281 Slog.i(TAG, heading);
  /frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatKitKat.java 69 int columnSpan, boolean heading) {
71 columnSpan, heading);
  /external/toybox/kconfig/
mconf.c 773 char *heading; local
777 heading = (char *)_(inputbox_instructions_int);
780 heading = (char *)_(inputbox_instructions_hex);
783 heading = (char *)_(inputbox_instructions_string);
786 heading = "Internal mconf error!";
790 heading, 10, 75,
  /toolchain/binutils/binutils-2.25/etc/
add-log.el 217 (let ((heading (format "%s %s <%s>"
221 (if (looking-at (regexp-quote heading))
223 (insert heading "\n\n")))

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 9