Home
last modified time | relevance | path

Searched refs:h2 (Results 1 – 25 of 102) sorted by relevance

12345

/ohos5.0/docs/zh-cn/application-dev/web/
H A Dweb-fit-content.md70 <div><h2 id="使用场景">使用场景</h2>
82 <div><h2 id="能力范围">能力范围</h2>
101 <div><h2 id="约束与限制">约束与限制</h2>
/ohos5.0/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_execute_unit.cpp60 auto h2 = ffrt::submit_h([&]() { x += 4; }, {}, {}, ffrt::task_attr().delay(5)); in __anon316266890602() variable
61 int cancel_ret = ffrt::skip(h2);
72 auto h2 = ffrt::submit_h([&]() { x += 2; }, {&x}, {&x}, ffrt::task_attr().delay(1)); in __anon316266890c02() variable
73 int cancel_ret = ffrt::skip(h2);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-basic-richtext.md71 <p class="item-title">h2</p>
72 <h2>文本测试(h2测试)</h2>
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/
H A Dencoder.rs14 use crate::h2::hpack::representation::{ReprEncStateHolder, ReprEncodeState, ReprEncoder};
15 use crate::h2::hpack::table::{DynamicTable, Header};
16 use crate::h2::{Parts, PseudoHeaders};
67 use crate::h2::hpack::table::Header;
68 use crate::h2::hpack::HpackEncoder;
69 use crate::h2::Parts;
H A Dinteger.rs27 use crate::h2::error::ErrorCode;
28 use crate::h2::H2Error;
155 use crate::h2::hpack::integer::{IntegerDecoder, IntegerEncoder};
H A Ddecoder.rs16 use crate::h2::error::ErrorCode;
17 use crate::h2::hpack::representation::{
20 use crate::h2::hpack::table::{DynamicTable, Header, TableSearcher};
21 use crate::h2::{H2Error, Parts};
205 use crate::h2::hpack::table::Header;
206 use crate::h2::hpack::HpackDecoder;
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-basic-components-richtext.md72 | \<h1>--\<h6> | 被用来定义HTML,\<h1>定义重要等级最高的标题,\<h6>定义重要等级最低的标题。 | \<h1>这是一个标题\</h1>\<h2>这是h2标题\</h2> |
97 '<h2 style="text-align: center;">h2标题</h2>' +
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/buffer/
H A Dsettings.rs16 use ylong_http::h2::{Frame, H2Error};
18 use crate::util::h2::buffer::window::RecvWindow;
19 use crate::util::h2::buffer::SendWindow;
H A Dwindow.rs16 use ylong_http::h2::{ErrorCode, Frame, FrameFlags, H2Error, Payload, WindowUpdate};
47 if curr > crate::util::h2::MAX_FLOW_CONTROL_WINDOW as i32 { in increase_size()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-basic-richtext.md71 <p class="item-title">h2</p>
72 <h2>Text test (h2 test)</h2>
/ohos5.0/foundation/window/window_manager/resources/abc/pip/interface/
H A DPiPContent.js38 let h2;
39 (h2 = this.node) === null || h2 === void 0 ? void 0 : h2.removeChild(this.mXComponent);
/ohos5.0/docs/en/application-dev/web/
H A Dweb-fit-content.md70 <div><h2 id="When to use">When to use</h2>
82 <div><h2 id="Capabilities">Capabilities</h2>
101 <div><h2 id="Constraints">Constraints</h2>
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Dmod.rs39 pub(crate) mod h2; module
54 pub(crate) use h2::{split, Reader, Writer};
H A Ddispatcher.rs39 Self::Http2(h2) => h2.dispatch().map(Conn::Http2), in dispatch()
49 Self::Http2(h2) => h2.is_shutdown(), in is_shutdown()
159 use ylong_http::h2::{
170 use crate::util::h2::{
/ohos5.0/base/hiviewdfx/hiview/plugins/sysevent_source/control/config/include/
H A Ddaily_config.h29 auto h2 = std::hash<T2>{}(p.second); in operator()
30 return h1 ^ h2; in operator()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/
H A Dparts.rs14 use crate::h2::hpack::table::Header;
15 use crate::h2::pseudo::PseudoHeaders;
H A Ddecoder.rs18 use crate::h2;
19 use crate::h2::decoder::Stage::{Header, Payload};
20 use crate::h2::error::ErrorCode;
21 use crate::h2::frame::{
25 use crate::h2::{frame, HpackDecoder, Parts, Setting, Settings};
714 frame::Payload::Headers(h2::frame::Headers::new(headers)), in decode_headers_payload()
780 frame::Payload::PushPromise(h2::frame::PushPromise::new( in push_promise_framing()
888 use crate::h2::decoder::{get_setting, FrameDecoder, FrameHeader, FrameKind};
889 use crate::h2::frame::{Payload, Ping, Setting};
890 use crate::h2::{ErrorCode, H2Error, PseudoHeaders};
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/conn/
H A Dhttp2.rs21 use ylong_http::h2;
22 use ylong_http::h2::{ErrorCode, Frame, FrameFlags, H2Error, Payload, PseudoHeaders};
35 use crate::util::h2::{BodyDataRef, RequestWrapper};
132 let mut header_part = h2::Parts::new(); in build_headers_frame()
135 let headers_payload = h2::Headers::new(header_part); in build_headers_frame()
378 use ylong_http::h2::Payload;
449 use ylong_http::h2::{Data, Frame, FrameFlags}; in ut_http2_body_poll_read()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-basic-components-richtext.md72 …es the least important heading.| \<h1>This is an H1 heading\</h1> \<h2>This is an H2 heading\</h2>|
97 '<h2 style="text-align: center;">h2 heading</h2>' +
/ohos5.0/base/global/resource_management/frameworks/resmgr/include/
H A Dtheme_pack_resource.h52 std::size_t h2 = std::hash<std::string>()(theme.moduleName); in operator() local
56 return h1 ^ h2 ^ h3 ^ h4 ^ h5; in operator()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/
H A Dlib.rs28 pub mod h2; module
H A Derror.rs30 use crate::h2::H2Error;
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/h2/hpack/representation/
H A Ddecoder.rs16 use crate::h2::error::ErrorCode;
17 use crate::h2::hpack::integer::IntegerDecoder;
18 use crate::h2::hpack::representation::{Name, PrefixBit, Representation};
19 use crate::h2::H2Error;
H A Dencoder.rs17 use crate::h2::hpack::integer::IntegerEncoder;
18 use crate::h2::hpack::representation::PrefixIndexMask;
19 use crate::h2::hpack::table::{DynamicTable, Header, TableIndex, TableSearcher};
20 use crate::h2::{Parts, PseudoHeaders};
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
H A Ddata_ref.rs19 use ylong_http::h2::{ErrorCode, H2Error};

12345