Home
last modified time | relevance | path

Searched refs:fpos (Results 1 – 25 of 80) sorted by relevance

1234

/external/llvm-project/libcxx/test/std/input.output/iostreams.base/fpos/fpos.operations/
Dfpos.pass.cpp32 static_assert(std::is_default_constructible <std::fpos<T> >::value, ""); in test_traits()
33 static_assert(std::is_copy_constructible <std::fpos<T> >::value, ""); in test_traits()
34 static_assert(std::is_copy_assignable <std::fpos<T> >::value, ""); in test_traits()
35 static_assert(std::is_destructible <std::fpos<T> >::value, ""); in test_traits()
36 static_assert(is_equality_comparable <std::fpos<T> >::value, ""); in test_traits()
39 std::is_trivially_copy_constructible<std::fpos<T> >::value, ""); in test_traits()
41 std::is_trivially_copy_assignable<std::fpos<T> >::value, ""); in test_traits()
43 std::is_trivially_destructible<std::fpos<T> >::value, ""); in test_traits()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DIntlTestDateFormatAPIC.java53 FieldPosition fpos = new FieldPosition(0); in TestNameHiding() local
62 strBuffer = dateFmt.format(dateObj, strBuffer, fpos); in TestNameHiding()
74 strBuffer = sdf.format(dateObj, strBuffer, fpos); in TestNameHiding()
76 strBuffer = sdf.format(new Date(0), strBuffer, fpos); in TestNameHiding()
92 strBuffer = fmt.format(numObj, strBuffer, fpos); in TestNameHiding()
104 strBuffer = fmt.format(numObj, strBuffer, fpos); in TestNameHiding()
108 strBuffer = fmt.format(1.41421, strBuffer, fpos); in TestNameHiding()
109 strBuffer = fmt.format(9876543, strBuffer, fpos); in TestNameHiding()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DIntlTestDateFormatAPIC.java56 FieldPosition fpos = new FieldPosition(0); in TestNameHiding() local
65 strBuffer = dateFmt.format(dateObj, strBuffer, fpos); in TestNameHiding()
77 strBuffer = sdf.format(dateObj, strBuffer, fpos); in TestNameHiding()
79 strBuffer = sdf.format(new Date(0), strBuffer, fpos); in TestNameHiding()
95 strBuffer = fmt.format(numObj, strBuffer, fpos); in TestNameHiding()
107 strBuffer = fmt.format(numObj, strBuffer, fpos); in TestNameHiding()
111 strBuffer = fmt.format(1.41421, strBuffer, fpos); in TestNameHiding()
112 strBuffer = fmt.format(9876543, strBuffer, fpos); in TestNameHiding()
/external/wpa_supplicant_8/src/ap/
Dtaxonomy.c87 char *fpos = fstr; in ie_to_string() local
116 *fpos = '\0'; in ie_to_string()
150 ret = os_snprintf(fpos, fend - fpos, in ie_to_string()
219 ret = os_snprintf(fpos, fend - fpos, "%s%d", sep, id); in ie_to_string()
221 if (os_snprintf_error(fend - fpos, ret)) in ie_to_string()
223 fpos += ret; in ie_to_string()
229 ret = os_snprintf(fpos, fend - fpos, "%s%s%s%s%s%s%s%s%s", in ie_to_string()
232 if (os_snprintf_error(fend - fpos, ret)) { in ie_to_string()
/external/icu/icu4c/source/test/intltest/
Dtchcfmt.cpp53 FieldPosition fpos(FieldPosition::DONT_CARE); in TestSimpleExample() local
60 fpos = 0; in TestSimpleExample()
62 res1 = form->format(i, str, fpos, status ); in TestSimpleExample()
185 FieldPosition fpos(FieldPosition::DONT_CARE); in TestComplexExample() local
212 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
272 fpos = 0; in TestComplexExample()
278 res2 = pattform->format(testArgs, 3, str, fpos, status ); in TestComplexExample()
369 fpos = 0; in TestComplexExample()
372 res1 = form_pat.format( arg_double, str, fpos ); in TestComplexExample()
377 fpos = 0; in TestComplexExample()
[all …]
Ddtfmapts.cpp290 FieldPosition fpos; in TestNameHiding() local
299 dateFmt->format(dateObj, str, fpos, status); in TestNameHiding()
314 sdf.format(dateObj, str, fpos, status); in TestNameHiding()
316 sdf.format((UDate)0, str, fpos); in TestNameHiding()
333 fmt->format(numObj, str, fpos, status); in TestNameHiding()
348 fmt.format(numObj, str, fpos, status); in TestNameHiding()
352 fmt.format(1.41421, str, fpos); in TestNameHiding()
353 fmt.format((int32_t)9876543, str, fpos); in TestNameHiding()
368 fmt.format(numObj, str, fpos, status); in TestNameHiding()
372 fmt.format(1.41421, str, fpos); in TestNameHiding()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMeasureFormat.java286 public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition fpos) { in format() argument
288 fpos.setBeginIndex(0); in format()
289 fpos.setEndIndex(0); in format()
300 formatMeasuresInternal(toAppendTo, fpos, measures); in format()
302 formatMeasuresInternal(toAppendTo, fpos, (Measure[]) obj); in format()
306 FormattedValueStringBuilderImpl.nextFieldPosition(result, fpos); in format()
311 if (prevLength > 0 && fpos.getEndIndex() != 0) { in format()
312 fpos.setBeginIndex(fpos.getBeginIndex() + prevLength); in format()
313 fpos.setEndIndex(fpos.getEndIndex() + prevLength); in format()
396 FieldPosition fpos, in formatMeasures() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMeasureFormat.java308 public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition fpos) { in format() argument
310 fpos.setBeginIndex(0); in format()
311 fpos.setEndIndex(0); in format()
322 formatMeasuresInternal(toAppendTo, fpos, measures); in format()
324 formatMeasuresInternal(toAppendTo, fpos, (Measure[]) obj); in format()
328 FormattedValueStringBuilderImpl.nextFieldPosition(result, fpos); in format()
333 if (prevLength > 0 && fpos.getEndIndex() != 0) { in format()
334 fpos.setBeginIndex(fpos.getBeginIndex() + prevLength); in format()
335 fpos.setEndIndex(fpos.getEndIndex() + prevLength); in format()
422 FieldPosition fpos, in formatMeasures() argument
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.intrinsics.promote.frag.out14 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
18 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
27 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
31 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
40 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
44 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
53 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
57 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
66 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
70 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
[all …]
Dhlsl.intrinsics.promote.outputs.frag.out9 0:37 fpos: direct index for structure ( uniform float)
10 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
97 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
113 0:37 fpos: direct index for structure ( uniform float)
114 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
201 …ctor of float f2, uniform 2-component vector of bool b2, uniform uint upos, uniform float fpos})
233 MemberName 17($Global) 9 "fpos"
/external/libcxx/include/
Diosfwd87 template <class state> class fpos;
88 typedef fpos<char_traits<char>::state_type> streampos;
89 typedef fpos<char_traits<wchar_t>::state_type> wstreampos;
189 template <class _State> class _LIBCPP_TEMPLATE_VIS fpos;
190 typedef fpos<mbstate_t> streampos;
191 typedef fpos<mbstate_t> wstreampos;
193 typedef fpos<mbstate_t> u8streampos;
196 typedef fpos<mbstate_t> u16streampos;
197 typedef fpos<mbstate_t> u32streampos;
/external/llvm-project/libcxx/include/
Diosfwd86 template <class state> class fpos;
87 typedef fpos<char_traits<char>::state_type> streampos;
88 typedef fpos<char_traits<wchar_t>::state_type> wstreampos;
188 template <class _State> class _LIBCPP_TEMPLATE_VIS fpos;
189 typedef fpos<mbstate_t> streampos;
190 typedef fpos<mbstate_t> wstreampos;
192 typedef fpos<mbstate_t> u8streampos;
195 typedef fpos<mbstate_t> u16streampos;
196 typedef fpos<mbstate_t> u32streampos;
/external/freetype/src/autofit/
Dafhints.c100 FT_Int fpos, in af_axis_hints_new_edge() argument
157 if ( top_to_bottom_hinting ? ( edge[-1].fpos > fpos ) in af_axis_hints_new_edge()
158 : ( edge[-1].fpos < fpos ) ) in af_axis_hints_new_edge()
163 if ( edge[-1].fpos == fpos && dir == axis->major_dir ) in af_axis_hints_new_edge()
1346 delta = edge->fpos - u; in af_glyph_hints_align_strong_points()
1361 delta = u - edge->fpos; in af_glyph_hints_align_strong_points()
1376 FT_Pos fpos; in af_glyph_hints_align_strong_points() local
1391 if ( edges[nn].fpos >= u ) in af_glyph_hints_align_strong_points()
1394 if ( edges[nn].fpos == u ) in af_glyph_hints_align_strong_points()
1407 fpos = edge->fpos; in af_glyph_hints_align_strong_points()
[all …]
Dafcjk.c1066 dist = seg->pos - edge->fpos; in af_cjk_hints_compute_edges()
1125 edge->fpos = seg->pos; in af_cjk_hints_compute_edges()
1225 edge_delta = edge->fpos - edge2->fpos; in af_cjk_hints_compute_edges()
1355 if ( FT_ABS( edge->fpos - blue->ref.org ) > in af_cjk_hints_compute_blue_edges()
1356 FT_ABS( edge->fpos - blue->shoot.org ) ) in af_cjk_hints_compute_blue_edges()
1361 dist = edge->fpos - compare->org; in af_cjk_hints_compute_blue_edges()
1648 stem_edge - hints->axis[dim].edges, stem_edge->fpos, in af_cjk_align_linked_edge()
1870 edge1 - edges, edge1->fpos, edge1->opos / 64.0, in af_cjk_hint_edges()
2168 if ( after->fpos == before->fpos ) in af_cjk_hint_edges()
2172 FT_MulDiv( edge->fpos - before->fpos, in af_cjk_hint_edges()
[all …]
/external/icu/icu4c/source/samples/plurfmtsample/
Dplurfmtsample.cpp52 FieldPosition fpos = 0; in PluralFormatExample() local
55 msgfmtEn->format(argEn,2,msgEn,fpos,status); in PluralFormatExample()
56 msgfmtSl->format(argSl,2,msgSl,fpos,status); in PluralFormatExample()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DFormattedValueFieldPositionIteratorImpl.java44 FieldPosition fpos = attributes.get(i); in nextPosition() local
45 Format.Field field = fpos.getFieldAttribute(); in nextPosition()
52 int start = fpos.getBeginIndex(); in nextPosition()
53 int limit = fpos.getEndIndex(); in nextPosition()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DFormattedValueFieldPositionIteratorImpl.java42 FieldPosition fpos = attributes.get(i); in nextPosition() local
43 Format.Field field = fpos.getFieldAttribute(); in nextPosition()
50 int start = fpos.getBeginIndex(); in nextPosition()
51 int limit = fpos.getEndIndex(); in nextPosition()
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp109 fpos_t fpos = fpos_t(); in main() local
115 ((void)fpos); // Prevent unused warning in main()
160 static_assert((std::is_same<decltype(fgetpos(fp, &fpos)), int>::value), ""); in main()
164 static_assert((std::is_same<decltype(fsetpos(fp, &fpos)), int>::value), ""); in main()
/external/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp110 fpos_t fpos = fpos_t(); in main() local
116 ((void)fpos); // Prevent unused warning in main()
160 static_assert((std::is_same<decltype(fgetpos(fp, &fpos)), int>::value), ""); in main()
162 static_assert((std::is_same<decltype(fsetpos(fp, &fpos)), int>::value), ""); in main()
/external/deqp-deps/glslang/Test/
Dhlsl.intrinsics.promote.outputs.frag17 float fpos;
37 saturate(fpos);
/external/llvm-project/libcxx/test/std/input.output/file.streams/c.files/
Dcstdio.pass.cpp91 std::fpos_t fpos = std::fpos_t(); in main() local
97 ((void)fpos); // Prevent unused warning in main()
126 static_assert((std::is_same<decltype(std::fgetpos(fp, &fpos)), int>::value), ""); in main()
130 static_assert((std::is_same<decltype(std::fsetpos(fp, &fpos)), int>::value), ""); in main()
/external/libcxx/test/std/input.output/file.streams/c.files/
Dcstdio.pass.cpp92 std::fpos_t fpos = std::fpos_t(); in main() local
97 ((void)fpos); // Prevent unused warning in main()
124 static_assert((std::is_same<decltype(std::fgetpos(fp, &fpos)), int>::value), ""); in main()
126 static_assert((std::is_same<decltype(std::fsetpos(fp, &fpos)), int>::value), ""); in main()
/external/icu/icu4c/source/test/cintltst/
Dcdateintervalformattest.c338 UFieldPosition fpos = { locSkelItemPtr->fieldToCheck, 0, 0 }; in TestFPos_SkelWithSeconds() local
344 …ulen = udtitvfmt_format(udifmt, startTime, startTime + *deltasPtr, ubuf, kSizeUBuf, &fpos, &status… in TestFPos_SkelWithSeconds()
349fpos.beginIndex != expectedPtr->posBegin || fpos.endIndex != expectedPtr->posEnd ) { in TestFPos_SkelWithSeconds()
355 fpos.beginIndex, fpos.endIndex, bbuf); in TestFPos_SkelWithSeconds()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
DPercentile.java272 double fpos = FastMath.floor(pos); in evaluate() local
273 int intPos = (int) fpos; in evaluate()
274 double dif = pos - fpos; in evaluate()
/external/fastrpc/src/
Dapps_std_imp.c342 fpos_t fpos; in __QAIC_IMPL() local
347 if(0 == fgetpos(sinfo->u.stream, &fpos)) { in __QAIC_IMPL()
348 std_memmove(pos, &fpos, STD_MIN((int)sizeof(fpos), posLen)); in __QAIC_IMPL()
349 *posLenReq = sizeof(fpos); in __QAIC_IMPL()
364 fpos_t fpos; in __QAIC_IMPL() local
369 if(sizeof(fpos) != posLen) { in __QAIC_IMPL()
372 std_memmove(&fpos, pos, sizeof(fpos)); in __QAIC_IMPL()
373 if(0 == fsetpos(sinfo->u.stream, &fpos)) { in __QAIC_IMPL()

1234