Home
last modified time | relevance | path

Searched refs:IsPrint (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/utils/
Dostreams.cc124 bool IsPrint(uint16_t c) { return 0x20 <= c && c <= 0x7E; } in IsPrint() function
126 bool IsOK(uint16_t c) { return (IsPrint(c) || IsSpace(c)) && c != '\\'; } in IsOK()
168 return PrintUC16(os, c.value, IsPrint); in operator <<()
172 return PrintUC32(os, c.value, IsPrint); in operator <<()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Ddebug_stripper.cc33 if (IsAssert(node) || IsCheckNumerics(node) || IsPrint(node)) { in Optimize()
55 } else if (IsCheckNumerics(node) || IsPrint(node)) { in Optimize()
Darithmetic_optimizer.cc3453 if (IsAssert(node) || IsPrint(node)) { in CanDedup()
/external/pdfium/core/fpdfapi/render/
Dcpdf_renderstatus.h83 bool IsPrint() const { return m_bPrint; } in IsPrint() function
Dcpdf_imagerenderer.cpp205 return m_pRenderStatus->IsPrint() && in NotDrawing()
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h129 bool IsPrint(const NodeDef& node);
Dop_types.cc392 bool IsPrint(const NodeDef& node) { in IsPrint() function