| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
| D | MsgPackDocument.cpp | 78 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/ |
| D | infinitelyGenerativeInheritance1.symbols | 2 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 …]
|
| D | infinitelyGenerativeInheritance1.types | 2 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>
|
| D | infinitelyGenerativeInheritance1.js | 2 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/node/deps/v8/src/torque/ |
| D | instructions.cc | 37 void PeekInstruction::TypeInstruction(Stack<const Type*>* stack, in TypeInstruction() 52 Stack<DefinitionLocation>* locations, Worklist<Block*>* worklist) const { in RecomputeDefinitionLocations() 56 void PokeInstruction::TypeInstruction(Stack<const Type*>* stack, in TypeInstruction() 68 Stack<DefinitionLocation>* locations, Worklist<Block*>* worklist) const { in RecomputeDefinitionLocations() 72 void DeleteRangeInstruction::TypeInstruction(Stack<const Type*>* stack, in TypeInstruction() 78 Stack<DefinitionLocation>* locations, Worklist<Block*>* worklist) const { in RecomputeDefinitionLocations() 83 Stack<const Type*>* stack, ControlFlowGraph* cfg) const { in TypeInstruction() 88 Stack<DefinitionLocation>* locations, Worklist<Block*>* worklist) const { in RecomputeDefinitionLocations() 97 Stack<const Type*>* stack, ControlFlowGraph* cfg) const { in TypeInstruction() 102 Stack<DefinitionLocation>* locations, Worklist<Block*>* worklist) const { in RecomputeDefinitionLocations() [all …]
|
| D | cc-generator.cc | 17 base::Optional<Stack<std::string>> CCGenerator::EmitGraph( in EmitGraph() 18 Stack<std::string> parameters) { in EmitGraph() 38 base::Optional<Stack<std::string>> result; in EmitGraph() 51 Stack<std::string> CCGenerator::EmitBlock(const Block* block) { in EmitBlock() 55 Stack<std::string> stack; in EmitBlock() 86 Stack<std::string>* stack) { in EmitInstruction() 92 Stack<std::string>* stack) { in EmitInstruction() 98 Stack<std::string>* stack) { in EmitInstruction() 104 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack) { in ProcessArgumentsCommon() 125 Stack<std::string>* stack) { in EmitInstruction() [all …]
|
| D | cfg.h | 27 base::Optional<Stack<const Type*>> input_types, in Block() 39 const Stack<const Type*>& InputTypes() const { return *input_types_; } in InputTypes() 40 void SetInputTypes(const Stack<const Type*>& input_types); 42 Stack<const Type*> current_stack = InputTypes(); in Retype() 56 void MergeInputDefinitions(const Stack<DefinitionLocation>& input_definitions, in MergeInputDefinitions() 80 const Stack<DefinitionLocation>& InputDefinitions() const { in InputDefinitions() 90 base::Optional<Stack<const Type*>> input_types_; 91 base::Optional<Stack<DefinitionLocation>> input_definitions_; 98 explicit ControlFlowGraph(Stack<const Type*> input_types) { in ControlFlowGraph() 103 Block* NewBlock(base::Optional<Stack<const Type*>> input_types, in NewBlock() [all …]
|
| D | cc-generator.h | 19 base::Optional<Stack<std::string>> EmitGraph(Stack<std::string> parameters); 21 static void EmitCCValue(VisitResult result, const Stack<std::string>& values, 30 void EmitGoto(const Block* destination, Stack<std::string>* stack, 35 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack); 37 Stack<std::string> EmitBlock(const Block* block); 39 void EmitInstruction(const T& instruction, Stack<std::string>* stack) \
|
| D | csa-generator.h | 19 base::Optional<Stack<std::string>> EmitGraph(Stack<std::string> parameters); 23 static void EmitCSAValue(VisitResult result, const Stack<std::string>& values, 36 base::Optional<Block*> catch_block, Stack<std::string>* stack, 41 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack); 43 Stack<std::string> EmitBlock(const Block* block); 45 void EmitInstruction(const T& instruction, Stack<std::string>* stack) \
|
| D | csa-generator.cc | 17 base::Optional<Stack<std::string>> CSAGenerator::EmitGraph( in EmitGraph() 18 Stack<std::string> parameters) { in EmitGraph() 69 Stack<std::string> CSAGenerator::EmitBlock(const Block* block) { in EmitBlock() 70 Stack<std::string> stack; in EmitBlock() 104 Stack<std::string>* stack) { in EmitInstruction() 116 Stack<std::string>* stack) { in EmitInstruction() 126 Stack<std::string>* stack) { in EmitInstruction() 156 std::vector<std::string> constexpr_arguments, Stack<std::string>* stack) { in ProcessArgumentsCommon() 177 Stack<std::string>* stack) { in EmitInstruction() 183 Stack<std::string> pre_call_stack = *stack; in EmitInstruction() [all …]
|
| D | torque-code-generator.cc | 28 Stack<std::string>* stack) { in EmitInstruction() 48 Stack<std::string>* stack) { in EmitInstruction() 53 Stack<std::string>* stack) { in EmitInstruction() 59 const DeleteRangeInstruction& instruction, Stack<std::string>* stack) { in EmitInstruction()
|
| /third_party/node/deps/v8/src/heap/base/ |
| D | stack.cc | 17 using IterateStackCallback = void (*)(const Stack*, StackVisitor*, intptr_t*); 18 extern "C" void PushAllRegistersAndIterateStack(const Stack*, StackVisitor*, 21 Stack::Stack(const void* stack_start) : stack_start_(stack_start) {} in Stack() function in heap::base::Stack 23 void Stack::SetStackStart(const void* stack_start) { in SetStackStart() 27 bool Stack::IsOnStack(void* slot) const { in IsOnStack() 47 return v8::base::Stack::GetCurrentStackPosition() <= slot && in IsOnStack() 126 void IteratePointersImpl(const Stack* stack, StackVisitor* visitor, in IteratePointersImpl() 152 void Stack::IteratePointers(StackVisitor* visitor) const { in IteratePointers() 161 void Stack::IteratePointersUnsafe(StackVisitor* visitor, in IteratePointersUnsafe() 166 const void* Stack::GetCurrentStackPointerForLocalVariables() { in GetCurrentStackPointerForLocalVariables() [all …]
|
| /third_party/googletest/googletest/test/ |
| D | googletest-output-test-golden-lin.txt | 7 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/typescript/tests/cases/compiler/ |
| D | infinitelyGenerativeInheritance1.ts | 1 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/ |
| D | ClipStack.h | 103 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/ |
| D | stack.rs | 43 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/ |
| D | JSON.cpp | 629 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 …]
|
| D | TimeProfiler.cpp | 67 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/ |
| D | PhiValues.cpp | 51 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/ |
| D | AMDGPUAlwaysInlinePass.cpp | 59 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()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
| D | FileSystem.h | 843 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/node/test/message/ |
| D | util-inspect-error-cause.out | 46 RangeError: New Stack Frames 66 Error: Stack causes 88 RangeError: New Stack Frames 91 [cause]: Error: Stack causes 114 RangeError: New Stack Frames 134 Error: Stack causes 156 RangeError: New Stack Frames 159 [cause]: Error: Stack causes
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/AggressiveInstCombine/ |
| D | TruncInstCombine.cpp | 66 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/cmsis/Device/ARM/ARMCM55/Source/ARM/ |
| D | ARMCM55_ac6.sct | 30 /*--------------------- Stack / Heap Configuration --------------------------- 31 ; <h> Stack / Heap Configuration 32 ; <o0> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 52 User Stack & Heap boundary definition 58 Stack seal size definition
|
| D | ARMCM55_ac6_s.sct | 30 /*--------------------- Stack / Heap Configuration --------------------------- 31 ; <h> Stack / Heap Configuration 32 ; <o0> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> 52 User Stack & Heap boundary definition 58 Stack seal size definition
|