Home
last modified time | relevance | path

Searched refs:new_encoding (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/xml-rs/src/reader/parser/
Dinside_declaration.rs22 if let Some(new_encoding) = encoding.as_deref() { in emit_start_document()
23 let new_encoding = match new_encoding.parse() { in emit_start_document() localVariable
26 … Err(_) => return Some(self.error(SyntaxError::UnsupportedEncoding(new_encoding.into()))), in emit_start_document()
29 if current_encoding != new_encoding { in emit_start_document()
30 let set = match (current_encoding, new_encoding) { in emit_start_document()
34 … _ => return Some(self.error(SyntaxError::ConflictingEncoding(new_encoding, current_encoding))), in emit_start_document()
/aosp_15_r20/external/python/pyserial/serial/tools/
Dminiterm.py682 new_encoding = sys.stdin.readline().strip()
683 if new_encoding:
685 codecs.lookup(new_encoding)
687 sys.stderr.write('--- invalid encoding name: {}\n'.format(new_encoding))
689 self.set_rx_encoding(new_encoding)
690 self.set_tx_encoding(new_encoding)
/aosp_15_r20/external/skia/third_party/vello/src/
H A Dlib.rs210 fn new_encoding() -> Box<Encoding>; in new_encoding() function
264 encoding::{new_encoding, Encoding, RenderConfiguration},
H A Dencoding.rs23 pub(crate) fn new_encoding() -> Box<Encoding> { in new_encoding() function
/aosp_15_r20/external/skia/src/gpu/graphite/compute/
H A DVelloRenderer.cpp202 VelloScene::VelloScene() : fEncoding(vello_cpp::new_encoding()) {} in VelloScene()