Home
last modified time | relevance | path

Searched full:ref (Results 1 – 25 of 8606) sorted by relevance

12345678910>>...345

/third_party/boost/libs/beast/doc/html/
Dbeast_HTML.manifest4 beast/ref.html
5 beast/ref/boost__beast__async_base.html
6 beast/ref/boost__beast__async_base/executor_type.html
7 beast/ref/boost__beast__async_base/allocator_type.html
8 beast/ref/boost__beast__async_base/async_base.html
9 beast/ref/boost__beast__async_base/async_base/overload1.html
10 beast/ref/boost__beast__async_base/async_base/overload2.html
11 beast/ref/boost__beast__async_base/async_base/overload3.html
12 beast/ref/boost__beast__async_base/_async_base.html
13 beast/ref/boost__beast__async_base/operator_eq_.html
[all …]
/third_party/libxml2/doc/
Dlibxml2-refs.xml3590 <ref name='ATTRIBUTE_UNUSED'/>
3593 <ref name='BAD_CAST'/>
3594 <ref name='BASE_BUFFER_SIZE'/>
3597 <ref name='CAST_TO_BOOLEAN'/>
3598 <ref name='CAST_TO_NUMBER'/>
3599 <ref name='CAST_TO_STRING'/>
3600 <ref name='CHECK_ARITY'/>
3601 <ref name='CHECK_ERROR'/>
3602 <ref name='CHECK_ERROR0'/>
3603 <ref name='CHECK_TYPE'/>
[all …]
/third_party/boost/libs/static_string/doc/html/
Dstatic_string_HTML.manifest2 static_string/ref.html
3 static_string/ref/boost__static_strings__basic_static_string.html
4 static_string/ref/boost__static_strings__basic_static_string/traits_type.html
5 static_string/ref/boost__static_strings__basic_static_string/value_type.html
6 static_string/ref/boost__static_strings__basic_static_string/size_type.html
7 static_string/ref/boost__static_strings__basic_static_string/difference_type.html
8 static_string/ref/boost__static_strings__basic_static_string/pointer.html
9 static_string/ref/boost__static_strings__basic_static_string/reference.html
10 static_string/ref/boost__static_strings__basic_static_string/const_pointer.html
11 static_string/ref/boost__static_strings__basic_static_string/const_reference.html
[all …]
/third_party/libxml2/test/relaxng/
Ddocbook.rng7 <ref name="set"/>
8 <ref name="book"/>
9 <ref name="chapter"/>
10 <ref name="appendix"/>
11 <ref name="article"/>
12 <ref name="part"/>
13 <ref name="reference"/>
14 <ref name="refentry"/>
15 <ref name="section"/>
16 <ref name="sect1"/>
[all …]
DtutorA.rng6 <ref name="pattern"/>
16 <ref name="open-name-class"/>
18 <ref name="common-atts"/>
19 <ref name="open-patterns"/>
22 <ref name="common-atts"/>
27 <ref name="open-name-class"/>
30 <ref name="other"/>
32 <ref name="pattern"/>
37 <ref name="common-atts"/>
38 <ref name="open-patterns"/>
[all …]
Dambig_name-class.rng6 <ref name="pattern"/>
16 <ref name="open-name-class"/>
18 <ref name="common-atts"/>
19 <ref name="open-patterns"/>
22 <ref name="common-atts"/>
27 <ref name="open-name-class"/>
30 <ref name="other"/>
32 <ref name="pattern"/>
37 <ref name="common-atts"/>
38 <ref name="open-patterns"/>
[all …]
/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitivesWrappers.cs52 …internal static float? ReadFloatWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInter… in ReadFloatWrapperLittleEndian()
68 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
71 return ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
75 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
79 …internal static float? ReadFloatWrapperSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState… in ReadFloatWrapperSlow()
81 int length = ParsingPrimitives.ParseLength(ref buffer, ref state); in ReadFloatWrapperSlow()
91 if (ParsingPrimitives.ParseTag(ref buffer, ref state) == 13) in ReadFloatWrapperSlow()
93 result = ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperSlow()
97 ParsingPrimitivesMessages.SkipLastField(ref buffer, ref state); in ReadFloatWrapperSlow()
104 …internal static double? ReadDoubleWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInt… in ReadDoubleWrapperLittleEndian()
[all …]
DWritingPrimitives.cs56 … public static void WriteDouble(ref Span<byte> buffer, ref WriterInternalState state, double value) in WriteDouble()
58 … WriteRawLittleEndian64(ref buffer, ref state, (ulong)BitConverter.DoubleToInt64Bits(value)); in WriteDouble()
64 …public static unsafe void WriteFloat(ref Span<byte> buffer, ref WriterInternalState state, float v… in WriteFloat()
71 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloat()
81 WriteFloatSlowPath(ref buffer, ref state, value); in WriteFloat()
86 …private static unsafe void WriteFloatSlowPath(ref Span<byte> buffer, ref WriterInternalState state… in WriteFloatSlowPath()
92 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloatSlowPath()
98 WriteRawByte(ref buffer, ref state, floatSpan[0]); in WriteFloatSlowPath()
99 WriteRawByte(ref buffer, ref state, floatSpan[1]); in WriteFloatSlowPath()
100 WriteRawByte(ref buffer, ref state, floatSpan[2]); in WriteFloatSlowPath()
[all …]
DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength()
65 return (int)ParseRawVarint32(ref buffer, ref state); in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag()
105 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
111 if (SegmentedBufferHelper.IsAtEnd(ref buffer, ref state)) in ParseTag()
117 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
132 …public static bool MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, u… in MaybeConsumeTag()
134 if (PeekTag(ref buffer, ref state) == tag) in MaybeConsumeTag()
147 public static uint PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in PeekTag()
155 state.nextTag = ParseTag(ref buffer, ref state); in PeekTag()
[all …]
/third_party/e2fsprogs/tests/f_expand/
Dexpect.1.gz
/third_party/boost/libs/preprocessor/doc/
Dref.html4 <title>ref.html</title>
13 <li><a href="ref/add.html">ADD</a></li>
14 <li><a href="ref/add_d.html">ADD_D</a></li>
15 <li><a href="ref/and.html">AND</a></li>
16 <li><a href="ref/apply.html">APPLY</a></li>
17 <li><a href="ref/array_data.html">ARRAY_DATA</a></li>
18 <li><a href="ref/array_elem.html">ARRAY_ELEM</a></li>
19 <li><a href="ref/array_enum.html">ARRAY_ENUM</a></li>
20 <li><a href="ref/array_insert.html">ARRAY_INSERT</a></li>
21 <li><a href="ref/array_insert_d.html">ARRAY_INSERT_D</a></li>
[all …]
/third_party/ffmpeg/tests/ref/fate/
Dpixelutils1 [OK] [UU] SAD [random] 2x2=409 ref=409
2 [OK] [UU] SAD [random] 4x4=1370 ref=1370
3 [OK] [UU] SAD [random] 8x8=5178 ref=5178
4 [OK] [UU] SAD [random] 16x16=20946 ref=20946
5 [OK] [UU] SAD [random] 32x32=83150 ref=83150
6 [OK] [AU] SAD [random] 2x2=320 ref=320
7 [OK] [AU] SAD [random] 4x4=1522 ref=1522
8 [OK] [AU] SAD [random] 8x8=5821 ref=5821
9 [OK] [AU] SAD [random] 16x16=21951 ref=21951
10 [OK] [AU] SAD [random] 32x32=86983 ref=86983
[all …]
/third_party/boost/libs/regex/doc/html/
Dstandalone_HTML.manifest29 boost_regex/ref.html
30 boost_regex/ref/basic_regex.html
31 boost_regex/ref/match_results.html
32 boost_regex/ref/sub_match.html
33 boost_regex/ref/regex_match.html
34 boost_regex/ref/regex_search.html
35 boost_regex/ref/regex_replace.html
36 boost_regex/ref/regex_iterator.html
37 boost_regex/ref/regex_token_iterator.html
38 boost_regex/ref/bad_expression.html
[all …]
/third_party/typescript/tests/baselines/reference/
DnormalizedIntersectionTooComplex.types5 ref: T;
6 >ref : T
22 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
23 >"0" : { common?: string | undefined; "0"?: number | undefined; ref?: Obj<any> | Func<any> | undefi…
26ref : Obj<{ common?: string | undefined; "0"?: number | undefined; ref?: Obj<any> | Func<any> | un…
28 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
29 >"1" : { common?: string | undefined; "1"?: number | undefined; ref?: Obj<any> | Func<any> | undefi…
32ref : Obj<{ common?: string | undefined; "1"?: number | undefined; ref?: Obj<any> | Func<any> | un…
34 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
35 >"2" : { common?: string | undefined; "2"?: number | undefined; ref?: Obj<any> | Func<any> | undefi…
[all …]
/third_party/boost/libs/beast/doc/qbk/
Dquickref.xml26 <member><link linkend="beast.ref.boost__beast__async_base">async_base</link></member>
27 <member><link linkend="beast.ref.boost__beast__basic_stream">basic_stream</link></member>
28 <member><link linkend="beast.ref.boost__beast__file">file</link></member>
29 <member><link linkend="beast.ref.boost__beast__file_mode">file_mode</link></member>
30 <member><link linkend="beast.ref.boost__beast__file_posix">file_posix</link></member>
31 <member><link linkend="beast.ref.boost__beast__file_stdio">file_stdio</link></member>
32 <member><link linkend="beast.ref.boost__beast__file_win32">file_win32</link></member>
33 <member><link linkend="beast.ref.boost__beast__flat_stream">flat_stream</link></member>
34 <member><link linkend="beast.ref.boost__beast__iequal">iequal</link></member>
35 <member><link linkend="beast.ref.boost__beast__iless">iless</link></member>
[all …]
/third_party/boost/tools/quickbook/doc/
Dquickbook.qbk34 [def __comments__ [link quickbook.ref.comments Comments]]
36 [def __font_styles__ [link quickbook.ref.font_styles Font Styles]]
37 [def __quotations__ [link quickbook.ref.quotations Quotations]]
38 [def __replaceable__ [link quickbook.ref.replaceable Replaceble]]
39 [def __simple_formatting__ [link quickbook.ref.simple_formatting Simple formatting]]
40 [def __inline_code__ [link quickbook.ref.inline_code Inline code]]
41 [def __code_blocks__ [link quickbook.ref.code_blocks Code blocks]]
42 [def __source_mode__ [link quickbook.ref.source_mode Source Mode]]
43 [def __line_break__ [link quickbook.ref.line_break line-break]]
44 [def __anchors__ [link quickbook.ref.anchors Anchors]]
[all …]
/third_party/flutter/glfw/docs/
Dnews.dox10 GLFW now supports basic integration with Vulkan with @ref glfwVulkanSupported,
11 @ref glfwGetRequiredInstanceExtensions, @ref glfwGetInstanceProcAddress, @ref
12 glfwGetPhysicalDevicePresentationSupport and @ref glfwCreateWindowSurface.
14 [GLFW_INCLUDE_VULKAN](@ref build_macros).
21 @ref glfwSetWindowMonitor.
26 GLFW now supports window maximization with @ref glfwMaximizeWindow and the
27 [GLFW_MAXIMIZED](@ref window_attribs_wnd) window hint and attribute.
32 GLFW now supports giving windows input focus with @ref glfwFocusWindow.
38 @ref glfwSetWindowSizeLimits and @ref glfwSetWindowAspectRatio.
43 GLFW now supports querying the localized name of printable keys with @ref
[all …]
/third_party/e2fsprogs/tests/f_rebuild_csum_rootdir/
Dexpect.123 Inode 11 ref count is 3, should be 2. Fix? yes
28 Inode 12 ref count is 2, should be 1. Fix? yes
33 Inode 13 ref count is 2, should be 1. Fix? yes
38 Inode 14 ref count is 2, should be 1. Fix? yes
43 Inode 15 ref count is 2, should be 1. Fix? yes
48 Inode 16 ref count is 2, should be 1. Fix? yes
53 Inode 17 ref count is 2, should be 1. Fix? yes
58 Inode 18 ref count is 2, should be 1. Fix? yes
63 Inode 19 ref count is 2, should be 1. Fix? yes
68 Inode 20 ref count is 2, should be 1. Fix? yes
[all …]
/third_party/libxml2/
Dtriop.h20 * The ref pointer is an opaque type and should remain as such.
90 TRIO_CONST char *trio_get_format TRIO_PROTO((trio_pointer_t ref));
91 trio_pointer_t trio_get_argument TRIO_PROTO((trio_pointer_t ref));
94 int trio_get_width TRIO_PROTO((trio_pointer_t ref));
95 void trio_set_width TRIO_PROTO((trio_pointer_t ref, int width));
96 int trio_get_precision TRIO_PROTO((trio_pointer_t ref));
97 void trio_set_precision TRIO_PROTO((trio_pointer_t ref, int precision));
98 int trio_get_base TRIO_PROTO((trio_pointer_t ref));
99 void trio_set_base TRIO_PROTO((trio_pointer_t ref, int base));
100 int trio_get_padding TRIO_PROTO((trio_pointer_t ref));
[all …]
/third_party/boost/libs/beast/doc/html/beast/
Dindex.html35 <dd><dl><dt>async_base, <a class="indexterm" href="ref/boost__beast__async_base/_async_base.html">a…
38 <dd><dl><dt>http::basic_fields, <a class="indexterm" href="ref/boost__beast__http__basic_fields/_ba…
41 <dd><dl><dt>basic_flat_buffer, <a class="indexterm" href="ref/boost__beast__basic_flat_buffer/_basi…
44 <dd><dl><dt>basic_multi_buffer, <a class="indexterm" href="ref/boost__beast__basic_multi_buffer/_ba…
47 <dd><dl><dt>http::basic_parser, <a class="indexterm" href="ref/boost__beast__http__basic_parser/_ba…
50 <dd><dl><dt>basic_stream, <a class="indexterm" href="ref/boost__beast__basic_stream/_basic_stream.h…
53 <dd><dl><dt>file_posix, <a class="indexterm" href="ref/boost__beast__file_posix/_file_posix.html">f…
56 <dd><dl><dt>file_stdio, <a class="indexterm" href="ref/boost__beast__file_stdio/_file_stdio.html">f…
59 <dd><dl><dt>file_win32, <a class="indexterm" href="ref/boost__beast__file_win32/_file_win32.html">f…
62 <dd><dl><dt>flat_stream, <a class="indexterm" href="ref/boost__beast__flat_stream/_flat_stream.html…
[all …]
/third_party/boost/libs/yap/test/
Dcompile_term_plus_expr.cpp13 using ref = boost::yap::expression_ref<boost::yap::expression, T>; typedef
27 bh::tuple<ref<term<double> &>, ref<term<int> &>>> in compile_term_plus_expr()
32 ref<term<double> &>, in compile_term_plus_expr()
33 ref<yap::expression< in compile_term_plus_expr()
35 bh::tuple<ref<term<double> &>, ref<term<int> &>>> &>>> in compile_term_plus_expr()
45 bh::tuple<ref<term<double> &>, ref<term<int const> &>>> in compile_term_plus_expr()
50 ref<term<double> &>, in compile_term_plus_expr()
51 ref<yap::expression< in compile_term_plus_expr()
53 bh::tuple<ref<term<double> &>, ref<term<int const> &>>> &>>> in compile_term_plus_expr()
63 bh::tuple<ref<term<double> &>, term<int>>> in compile_term_plus_expr()
[all …]
Dderef.cpp17 using ref = boost::yap::expression_ref<boost::yap::expression, T>; typedef
46 bh::tuple<ref<term<double> &>, term<int>>>; in test_main()
51 ref<term<double> &> ref = bh::front(plus_expr.elements); in test_main() local
53 decltype(yap::deref(std::move(ref))), in test_main()
55 BOOST_CHECK(yap::value(ref) == 1.0); in test_main()
59 ref<term<double> &> ref = bh::front(plus_expr.elements); in test_main() local
61 (std::is_same<decltype(yap::deref(ref)), term<double> &>)); in test_main()
62 BOOST_CHECK(yap::value(ref) == 1.0); in test_main()
66 ref<term<double> &> const ref = bh::front(plus_expr.elements); in test_main() local
68 (std::is_same<decltype(yap::deref(ref)), term<double> &>)); in test_main()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DRefBaseTests.cpp112 using Ref = RefBase<RefTracker, RefTrackerTraits>; typedef
119 Ref ref(tracker1); in TEST() local
122 { ref.Acquire(tracker2); } in TEST()
123 EXPECT_THAT(events, testing::ElementsAre(Event{Action::kRelease, 1}, // release ref in TEST()
131 Ref ref(tracker); in TEST() local
134 { DAWN_UNUSED(ref.Detach()); } in TEST()
135 EXPECT_THAT(events, testing::ElementsAre(Event{Action::kAssign, 1, 0} // nullify ref in TEST()
140 Ref ref; in TEST() local
141 EXPECT_EQ(ref.Get(), RefTrackerTraits::kNullValue); in TEST()
150 Ref ref(tracker); in TEST() local
[all …]
/third_party/boost/libs/beast/test/extras/include/boost/beast/
Ddoc_debug.hpp90 @li type @ref doc_type
92 @li enum @ref doc_enum
94 @li enum item @ref doc_enum::one
96 @li enum_class @ref doc_enum_class
98 @li enum_class item @ref doc_enum_class::one
100 @li func @ref doc_func
102 @li class @ref doc_class
104 @li class func @ref doc_class::func
106 @li nested type @ref nested::nested_doc_type
108 @li nested enum @ref nested::nested_doc_enum
[all …]
/third_party/libxml2/doc/examples/
Dexamples.xml389 <ref filename='io1.c'/>
390 <ref filename='parse1.c'/>
391 <ref filename='parse2.c'/>
392 <ref filename='parse3.c'/>
393 <ref filename='parse4.c'/>
394 <ref filename='reader1.c'/>
397 <ref filename='testWriter.c'/>
400 <ref filename='tree1.c'/>
401 <ref filename='xpath1.c'/>
404 <ref filename='xpath1.c'/>
[all …]

12345678910>>...345