Searched refs:heading (Results 1 - 25 of 32) sorted by relevance

12

/external/markdown/markdown/extensions/
H A Drss.py22 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()])
/external/webkit/Source/WebCore/page/
H A DCoordinates.h37 static PassRefPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
49 double heading() const { return m_heading; } function in class:WebCore::Coordinates
58 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
64 , m_heading(heading)
H A DGeolocationPosition.h41 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); } argument
50 double heading() const { return m_heading; } function in class:WebCore::GeolocationPosition
75 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
82 , m_heading(heading)
H A DCoordinates.idl34 readonly attribute [Custom] double heading;
H A DGeolocationPositionCache.cpp156 "heading REAL, "
177 providesHeading, statement.getColumnDouble(5), // heading
225 "heading, "
244 statement.bindDouble(6, cachedPosition->coords()->heading());
/external/chromium-trace/trace-viewer/src/tracks/
H A Dcpu_track.js45 get heading() {
49 set heading(h) {
69 track.heading = this.heading_;
77 track.heading = 'CPU ' + this.cpu_.cpuNumber + ' ' +
H A Dthread_track.js49 get heading() {
53 set heading(h) {
66 cpuTrack.heading = '';
118 track.heading = this.heading_;
H A Dprocess_track.js58 track.heading = counter.name + ':';
72 track.heading = thread.userFriendlyName + ':';
H A Dcanvas_based_track.js16 * A canvas-based track constructed. Provides the basic heading and
60 get heading() {
64 set heading(text) {
H A Dslice_group_track.js38 set heading(h) {
40 this.tracks_[0].heading = h;
H A Dmodel_track.js60 // Figure out the maximum heading size.
69 // Limit heading width to 300px.
87 track.heading = 'CPU ' + cpu.cpuNumber + ':';
/external/webkit/Source/WebCore/bindings/js/
H A DJSCoordinatesCustom.cpp51 JSValue JSCoordinates::heading(ExecState*) const function in class:WebCore::JSCoordinates
56 return jsNumber(imp->heading());
/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationPosition.cpp35 void WebGeolocationPosition::assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
37 m_private = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
/external/chromium/chrome/browser/ui/cocoa/
H A Dtab_view_picker_table.h28 @property(nonatomic, copy) NSString* heading; variable
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DNavCalculator.java297 public static Position computePosition(Position initialPos, double heading, argument
303 if (heading < 90) {
304 angle = heading;
305 } else if (heading > 90 && heading < 180) {
306 angle = 180 - heading;
307 } else if (heading > 180 && heading < 270) {
308 angle = heading - 180;
310 angle = 360 - heading;
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationPosition.h43 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) argument
45 assign(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed);
50 WEBKIT_API void assign(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed);
/external/icu4c/common/
H A Drbbidata.h160 void printTable(const char *heading, const RBBIStateTable *table);
163 #define printTable(heading, table)
H A Drbbidata.cpp213 void RBBIDataWrapper::printTable(const char *heading, const RBBIStateTable *table) { argument
217 RBBIDebugPrintf(" %s\n", heading);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DGeolocationClientQt.cpp80 double heading = geoPosition.attribute(QGeoPositionInfo::Direction); local
90 providesHeading, heading, providesSpeed, speed);
/external/chromium/chrome/browser/first_run/
H A Dtry_chrome_dialog_view.cc140 !experiment.heading) {
144 string16 heading = l10n_util::GetStringUTF16(experiment.heading); local
145 views::Label* label = new views::Label(heading);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CoordinatesCustom.cpp57 INC_STATS("DOM.Coordinates.heading._get");
62 return v8::Number::New(imp->heading());
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline_track.js103 track.heading = this.thread_.parent.pid + ': ' +
106 track.heading = '';
186 set heading(text) {
/external/webkit/Source/WebKit/android/jni/
H A DGeolocationServiceBridge.cpp143 // heading is optional and may not be supplied.
146 double heading = local
165 hasHeading, heading,
/external/chromium/chrome/browser/resources/ntp/
H A Dapps.css152 #apps-promo-heading {
/external/icu4c/test/intltest/
H A Drbbitst.cpp181 void checkResults(const char *heading, RBBITest *test);
182 void err(const char *heading, RBBITest *test, int32_t expectedIdx, int32_t actualIdx);
219 void BITestData::checkResults(const char *heading, RBBITest *test) { argument
233 err(heading, test, expectedIndex-1, actualIndex);
239 err(heading, test, expectedIndex, actualIndex-1);
245 err(heading, test, expectedIndex, actualIndex);
257 heading, fLineNum.elementAt(expectedIndex),
270 void BITestData::err(const char *heading, RBBITest *test, int32_t expectedIdx, int32_t actualIdx) argument
284 test->errln("%s unexpected break at offset %d in test item from line %d. actual break: %d expected break: %d", heading, o, line, actual, expected);
286 test->errln("%s Failed to find break at end of item from line %d. actual break: %d expected break: %d", heading, lin
[all...]

Completed in 541 milliseconds

12