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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/svg/graphics/filters/
SVGLightSource.cpp 32 static TextStream& operator<<(TextStream& ts, const FloatPoint3D& p)
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 << "[position=\"" << position() << "\"]"
    [all...]
SVGFEFlood.cpp 80 TextStream& FEFlood::externalRepresentation(TextStream& ts) const
82 ts << "[type=FLOOD] ";
83 FilterEffect::externalRepresentation(ts);
84 ts << " [color=" << floodColor() << "]"
86 return ts;
SVGFETurbulence.cpp 117 static TextStream& operator<<(TextStream& ts, TurbulanceType t)
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...]
  /bionic/libc/unistd/
usleep.c 33 struct timespec ts; local
35 ts.tv_sec = usec/1000000UL;
39 ts.tv_nsec = (usec - ts.tv_sec*1000000UL)*1000;
41 ts.tv_nsec = (usec % 1000000UL) * 1000UL;
46 if ( nanosleep( &ts, &ts ) == 0 )
  /cts/tools/host/src/com/android/cts/
SessionObserver.java 20 public void notifyFinished(TestSession ts);
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TransformerClient.java 40 * @param ts A reference to a TransformState object
42 void setTransformState(TransformState ts);
  /external/webkit/WebCore/rendering/
SVGRenderTreeAsText.cpp 75 TextStream& operator<<(TextStream& ts, TextStreamSeparator& sep)
78 ts << sep.m_separator;
81 return ts;
85 static void writeNameValuePair(TextStream& ts, const char* name, ValueType value)
87 ts << " [" << name << "=" << value << "]";
91 static void writeNameAndQuotedValue(TextStream& ts, const char* name, ValueType value)
93 ts << " [" << name << "=\"" << value << "\"]";
96 static void writeIfNotEmpty(TextStream& ts, const char* name, const String& value)
99 writeNameValuePair(ts, name, value);
103 static void writeIfNotDefault(TextStream& ts, const char* name, ValueType value, ValueType defaultValue
    [all...]
SVGRenderTreeAsText.h 73 TextStream& operator<<(TextStream& ts, const Vector<Item*>& v)
75 ts << "[";
78 ts << *v[i];
80 ts << ", ";
83 ts << "]";
84 return ts;
88 TextStream& operator<<(TextStream& ts, const Vector<Item>& v)
90 ts << "[";
93 ts << v[i];
95 ts << ", ";
    [all...]
RenderTreeAsText.cpp 76 static TextStream &operator<<(TextStream& ts, const IntRect& r)
78 return ts << "at (" << r.x() << "," << r.y() << ") size " << r.width() << "x" << r.height();
82 static void writeIndent(TextStream& ts, int indent)
85 ts << " ";
88 static void printBorderStyle(TextStream& ts, const EBorderStyle borderStyle)
92 ts << "none";
95 ts << "hidden";
98 ts << "inset";
101 ts << "groove";
104 ts << "ridge"
    [all...]
  /device/samsung/crespo/alsa-lib/src/pcm/
atomic.c 30 struct timespec ts; local
38 ts.tv_sec = 0;
39 ts.tv_nsec = SPIN_SLEEP_DURATION;
40 nanosleep(&ts, NULL);
  /system/extras/tests/bionic/libc/other/
test_timer_create3.c 47 struct itimerspec ts; local
56 ts.it_value.tv_sec = 0;
57 ts.it_value.tv_nsec = 0;
58 ts.it_interval.tv_sec = 1;
59 ts.it_interval.tv_nsec = 0;
60 timer_settime(tid, TIMER_ABSTIME, &ts, NULL);
69 struct itimerspec ts, ots; local
82 ts.it_value.tv_sec = 0;
83 ts.it_value.tv_nsec = 1;
84 ts.it_interval.tv_sec = seconds
    [all...]
test_thread_max.c 51 struct timespec ts; local
57 ts.tv_sec = 0;
58 ts.tv_nsec = 0.002*1e9;
59 nanosleep( &ts, &ts );
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerLinearGradient.cpp 63 TextStream& SVGPaintServerLinearGradient::externalRepresentation(TextStream& ts) const
65 ts << "[type=LINEAR-GRADIENT] ";
66 SVGPaintServerGradient::externalRepresentation(ts);
67 ts << " [start=" << gradientStart() << "]"
69 return ts;
SVGPaintServerRadialGradient.cpp 75 TextStream& SVGPaintServerRadialGradient::externalRepresentation(TextStream& ts) const
77 ts << "[type=RADIAL-GRADIENT] ";
78 SVGPaintServerGradient::externalRepresentation(ts);
79 ts << " [center=" << gradientCenter() << "]"
82 return ts;
SVGResourceClipper.cpp 129 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)
140 ts << "NON-ZERO"; break;
142 ts << "EVEN-ODD"; break;
145 return ts;
148 TextStream& operator<<(TextStream& ts, const ClipData& d)
150 ts << "[winding=" << d.windRule << "]"
    [all...]
  /cts/tests/src/android/app/cts/
LaunchpadTabActivity.java 37 final TabHost.TabSpec ts = th.newTabSpec("1"); local
38 ts.setIndicator("One");
39 ts.setContent(tabIntent);
40 th.addTab(ts);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadTabActivity.java 37 TabHost.TabSpec ts = th.newTabSpec("1"); local
38 ts.setIndicator("One");
39 ts.setContent(tabIntent);
40 th.addTab(ts);
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.cpp 385 static void writeIndent(TextStream& ts, int indent)
388 ts << " ";
391 void GraphicsLayer::dumpLayer(TextStream& ts, int indent) const
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, int indent) cons
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TimeStampParser.java 85 float ts = Float.parseFloat(s); local
86 timeStamp.setTimeStamp(ts);
88 long ts = Long.parseLong(firstNumber); local
89 timeStamp.setTime(ts);
110 float ts = Float.parseFloat(s); local
111 timeStamp.setDelay(ts);
113 int ts = Integer.parseInt(firstNumber); local
114 timeStamp.setDelay(ts);
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 42 struct timespec ts; local
55 ts.tv_sec = 0;
56 ts.tv_nsec = 300000000 + ((int)arg)*50000000;
57 nanosleep( &ts, &ts );
59 clock_gettime( clock, &ts );
60 fprintf(stderr, "thread %08lx: clock_gettime() returned %g nsecs\n", self, ts.tv_sec*1e9 + ts.tv_nsec);
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 35 TreeSet ts; field in class:OldTreeSetTest
105 ts.add(new Integer(-8));
106 assertTrue("Failed to add Object", ts.contains(new Integer(-8)));
107 ts.add(objArray[0]);
108 assertTrue("Added existing element", ts.size() == objArray.length + 1);
115 ts.add("Wrong element");
135 s.addAll(ts);
136 assertTrue("Incorrect size after add", s.size() == ts.size());
137 Iterator i = ts.iterator();
172 ts.first() == objArray[0])
    [all...]
  /bionic/libc/string/
strtotimeval.c 33 char * strtotimeval (const char *str, struct timeval *ts)
39 ts->tv_sec = strtoumax(str, &s, 10);
61 ts->tv_usec = fs;
  /external/chromium/third_party/icu/source/test/compat/
tzdate.c 111 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/icu4c/test/compat/
tzdate.c 111 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/
struct3.c 15 static test_structure_3 struct3(test_structure_3 ts)
17 ts.si = -(ts.si*2);
19 return ts;

Completed in 595 milliseconds

1 2 3 4 5 6 7 8 91011>>