Home
last modified time | relevance | path

Searched refs:yout (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DYAMLTraits.h1525 operator<<(Output &yout, T &docList) {
1527 yout.beginDocuments();
1528 const size_t count = DocumentListTraits<T>::size(yout, docList);
1530 if ( yout.preflightDocument(i) ) {
1531 yamlize(yout, DocumentListTraits<T>::element(yout, docList, i), true,
1533 yout.postflightDocument();
1536 yout.endDocuments();
1537 return yout;
1544 operator<<(Output &yout, T &map) {
1546 yout.beginDocuments();
[all …]
/external/pdfium/third_party/agg23/
Dagg_clip_liang_barsky.h68 float yin, yout; in clip_liang_barsky() local
71 yout = (float)clip_box.y2; in clip_liang_barsky()
74 yout = (float)clip_box.y1; in clip_liang_barsky()
93 float touty = (yout - y1) / deltay; in clip_liang_barsky()
113 *y++ = (T)yout; in clip_liang_barsky()
123 *y++ = (T)yout; in clip_liang_barsky()
/external/llvm/unittests/Support/
DYAMLIOTest.cpp216 Output yout(ostr); in TEST() local
217 yout << seq; in TEST()
362 Output yout(ostr); in TEST() local
363 yout << map; in TEST()
476 Output yout(ostr); in TEST() local
477 yout << map; in TEST()
582 Output yout(ostr); in TEST() local
583 yout << map; in TEST()
777 Output yout(ostr); in TEST() local
778 yout << map; in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DYAMLIOTest.cpp218 Output yout(ostr); in TEST() local
219 yout << seq; in TEST()
446 Output yout(ostr); in TEST() local
447 yout << map; in TEST()
560 Output yout(ostr); in TEST() local
561 yout << map; in TEST()
669 Output yout(ostr); in TEST() local
670 yout << map; in TEST()
865 Output yout(ostr); in TEST() local
866 yout << map; in TEST()
[all …]
/external/llvm/include/llvm/Support/
DYAMLTraits.h1298 operator<<(Output &yout, T &docList) {
1299 yout.beginDocuments();
1300 const size_t count = DocumentListTraits<T>::size(yout, docList);
1302 if ( yout.preflightDocument(i) ) {
1303 yamlize(yout, DocumentListTraits<T>::element(yout, docList, i), true);
1304 yout.postflightDocument();
1307 yout.endDocuments();
1308 return yout;
1315 operator<<(Output &yout, T &map) {
1316 yout.beginDocuments();
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DYAMLTraits.h1400 operator<<(Output &yout, T &docList) {
1402 yout.beginDocuments();
1403 const size_t count = DocumentListTraits<T>::size(yout, docList);
1405 if ( yout.preflightDocument(i) ) {
1406 yamlize(yout, DocumentListTraits<T>::element(yout, docList, i), true,
1408 yout.postflightDocument();
1411 yout.endDocuments();
1412 return yout;
1419 operator<<(Output &yout, T &map) {
1421 yout.beginDocuments();
[all …]
/external/llvm/tools/dsymutil/
DDebugMap.cpp88 yaml::Output yout(OS, /* Ctxt = */ nullptr, /* WrapColumn = */ 0); in print() local
89 yout << const_cast<DebugMap &>(*this); in print()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDebugMap.cpp110 yaml::Output yout(OS, /* Ctxt = */ nullptr, /* WrapColumn = */ 0); in print() local
111 yout << const_cast<DebugMap &>(*this); in print()
/external/pdfium/core/fxge/win32/
Dfx_win32_device.cpp250 float yin, yout; in clip_liang_barsky() local
253 yout = clip_box.y2; in clip_liang_barsky()
256 yout = clip_box.y1; in clip_liang_barsky()
275 float touty = (yout - y1) / deltay; in clip_liang_barsky()
295 *y++ = yout; in clip_liang_barsky()
305 *y++ = yout; in clip_liang_barsky()
/external/llvm/docs/
DYamlIO.rst155 Output yout(llvm::outs());
156 yout << persons;
941 Output yout(llvm::outs());
942 yout << info;
964 Output yout(llvm::outs());
965 yout << docList;
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DYamlIO.rst155 Output yout(llvm::outs());
156 yout << persons;
941 Output yout(llvm::outs());
942 yout << info;
964 Output yout(llvm::outs());
965 yout << docList;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DYAMLTraits.cpp420 Output::Output(raw_ostream &yout, void *context, int WrapColumn) in Output() argument
421 : IO(context), Out(yout), WrapColumn(WrapColumn) {} in Output()
/external/llvm/lib/Support/
DYAMLTraits.cpp399 Output::Output(raw_ostream &yout, void *context, int WrapColumn) in Output() argument
401 Out(yout), in Output()