Searched refs:ts (Results 1 - 25 of 235) sorted by relevance

12345678910

/external/webkit/WebCore/svg/graphics/filters/
H A DSVGLightSource.cpp32 static TextStream& operator<<(TextStream& ts, const FloatPoint3D& p) argument
34 ts << "x=" << p.x() << " y=" << p.y() << " z=" << p.z();
35 return ts;
38 TextStream& PointLightSource::externalRepresentation(TextStream& ts) const
40 ts << "[type=POINT-LIGHT] ";
41 ts << "[position=\"" << position() << "\"]";
42 return ts;
45 TextStream& SpotLightSource::externalRepresentation(TextStream& ts) const
47 ts << "[type=SPOT-LIGHT] ";
48 ts << "[positio
[all...]
H A DSVGFEFlood.cpp80 TextStream& FEFlood::externalRepresentation(TextStream& ts) const
82 ts << "[type=FLOOD] ";
83 FilterEffect::externalRepresentation(ts);
84 ts << " [color=" << floodColor() << "]"
86 return ts;
H A DSVGFETurbulence.cpp117 static TextStream& operator<<(TextStream& ts, TurbulanceType t) argument
122 ts << "UNKNOWN"; break;
124 ts << "TURBULANCE"; break;
126 ts << "NOISE"; break;
128 return ts;
131 TextStream& FETurbulence::externalRepresentation(TextStream& ts) const
133 ts << "[type=TURBULENCE] ";
134 FilterEffect::externalRepresentation(ts);
135 ts << " [turbulence type=" << type() << "]"
141 return ts;
[all...]
H A DSVGFEImage.cpp69 TextStream& FEImage::externalRepresentation(TextStream& ts) const
71 ts << "[type=IMAGE] ";
72 FilterEffect::externalRepresentation(ts);
74 return ts;
H A DSVGFEConvolveMatrix.cpp145 static TextStream& operator<<(TextStream& ts, EdgeModeType t) argument
150 ts << "UNKNOWN";break;
152 ts << "DUPLICATE";break;
154 ts << "WRAP"; break;
156 ts << "NONE"; break;
158 return ts;
161 TextStream& FEConvolveMatrix::externalRepresentation(TextStream& ts) const
163 ts << "[type=CONVOLVE-MATRIX] ";
164 FilterEffect::externalRepresentation(ts);
165 ts << " [orde
[all...]
H A DSVGFEMerge.cpp90 TextStream& FEMerge::externalRepresentation(TextStream& ts) const
92 ts << "[type=MERGE] ";
93 FilterEffect::externalRepresentation(ts);
94 ts << "[merge inputs=[";
98 ts << m_mergeInputs[x];
101 ts << ", ";
103 ts << "]]";
104 return ts;
/external/webkit/WebCore/rendering/
H A DSVGRenderTreeAsText.cpp75 TextStream& operator<<(TextStream& ts, TextStreamSeparator& sep) argument
78 ts << sep.m_separator;
81 return ts;
85 static void writeNameValuePair(TextStream& ts, const char* name, ValueType value) argument
87 ts << " [" << name << "=" << value << "]";
91 static void writeNameAndQuotedValue(TextStream& ts, const char* name, ValueType value) argument
93 ts << " [" << name << "=\"" << value << "\"]";
96 static void writeIfNotEmpty(TextStream& ts, const char* name, const String& value) argument
99 writeNameValuePair(ts, name, value);
103 static void writeIfNotDefault(TextStream& ts, cons argument
109 operator <<(TextStream& ts, const IntPoint& p) argument
114 operator <<(TextStream& ts, const IntRect& r) argument
127 operator <<(TextStream& ts, const FloatRect &r) argument
152 operator <<(TextStream& ts, const FloatPoint& p) argument
167 operator <<(TextStream& ts, const FloatSize& s) argument
182 operator <<(TextStream& ts, const AffineTransform& transform) argument
198 operator <<(TextStream& ts, const Color& c) argument
203 writeIndent(TextStream& ts, int indent) argument
210 operator <<(TextStream& ts, const DashArray& a) argument
224 operator <<(TextStream& ts, LineCap style) argument
241 operator <<(TextStream& ts, LineJoin style) argument
257 writeStyle(TextStream& ts, const RenderObject& object) argument
311 writePositionAndStyle(TextStream& ts, const RenderObject& object) argument
318 operator <<(TextStream& ts, const RenderPath& path) argument
325 operator <<(TextStream& ts, const RenderSVGRoot& root) argument
330 writeRenderSVGTextBox(TextStream& ts, const RenderBlock& text) argument
362 writeSVGInlineTextBox(TextStream& ts, SVGInlineTextBox* textBox, int indent) argument
446 writeSVGInlineTextBoxes(TextStream& ts, const RenderText& text, int indent) argument
452 writeStandardPrefix(TextStream& ts, const RenderObject& object, int indent) argument
461 writeChildren(TextStream& ts, const RenderObject& object, int indent) argument
467 writeSVGContainer(TextStream& ts, const RenderObject& container, int indent) argument
475 write(TextStream& ts, const RenderSVGRoot& root, int indent) argument
482 writeSVGText(TextStream& ts, const RenderBlock& text, int indent) argument
490 writeSVGInlineText(TextStream& ts, const RenderText& text, int indent) argument
499 write(TextStream& ts, const RenderPath& path, int indent) argument
505 writeSVGImage(TextStream& ts, const RenderImage& image, int indent) argument
512 writeRenderResources(TextStream& ts, Node* parent) argument
[all...]
H A DSVGRenderTreeAsText.h73 TextStream& operator<<(TextStream& ts, const Vector<Item*>& v) argument
75 ts << "[";
78 ts << *v[i];
80 ts << ", ";
83 ts << "]";
84 return ts;
88 TextStream& operator<<(TextStream& ts, const Vector<Item>& v) argument
90 ts << "[";
93 ts << v[i];
95 ts << ", ";
103 operator <<(TextStream& ts, Pointer* t) argument
[all...]
H A DRenderTreeAsText.cpp76 static TextStream &operator<<(TextStream& ts, const IntRect& r) argument
78 return ts << "at (" << r.x() << "," << r.y() << ") size " << r.width() << "x" << r.height();
82 static void writeIndent(TextStream& ts, int indent) argument
85 ts << " ";
88 static void printBorderStyle(TextStream& ts, const EBorderStyle borderStyle) argument
92 ts << "none";
95 ts << "hidden";
98 ts << "inset";
101 ts << "groove";
104 ts << "ridg
181 operator <<(TextStream& ts, const RenderObject& o) argument
374 writeTextRun(TextStream& ts, const RenderText& o, const InlineTextBox& run) argument
391 write(TextStream& ts, const RenderObject& o, int indent) argument
458 write(TextStream& ts, RenderLayer& l, const IntRect& layerBounds, const IntRect& backgroundClipRect, const IntRect& clipRect, const IntRect& outlineClipRect, LayerPaintPhase paintPhase = LayerPaintPhaseAll, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal) argument
506 writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* l, const IntRect& paintDirtyRect, int indent, RenderAsTextBehavior behavior) argument
580 writeSelection(TextStream& ts, const RenderObject* o) argument
[all...]
/external/opencore/oscl/oscl/osclbase/src/
H A Doscl_time.inl113 return ((ts.tv_usec == 0) && (ts.tv_sec == 0));
118 return ts.tv_sec;
124 return ((ts.tv_usec / 1000) + (ts.tv_sec * 1000));
129 return ts.tv_usec;
144 this->ts.tv_usec = a.ts.tv_usec;
145 this->ts.tv_sec = a.ts
[all...]
/external/webkit/WebCore/svg/graphics/
H A DSVGPaintServerLinearGradient.cpp63 TextStream& SVGPaintServerLinearGradient::externalRepresentation(TextStream& ts) const
65 ts << "[type=LINEAR-GRADIENT] ";
66 SVGPaintServerGradient::externalRepresentation(ts);
67 ts << " [start=" << gradientStart() << "]"
69 return ts;
H A DSVGPaintServerRadialGradient.cpp75 TextStream& SVGPaintServerRadialGradient::externalRepresentation(TextStream& ts) const
77 ts << "[type=RADIAL-GRADIENT] ";
78 SVGPaintServerGradient::externalRepresentation(ts);
79 ts << " [center=" << gradientCenter() << "]"
82 return ts;
H A DSVGResourceClipper.cpp129 TextStream& SVGResourceClipper::externalRepresentation(TextStream& ts) const
131 ts << "[type=CLIPPER]";
132 ts << " [clip data=" << clipData().clipData() << "]";
133 return ts;
136 TextStream& operator<<(TextStream& ts, WindRule rule) argument
140 ts << "NON-ZERO"; break;
142 ts << "EVEN-ODD"; break;
145 return ts;
148 TextStream& operator<<(TextStream& ts, const ClipData& d) argument
150 ts << "[windin
[all...]
H A DSVGResourceMarker.cpp86 TextStream& SVGResourceMarker::externalRepresentation(TextStream& ts) const
88 ts << "[type=MARKER]"
92 ts << "auto" << "]";
94 ts << angle() << "]";
96 ts << " [ref x=" << m_referencePoint.x() << " y=" << m_referencePoint.y() << "]";
97 return ts;
/external/webkit/WebCore/platform/graphics/
H A DGraphicsLayer.cpp385 static void writeIndent(TextStream& ts, int indent) argument
388 ts << " ";
391 void GraphicsLayer::dumpLayer(TextStream& ts, int indent) const argument
393 writeIndent(ts, indent);
394 ts << "(" << "GraphicsLayer" << " " << static_cast<void*>(const_cast<GraphicsLayer*>(this));
395 ts << " \"" << m_name << "\"\n";
396 dumpProperties(ts, indent);
397 writeIndent(ts, indent);
398 ts << ")\n";
401 void GraphicsLayer::dumpProperties(TextStream& ts, in argument
[all...]
/external/icu4c/test/compat/
H A Dtzdate.c111 struct tm ts; local
115 ts = *localtime(&now);
118 memset(&ts, 0, sizeof(ts));
119 ts.tm_year = year;
120 ts.tm_mon = month - OFFSET_MONTH;
121 ts.tm_mday = day;
122 ts.tm_hour = hour;
123 ts.tm_min = minute;
125 now = mktime(&ts);
[all...]
/external/libffi/testsuite/libffi.call/
H A Dstruct3.c15 static test_structure_3 struct3(test_structure_3 ts) argument
17 ts.si = -(ts.si*2);
19 return ts;
H A Dstruct4.c17 static test_structure_4 struct4(test_structure_4 ts) argument
19 ts.ui3 = ts.ui1 * ts.ui2 * ts.ui3;
21 return ts;
/external/opencore/fileformats/mp4/composer/include/
H A Dmediaheaderatom.h57 void setTimeScale(uint32 ts) argument
59 _timeScale = ts;
87 void addSample(uint32 ts);
88 void updateLastTSEntry(uint32 ts);
/external/qemu/
H A Dqemu-thread.c51 static void timespec_add_ms(struct timespec *ts, uint64_t msecs) argument
53 ts->tv_sec = ts->tv_sec + (long)(msecs / 1000);
54 ts->tv_nsec = (ts->tv_nsec + ((long)msecs % 1000) * 1000000);
55 if (ts->tv_nsec >= 1000000000) {
56 ts->tv_nsec -= 1000000000;
57 ts->tv_sec++;
64 struct timespec ts; local
66 clock_gettime(CLOCK_REALTIME, &ts);
122 struct timespec ts; local
[all...]
H A Dqemu-timer.h25 void qemu_free_timer(QEMUTimer *ts);
26 void qemu_del_timer(QEMUTimer *ts);
27 void qemu_mod_timer(QEMUTimer *ts, int64_t expire_time);
28 int qemu_timer_pending(QEMUTimer *ts);
32 void qemu_get_timer(QEMUFile *f, QEMUTimer *ts);
33 void qemu_put_timer(QEMUFile *f, QEMUTimer *ts);
/external/blktrace/btt/
H A Daqd.c59 void aqd_issue(void *info, double ts) argument
64 fprintf(ap->fp, "%lf %d\n%lf %d\n", ts, ap->na, ts, ap->na + 1);
69 void aqd_complete(void *info, double ts) argument
76 ts, ap->na, ts, ap->na - 1);
/external/opencore/fileformats/mp4/composer/src/
H A Dmediaheaderatom.cpp67 PVA_FF_MediaHeaderAtom::addSample(uint32 ts) argument
69 _deltaTS = ts - _prevTS;
71 setDuration(ts);
73 _prevTS = ts;
80 PVA_FF_MediaHeaderAtom::updateLastTSEntry(uint32 ts) argument
83 setDuration(ts);
H A Dmediaatom.cpp68 uint32 ts,
73 _pmediaInformation->nextSample(mediaType, psample, size, ts,
75 _pmediaHeader->addSample(ts);
82 uint32 ts,
88 _pmediaInformation->nextTextSample(mediaType, psample, size, ts,
90 _pmediaHeader->addSample(ts);
97 uint32 ts,
102 _pmediaInformation->nextSample(mediaType, fragmentList, size, ts,
105 _pmediaHeader->addSample(ts);
112 uint32 ts,
65 nextSample(int32 mediaType, void *psample, uint32 size, uint32 ts, uint8 flags, uint32 baseOffset, bool oChunkStart) argument
79 nextTextSample(int32 mediaType, void *psample, uint32 size, uint32 ts, uint8 flags, int32 index, uint32 baseOffset, bool oChunkStart) argument
94 nextSample(int32 mediaType, Oscl_Vector <OsclMemoryFragment, OsclMemAllocator>& fragmentList, uint32 size, uint32 ts, uint8 flags, uint32 baseOffset, bool oChunkStart) argument
109 nextTextSample(int32 mediaType, Oscl_Vector <OsclMemoryFragment, OsclMemAllocator>& fragmentList, uint32 size, uint32 ts, uint8 flags, int32 index, uint32 baseOffset, bool oChunkStart) argument
136 updateLastTSEntry(uint32 ts) argument
[all...]
/external/qemu/tcg/
H A Dtcg.c289 TCGTemp *ts; local
300 ts = &s->temps[s->nb_globals];
301 ts->base_type = type;
302 ts->type = type;
303 ts->fixed_reg = 1;
304 ts->reg = reg;
305 ts->name = name;
332 TCGTemp *ts; local
340 ts = &s->temps[s->nb_globals];
341 ts
409 TCGTemp *ts; local
476 TCGTemp *ts; local
681 TCGTemp *ts; local
704 TCGTemp *ts; local
1066 TCGTemp *ts; local
1253 TCGTemp *ts; local
1292 TCGTemp *ts; local
1325 TCGTemp *ts; local
1339 TCGTemp *ts; local
1387 TCGTemp *ts; local
1432 TCGTemp *ts; local
1477 TCGTemp *ts, *ots; local
1541 TCGTemp *ts; local
1705 TCGTemp *ts; local
1995 TCGTemp *ts; local
[all...]

Completed in 365 milliseconds

12345678910