Home
last modified time | relevance | path

Searched refs:Prepend (Results 1 – 25 of 109) sorted by relevance

12345

/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua320 function mt:Prepend(flags, off) function
330 self:Prepend(flags, x)
364 function mt:PrependBool(x) self:Prepend(Bool, x) end
365 function mt:PrependByte(x) self:Prepend(Uint8, x) end
366 function mt:PrependUint8(x) self:Prepend(Uint8, x) end
367 function mt:PrependUint16(x) self:Prepend(Uint16, x) end
368 function mt:PrependUint32(x) self:Prepend(Uint32, x) end
369 function mt:PrependUint64(x) self:Prepend(Uint64, x) end
370 function mt:PrependInt8(x) self:Prepend(Int8, x) end
371 function mt:PrependInt16(x) self:Prepend(Int16, x) end
[all …]
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py560 def Prepend(self, flags, off): member in Builder
568 self.Prepend(flags, x)
627 self.Prepend(N.BoolFlags, x)
634 self.Prepend(N.Uint8Flags, x)
641 self.Prepend(N.Uint8Flags, x)
648 self.Prepend(N.Uint16Flags, x)
655 self.Prepend(N.Uint32Flags, x)
662 self.Prepend(N.Uint64Flags, x)
669 self.Prepend(N.Int8Flags, x)
676 self.Prepend(N.Int16Flags, x)
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/brkitr/rules/
Dchar.txt29 $Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
63 $Prepend [^$Control $CR $LF];
71 ^$Prepend* $Regional_Indicator $Regional_Indicator / $Regional_Indicator;
72 ^$Prepend* $Regional_Indicator $Regional_Indicator;
/third_party/icu/icu4c/source/data/brkitr/rules/
Dchar.txt24 $Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
65 $Prepend [^$Control $CR $LF];
76 ^$Prepend* $Regional_Indicator $Regional_Indicator / $Regional_Indicator;
77 ^$Prepend* $Regional_Indicator $Regional_Indicator;
/third_party/skia/third_party/externals/icu/source/data/brkitr/rules/
Dchar.txt24 $Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
65 $Prepend [^$Control $CR $LF];
76 ^$Prepend* $Regional_Indicator $Regional_Indicator / $Regional_Indicator;
77 ^$Prepend* $Regional_Indicator $Regional_Indicator;
/third_party/icu/icu4c/source/test/testdata/
DGraphemeBreakTest.txt37 ÷ 0020 ÷ 0600 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
38 …ther) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
75 ÷ 000D ÷ 0600 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
76 … (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
113 ÷ 000A ÷ 0600 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
114 … (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
151 ÷ 0001 ÷ 0600 ÷ # ÷ [0.2] <START OF HEADING> (Control) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
152 …trol) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
189 ÷ 034F ÷ 0600 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] ARABIC NUMBER SIGN (Prepend
190 …tend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]
[all …]
/third_party/typescript/tests/cases/compiler/
DramdaToolsNoInfinite.ts33 type Prepend<E, T extends any[]> = alias
39 0: Drop<N, Tail<T>, Prepend<any, I>>;
53 Prepend<any, I>;
68 0: Reverse<T, Prepend<T[Pos<I>], R>, Next<I>>;
DinfiniteConstraints.ts42 export type Prepend<Elm, T extends unknown[]> =
50 { 0: [T]; 1: Prepend<T, Conv<ExactExtract<U, T>>>;}[U extends T ? 0 : 1];
/third_party/typescript/tests/baselines/reference/
DramdaToolsNoInfinite.js33 type Prepend<E, T extends any[]> =
39 0: Drop<N, Tail<T>, Prepend<any, I>>;
53 Prepend<any, I>;
68 0: Reverse<T, Prepend<T[Pos<I>], R>, Next<I>>;
DinfiniteConstraints.types100 export type Prepend<Elm, T extends unknown[]> =
101 >Prepend : Prepend<Elm, T>
117 { 0: [T]; 1: Prepend<T, Conv<ExactExtract<U, T>>>;}[U extends T ? 0 : 1];
119 >1 : Prepend<T, Conv<ExactExtract<U, T>, ExactExtract<U, T>>>
DramdaToolsNoInfinite.types56 type Prepend<E, T extends any[]> =
57 >Prepend : [head: E, ...args: T]
70 0: Drop<N, Tail<T>, Prepend<any, I>>;
93 Prepend<any, I>;
118 0: Reverse<T, Prepend<T[Pos<I>], R>, Next<I>>;
DramdaToolsNoInfinite.symbols77 type Prepend<E, T extends any[]> =
78 >Prepend : Symbol(Prepend, Decl(ramdaToolsNoInfinite.ts, 29, 20))
102 0: Drop<N, Tail<T>, Prepend<any, I>>;
108 >Prepend : Symbol(Prepend, Decl(ramdaToolsNoInfinite.ts, 29, 20))
146 Prepend<any, I>;
147 >Prepend : Symbol(Prepend, Decl(ramdaToolsNoInfinite.ts, 29, 20))
193 0: Reverse<T, Prepend<T[Pos<I>], R>, Next<I>>;
197 >Prepend : Symbol(Prepend, Decl(ramdaToolsNoInfinite.ts, 29, 20))
DinfiniteConstraints.symbols143 export type Prepend<Elm, T extends unknown[]> =
144 >Prepend : Symbol(Prepend, Decl(infiniteConstraints.ts, 35, 88))
178 { 0: [T]; 1: Prepend<T, Conv<ExactExtract<U, T>>>;}[U extends T ? 0 : 1];
182 >Prepend : Symbol(Prepend, Decl(infiniteConstraints.ts, 35, 88))
DinfiniteConstraints.js41 export type Prepend<Elm, T extends unknown[]> =
49 { 0: [T]; 1: Prepend<T, Conv<ExactExtract<U, T>>>;}[U extends T ? 0 : 1];
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dgrapheme.txt24 Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
60 GB9b: Prepend .;
/third_party/icu/icu4c/source/test/testdata/break_rules/
Dgrapheme.txt24 Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
60 GB9b: Prepend .;
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/test/rbbi/break_rules/
Dgrapheme.txt24 Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
60 GB9b: Prepend .;
/third_party/skia/third_party/externals/dawn/src/common/
DSlabAllocator.cpp147 void SlabAllocatorImpl::SentinelSlab::Prepend(SlabAllocatorImpl::Slab* slab) { in Prepend() function in SlabAllocatorImpl::SentinelSlab
186 mFullSlabs.Prepend(slab); in Allocate()
209 mRecycledSlabs.Prepend(slab); in Deallocate()
245 mAvailableSlabs.Prepend(new (alignedPtr) Slab(allocation, node)); in GetNewSlab()
/third_party/boost/boost/hana/
Dprepend.hpp34 using Prepend = BOOST_HANA_DISPATCH_IF(prepend_impl<M>, in operator ()() typedef
43 return Prepend::apply(static_cast<Xs&&>(xs), static_cast<X&&>(x)); in operator ()()
/third_party/boost/libs/hana/include/boost/hana/
Dprepend.hpp34 using Prepend = BOOST_HANA_DISPATCH_IF(prepend_impl<M>, in operator ()() typedef
43 return Prepend::apply(static_cast<Xs&&>(xs), static_cast<X&&>(x)); in operator ()()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dcord_ring_test.cc315 ring = CordRepRing::Prepend(ring, MakeLeaf(flats[i])); in FromFlats()
323 ring = CordRepRing::Prepend(ring, MakeLeaf(flats[--middle1])); in FromFlats()
326 ring = CordRepRing::Prepend(ring, MakeLeaf(flats[middle1 - i])); in FromFlats()
675 CordRepRing* result = NeedsUnref(CordRepRing::Prepend(ring, MakeFlat(str2))); in TEST_P()
801 CordRepRing* result = NeedsUnref(CordRepRing::Prepend(ring, str2)); in TEST_P()
817 CordRepRing* result = NeedsUnref(CordRepRing::Prepend(ring, str2)); in TEST_P()
848 CordRepRing* result = NeedsUnref(CordRepRing::Prepend(ring, str2)); in TEST_P()
863 CordRepRing* result = NeedsUnref(CordRepRing::Prepend(ring, str2, 26)); in TEST_P()
865 result = CordRepRing::Prepend(result, str3); in TEST_P()
876 result = CordRepRing::Prepend(result, flats[4 - i]); in TEST_P()
[all …]
Dcordz_test.cc364 cord().Prepend(src); in TEST_P()
369 cord().Prepend(MakeString(TestCordSize::kSmall)); in TEST_P()
374 cord().Prepend(MakeString(TestCordSize::kLarge)); in TEST_P()
380 cord.Prepend(std::string(Length(GetParam()), '.')); in TEST_P()
388 cord.Prepend(std::string(Length(GetParam()), '.')); in TEST_P()
396 cord.Prepend(std::string(Length(GetParam()), '.')); in TEST_P()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcord_rep_btree_test.cc161 : CordRepBtree::Prepend(node, data); in BtreeAdd()
203 : CordRepBtree::Prepend(tree, MakeHexFlat(i)); in MakeTree()
220 while (++rit != flats.rend()) tree = CordRepBtree::Prepend(tree, *rit); in CreateTreeReverse()
394 auto* result = CordRepBtree::Prepend(leaf, flats.front()); in TEST_P()
417 result = CordRepBtree::Prepend(leaf, flats.front()); in TEST_P()
449 auto* result = CordRepBtree::Prepend(leaf, flat); in TEST_P()
527 tree = CordRepBtree::Prepend(tree, flats.front()); in TEST_P()
539 CordRepBtree* result = CordRepBtree::Prepend(tree, flats.front()); in TEST_P()
557 tree = CordRepBtree::Prepend(tree, flats.front()); in TEST_P()
570 CordRepBtree* result = CordRepBtree::Prepend(tree, flats.front()); in TEST_P()
[all …]
/third_party/abseil-cpp/absl/strings/
Dcord_test_helpers.h47 tmp.Prepend(result); in MakeFragmentedCord()
Dcord_test.cc581 self.Prepend(self); in TEST()
618 x.Prepend(y); in TEST()
624 x.Prepend(b); in TEST()
792 concat.Prepend(tmp); in TEST()
1394 reused_nodes_cord.Prepend(absl::Cord(std::string(40, 'b'))); in TEST()
1395 reused_nodes_cord.Prepend(absl::Cord(std::string(40, 'a'))); in TEST()
1398 reused_nodes_cord.Prepend(reused_nodes_cord); in TEST()
1406 for (int i = 0; i < 128; ++i) subcords.Prepend(flat_cord.Subcord(i, 128)); in TEST()
1534 reused_nodes_cord.Prepend(absl::Cord("def")); in TEST()
1535 reused_nodes_cord.Prepend(absl::Cord("abc")); in TEST()
[all …]

12345