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

1 2

  /external/v8/src/
ostreams.cc 52 bool IsPrint(uint16_t c) { return 0x20 <= c && c <= 0x7e; }
54 bool IsOK(uint16_t c) { return (IsPrint(c) || IsSpace(c)) && c != '\\'; }
100 return PrintUC16(os, c.value, IsPrint);
105 return PrintUC32(os, c.value, IsPrint);
  /prebuilts/go/darwin-x86/src/strconv/
makeisprint.go 10 // go run makeisprint.go -output isprint.go
25 var filename = flag.String("output", "isprint.go", "output file name")
64 func isPrint(r rune) bool {
93 if (i > max || !unicode.IsPrint(i)) && lo >= 0 {
95 if i+1 <= max && unicode.IsPrint(i+1) {
105 if lo < 0 && unicode.IsPrint(i) {
132 if isPrint(i) != unicode.IsPrint(i) {
133 log.Fatalf("%U: isPrint=%v, want %v\n", i, isPrint(i), unicode.IsPrint(i)
    [all...]
quote.go 5 //go:generate go run makeisprint.go -output isprint.go
59 if r < utf8.RuneSelf && IsPrint(r) {
63 } else if IsPrint(r) || graphicOnly && isInGraphicList(r) {
110 // IsPrint.
123 // non-ASCII characters and non-printable characters as defined by IsPrint.
149 // for control characters and non-printable characters as defined by IsPrint.
163 // by IsPrint.
459 // TODO: IsPrint is a local implementation of unicode.IsPrint, verified by the tests
465 // IsPrint reports whether the rune is defined as printable by Go, wit
    [all...]
quote_test.go 13 // Verify that our IsPrint agrees with unicode.IsPrint.
17 if IsPrint(r) != unicode.IsPrint(r) {
18 t.Errorf("IsPrint(%U)=%t incorrect", r, IsPrint(r))
example_test.go 171 c := strconv.IsPrint('\u263a')
174 bel := strconv.IsPrint('\007')
isprint.go 6 // go run makeisprint.go -output isprint.go
676 // isGraphic lists the graphic runes not matched by IsPrint.
  /prebuilts/go/linux-x86/src/strconv/
makeisprint.go 10 // go run makeisprint.go -output isprint.go
25 var filename = flag.String("output", "isprint.go", "output file name")
64 func isPrint(r rune) bool {
93 if (i > max || !unicode.IsPrint(i)) && lo >= 0 {
95 if i+1 <= max && unicode.IsPrint(i+1) {
105 if lo < 0 && unicode.IsPrint(i) {
132 if isPrint(i) != unicode.IsPrint(i) {
133 log.Fatalf("%U: isPrint=%v, want %v\n", i, isPrint(i), unicode.IsPrint(i)
    [all...]
quote.go 5 //go:generate go run makeisprint.go -output isprint.go
59 if r < utf8.RuneSelf && IsPrint(r) {
63 } else if IsPrint(r) || graphicOnly && isInGraphicList(r) {
110 // IsPrint.
123 // non-ASCII characters and non-printable characters as defined by IsPrint.
149 // for control characters and non-printable characters as defined by IsPrint.
163 // by IsPrint.
459 // TODO: IsPrint is a local implementation of unicode.IsPrint, verified by the tests
465 // IsPrint reports whether the rune is defined as printable by Go, wit
    [all...]
quote_test.go 13 // Verify that our IsPrint agrees with unicode.IsPrint.
17 if IsPrint(r) != unicode.IsPrint(r) {
18 t.Errorf("IsPrint(%U)=%t incorrect", r, IsPrint(r))
example_test.go 171 c := strconv.IsPrint('\u263a')
174 bel := strconv.IsPrint('\007')
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSymbol.h 220 @param IsPrint - Whether need to print
229 IN BOOLEAN IsPrint
EdbSymbol.c     [all...]
  /prebuilts/go/darwin-x86/src/unicode/
example_test.go 41 if unicode.IsPrint(c) {
44 if !unicode.IsPrint(c) {
graphic.go 45 // IsPrint reports whether the rune is defined as printable by Go. Such
50 func IsPrint(r rune) bool {
graphic_test.go 73 got := IsPrint(i)
  /prebuilts/go/linux-x86/src/unicode/
example_test.go 41 if unicode.IsPrint(c) {
44 if !unicode.IsPrint(c) {
graphic.go 45 // IsPrint reports whether the rune is defined as printable by Go. Such
50 func IsPrint(r rune) bool {
graphic_test.go 73 got := IsPrint(i)
  /prebuilts/go/darwin-x86/src/testing/
match.go 141 case !strconv.IsPrint(r):
  /prebuilts/go/linux-x86/src/testing/
match.go 141 case !strconv.IsPrint(r):
  /external/pdfium/core/fpdfapi/render/
cpdf_renderstatus.h 71 bool IsPrint() const { return m_bPrint; }
cpdf_imagerenderer.cpp 211 return m_pRenderStatus->IsPrint() &&
  /external/boringssl/src/util/
embed_test_data.go 49 if rune(b) > 127 || unicode.IsPrint(rune(b)) {
  /prebuilts/go/darwin-x86/src/regexp/syntax/
regexp.go 254 if unicode.IsPrint(r) {