Home
last modified time | relevance | path

Searched refs:allowUnicode (Results 1 – 2 of 2) sorted by relevance

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
DDumperOptions.java163 private boolean allowUnicode = true; field in DumperOptions
180 return allowUnicode; in isAllowUnicode()
193 public void setAllowUnicode(boolean allowUnicode) { in setAllowUnicode() argument
194 this.allowUnicode = allowUnicode; in setAllowUnicode()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
DEmitter.java136 private boolean allowUnicode; field in Emitter
189 this.allowUnicode = opts.isAllowUnicode(); in Emitter()
983 if (!this.allowUnicode) { in analyzeScalar()
1234 } else if (!this.allowUnicode || !StreamReader.isPrintable(ch)) { in writeDoubleQuoted()