Home
last modified time | relevance | path

Searched refs:Cacheable (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/ability/idl_tool/test/sa_test/keyword_cacheable_test_003/target_cpp/
H A Dfail_output.txt2 [IDL-GEN]: [ParseAttrUnit:405] [IFoo.idl:17:3] error:Cacheable time parse failed
4 [IDL-GEN]: [ParseAttrUnit:405] [IFoo.idl:18:6] error:Cacheable time parse failed
6 [IDL-GEN]: [ParseAttrUnit:405] [IFoo.idl:20:3] error:Cacheable time parse failed
8 [IDL-GEN]: [ParseAttrUnit:405] [IFoo.idl:21:3] error:Cacheable time parse failed
9 [IDL-GEN]: [ParseAttrUnit:405] [IFoo.idl:22:3] error:Cacheable time parse failed
/ohos5.0/commonlibrary/rust/ylong_json/src/
H A Dstates.rs14 use crate::reader::Cacheable;
75 pub(crate) fn check_recursion<R: Cacheable>( in check_recursion()
86 pub(crate) fn start_parsing<R: Cacheable>( in start_parsing()
198 pub(crate) fn parse_string<R: Cacheable>( in parse_string()
207 pub(crate) fn parse_string<R: Cacheable>( in parse_string()
270 fn parse_escape_character<R: Cacheable>( in parse_escape_character()
297 fn parse_unicode<R: Cacheable>( in parse_unicode()
319 fn get_next_four_digits<R: Cacheable>( in parse_unicode()
352 pub(crate) fn parse_number<R: Cacheable>( in parse_number()
484 pub(crate) fn read_error_char<R: Cacheable>( in read_error_char()
[all …]
H A Ddeserializer.rs46 R: BytesReader + Cacheable,
54 R: BytesReader + Cacheable,
182 R: BytesReader + Cacheable,
254 R: BytesReader + Cacheable,
638 R: BytesReader + Cacheable,
646 R: BytesReader + Cacheable,
658 R: BytesReader + Cacheable,
703 R: BytesReader + Cacheable,
772 R: BytesReader + Cacheable,
779 R: BytesReader + Cacheable,
[all …]
/ohos5.0/commonlibrary/rust/ylong_json/src/reader/
H A Dslice_reader.rs14 use super::{BytesReader, Cacheable, NBytesReadable, Position, RemainderCountable};
104 impl<'a> Cacheable for SliceReader<'a> {
184 use super::{BytesReader, Cacheable, NBytesReadable, RemainderCountable, SliceReader};
H A Dio_reader.rs14 use super::{BytesReader, Cacheable, Position};
187 impl<R: Read> Cacheable for IoReader<R> {
226 use super::{BytesReader, Cacheable, IoReader};
H A Dmod.rs46 pub(crate) trait Cacheable: BytesReader { interface