Home
last modified time | relevance | path

Searched refs:Stack (Results 1 – 25 of 333) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DMsgPackDocument.cpp78 SmallVector<StackLevel, 4> Stack; in readFromBlob() local
82 Stack.push_back(StackLevel({Root, (size_t)-1, nullptr})); in readFromBlob()
89 if (Multi && Stack.size() == 1) { in readFromBlob()
127 if (Stack.empty()) in readFromBlob()
129 else if (Stack.back().Node.getKind() == Type::Array) { in readFromBlob()
131 auto &Array = Stack.back().Node.getArray(); in readFromBlob()
134 auto &Map = Stack.back().Node.getMap(); in readFromBlob()
135 if (!Stack.back().MapEntry) { in readFromBlob()
137 Stack.back().MapEntry = &Map[Node]; in readFromBlob()
140 *Stack.back().MapEntry = Node; in readFromBlob()
[all …]
/third_party/typescript/tests/baselines/reference/
DinfinitelyGenerativeInheritance1.symbols2 interface Stack<T> {
3 >Stack : Symbol(Stack, Decl(infinitelyGenerativeInheritance1.ts, 0, 0))
7 >pop : Symbol(Stack.pop, Decl(infinitelyGenerativeInheritance1.ts, 0, 20))
10 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
11 >zip : Symbol(Stack.zip, Decl(infinitelyGenerativeInheritance1.ts, 1, 14))
14 >Stack : Symbol(Stack, Decl(infinitelyGenerativeInheritance1.ts, 0, 0))
16 >Stack : Symbol(Stack, Decl(infinitelyGenerativeInheritance1.ts, 0, 0))
23 interface MyStack<T> extends Stack<T> {
26 >Stack : Symbol(Stack, Decl(infinitelyGenerativeInheritance1.ts, 0, 0))
29 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
[all …]
DinfinitelyGenerativeInheritance1.types2 interface Stack<T> {
6 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
7 >zip : <S>(a: Stack<S>) => Stack<{ x: T; y: S;}>
8 >a : Stack<S>
13 interface MyStack<T> extends Stack<T> {
14 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
15 >zip : <S>(a: Stack<S>) => Stack<{ x: T; y: S;}>
16 >a : Stack<S>
DinfinitelyGenerativeInheritance1.js2 interface Stack<T> {
4 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
7 interface MyStack<T> extends Stack<T> {
8 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
/third_party/googletest/googletest/test/
Dgoogletest-output-test-golden-lin.txt7 Stack trace: (omitted)
13 Stack trace: (omitted)
47 Stack trace: (omitted)
55 Stack trace: (omitted)
69 Stack trace: (omitted)
80 Stack trace: (omitted)
90 Stack trace: (omitted)
99 Stack trace: (omitted)
109 Stack trace: (omitted)
115 Stack trace: (omitted)
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dparent_data_test.dart54 Stack(
75 Stack(
104 Stack(
129 Stack(
154 Stack(
175 Stack(
200 Stack(
223 Stack(
246 Stack(textDirection: TextDirection.ltr)
254 Stack(
[all …]
Dmultichild_test.dart45 Stack(
58 Stack(
70 Stack(
83 Stack(
96 Stack(
109 Stack(
120 Stack(textDirection: TextDirection.ltr)
130 Stack(
143 Stack(
158 Stack(
[all …]
Dstack_test.dart21 testWidgets('Can construct an empty Stack', (WidgetTester tester) async {
25 child: Stack(),
30 testWidgets('Can construct an empty Centered Stack', (WidgetTester tester) async {
34 child: Center(child: Stack()),
43 Stack(
71 Stack(
101 Stack(
118 Stack(
142 child: Stack(
165 child: Stack(
[all …]
Dframework_test.dart66 await tester.pumpWidget(Stack(
96 await tester.pumpWidget(Stack(
111 await tester.pumpWidget(Stack(
141 await tester.pumpWidget(Stack(
147 await tester.pumpWidget(Stack(
170 await tester.pumpWidget(Stack(
176 await tester.pumpWidget(Stack(
199 await tester.pumpWidget(Stack(
205 await tester.pumpWidget(Stack(
217 await tester.pumpWidget(Stack(
[all …]
Dreparent_state_test.dart58 Stack(
85 Stack(
133 Stack(
156 Stack(
230 await tester.pumpWidget(Stack(
241 await tester.pumpWidget(Stack(
252 await tester.pumpWidget(Stack(
267 await tester.pumpWidget(Stack(
279 await tester.pumpWidget(Stack(
290 await tester.pumpWidget(Stack(
[all …]
Dsemantics_4_test.dart24 child: Stack(
34 child: Stack(
86 child: Stack(
96 child: Stack(
134 child: Stack(
141 child: Stack(
Danimated_positioned_test.dart29 Stack(
53 Stack(
113 child: Stack(
139 child: Stack(
199 child: Stack(
225 child: Stack(
283 Stack(
307 Stack(
331 Stack(
366 Stack(
[all …]
Dsemantics_9_test.dart17 await tester.pumpWidget(Stack(
36 await tester.pumpWidget(Stack(
55 await tester.pumpWidget(Directionality(textDirection: TextDirection.ltr, child: Stack(
65 child: Stack(
110 await tester.pumpWidget(Directionality(textDirection: TextDirection.ltr, child: Stack(
/third_party/typescript/tests/cases/compiler/
DinfinitelyGenerativeInheritance1.ts1 interface Stack<T> { interface
3 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
6 interface MyStack<T> extends Stack<T> {
7 zip<S>(a: Stack<S>): Stack<{ x: T; y: S }>
/third_party/skia/src/gpu/v1/
DClipStack.h103 using Stack = SkTBlockList<RawElement, 1>;
170 using Stack = SkTBlockList<Mask, 1>;
204 using Stack = SkTBlockList<SaveRecord, 2>;
240 bool addElement(RawElement&& toAdd, RawElement::Stack* elements);
247 void removeElements(RawElement::Stack* elements);
250 void restoreElements(RawElement::Stack* elements);
252 void invalidateMasks(GrProxyProvider* proxyProvider, Mask::Stack* masks);
257 bool appendElement(RawElement&& toAdd, RawElement::Stack* elements);
258 void replaceWithElement(RawElement&& toAdd, RawElement::Stack* elements);
296 static GrFPResult GetSWMaskFP(GrRecordingContext* context, Mask::Stack* masks,
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/
Dstack.rs43 pub struct Stack<T: Stackable>(*mut T::StackType); struct
45 unsafe impl<T: Stackable + Send> Send for Stack<T> {} implementation
46 unsafe impl<T: Stackable + Sync> Sync for Stack<T> {} implementation
48 impl<T> fmt::Debug for Stack<T> implementation
57 impl<T: Stackable> Drop for Stack<T> { implementation
66 impl<T: Stackable> Stack<T> { impl
67 pub fn new() -> Result<Stack<T>, ErrorStack> { in new()
71 Ok(Stack(ptr as *mut _)) in new()
76 impl<T: Stackable> iter::IntoIterator for Stack<T> { implementation
90 impl<T: Stackable> AsRef<StackRef<T>> for Stack<T> { implementation
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DJSON.cpp629 assert(Stack.back().Ctx != Object && "Only attributes allowed here"); in valueBegin()
630 if (Stack.back().HasValue) { in valueBegin()
631 assert(Stack.back().Ctx != Singleton && "Only one value allowed here"); in valueBegin()
634 if (Stack.back().Ctx == Array) in valueBegin()
636 Stack.back().HasValue = true; in valueBegin()
648 Stack.emplace_back(); in arrayBegin()
649 Stack.back().Ctx = Array; in arrayBegin()
655 assert(Stack.back().Ctx == Array); in arrayEnd()
657 if (Stack.back().HasValue) in arrayEnd()
660 Stack.pop_back(); in arrayEnd()
[all …]
DTimeProfiler.cpp67 Stack.emplace_back(steady_clock::now(), TimePointType(), std::move(Name), in begin()
72 assert(!Stack.empty() && "Must call begin() first"); in end()
73 auto &E = Stack.back(); in end()
95 if (std::find_if(++Stack.rbegin(), Stack.rend(), [&](const Entry &Val) { in end()
97 }) == Stack.rend()) { in end()
103 Stack.pop_back(); in end()
107 assert(Stack.empty() && in Write()
181 SmallVector<Entry, 16> Stack; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DPhiValues.cpp51 SmallVectorImpl<const PHINode *> &Stack) { in processPhi() argument
65 processPhi(PhiPhiOp, Stack); in processPhi()
79 Stack.push_back(Phi); in processPhi()
89 const PHINode *ComponentPhi = Stack.pop_back_val(); in processPhi()
108 if (Stack.empty()) in processPhi()
111 unsigned int &ComponentDepthNumber = DepthMap[Stack.back()]; in processPhi()
129 SmallVector<const PHINode *, 8> Stack; in getValuesForPhi() local
130 processPhi(PN, Stack); in getValuesForPhi()
132 assert(Stack.empty()); in getValuesForPhi()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAlwaysInlinePass.cpp59 SmallVector<User *, 16> Stack; in recursivelyVisitUsers() local
64 Stack.push_back(U); in recursivelyVisitUsers()
66 while (!Stack.empty()) { in recursivelyVisitUsers()
67 User *U = Stack.pop_back_val(); in recursivelyVisitUsers()
75 Stack.push_back(F); in recursivelyVisitUsers()
83 Stack.push_back(UU); in recursivelyVisitUsers()
DSILowerI1Copies.cpp140 SmallVector<MachineBasicBlock *, 4> Stack; member in __anona1077c7f0111::PhiIncomingAnalysis
156 assert(Stack.empty()); in analyze()
190 Stack.push_back(Succ); in analyze()
194 while (!Stack.empty()) { in analyze()
195 MachineBasicBlock *MBB = Stack.pop_back_val(); in analyze()
201 Stack.push_back(Succ); in analyze()
210 Stack.push_back(Pred); in analyze()
216 for (MachineBasicBlock *UnreachablePred : Stack) { in analyze()
221 Stack.clear(); in analyze()
280 SmallVector<MachineBasicBlock *, 4> Stack; member in __anona1077c7f0111::LoopFinder
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h843 std::stack<directory_iterator, std::vector<directory_iterator>> Stack; member
858 State->Stack.push(directory_iterator(path, ec)); in recursive_directory_iterator()
859 if (State->Stack.top() == directory_iterator()) in recursive_directory_iterator()
871 if ((ec = State->Stack.top()->status(st))) return *this; in increment()
873 State->Stack.push(directory_iterator(*State->Stack.top(), ec)); in increment()
875 if (State->Stack.top() != end_itr) { in increment()
879 State->Stack.pop(); in increment()
883 while (!State->Stack.empty() in increment()
884 && State->Stack.top().increment(ec) == end_itr) { in increment()
885 State->Stack.pop(); in increment()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/AggressiveInstCombine/
DTruncInstCombine.cpp66 SmallVector<Instruction *, 8> Stack; in buildTruncExpressionDag() local
84 if (!Stack.empty() && Stack.back() == I) { in buildTruncExpressionDag()
88 Stack.pop_back(); in buildTruncExpressionDag()
100 Stack.push_back(I); in buildTruncExpressionDag()
139 SmallVector<Instruction *, 8> Stack; in getMinBitWidth() local
169 if (!Stack.empty() && Stack.back() == I) { in getMinBitWidth()
173 Stack.pop_back(); in getMinBitWidth()
182 Stack.push_back(I); in getMinBitWidth()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFileSystem.h1333 std::stack<directory_iterator, std::vector<directory_iterator>> Stack; member
1352 State->Stack.push(directory_iterator(path, ec, Follow)); in State()
1353 if (State->Stack.top() == directory_iterator()) in State()
1364 file_type type = State->Stack.top()->type(); in increment()
1367 ErrorOr<basic_file_status> status = State->Stack.top()->status(); in increment()
1373 State->Stack.push(directory_iterator(*State->Stack.top(), ec, Follow)); in increment()
1374 if (State->Stack.top() != end_itr) { in increment()
1378 State->Stack.pop(); in increment()
1382 while (!State->Stack.empty() in increment()
1383 && State->Stack.top().increment(ec) == end_itr) { in increment()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DValueEnumerator.cpp172 UseListOrderStack &Stack) { in predictValueUseListOrderImpl() argument
233 Stack.emplace_back(V, F, List.size()); in predictValueUseListOrderImpl()
234 assert(List.size() == Stack.back().Shuffle.size() && "Wrong size"); in predictValueUseListOrderImpl()
236 Stack.back().Shuffle[I] = List[I].second; in predictValueUseListOrderImpl()
240 OrderMap &OM, UseListOrderStack &Stack) { in predictValueUseListOrder() argument
250 predictValueUseListOrderImpl(V, F, IDPair.first, OM, Stack); in predictValueUseListOrder()
257 predictValueUseListOrder(Op, F, OM, Stack); in predictValueUseListOrder()
268 UseListOrderStack Stack; in predictUseListOrder() local
278 predictValueUseListOrder(&BB, &F, OM, Stack); in predictUseListOrder()
280 predictValueUseListOrder(&A, &F, OM, Stack); in predictUseListOrder()
[all …]

12345678910>>...14