/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | InstVisitor.h | 113 RetTy visit(Instruction *I) { return visit(*I); } in visit() 117 RetTy visit(Instruction &I) { in visit() 168 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);} in visitICmpInst() 169 RetTy visitFCmpInst(FCmpInst &I) { DELEGATE(CmpInst);} in visitFCmpInst() 170 RetTy visitAllocaInst(AllocaInst &I) { DELEGATE(UnaryInstruction);} in visitAllocaInst() 171 RetTy visitLoadInst(LoadInst &I) { DELEGATE(UnaryInstruction);} in visitLoadInst() 172 RetTy visitStoreInst(StoreInst &I) { DELEGATE(Instruction);} in visitStoreInst() 173 RetTy visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) { DELEGATE(Instruction);} in visitAtomicCmpXchgInst() 174 RetTy visitAtomicRMWInst(AtomicRMWInst &I) { DELEGATE(Instruction);} in visitAtomicRMWInst() 175 RetTy visitFenceInst(FenceInst &I) { DELEGATE(Instruction);} in visitFenceInst() [all …]
|
D | IntrinsicInst.h | 56 static bool classof(const CallInst *I) { in classof() 71 static bool classof(const IntrinsicInst *I) { in classof() 123 static bool classof(const IntrinsicInst *I) { in classof() 145 static bool classof(const IntrinsicInst *I) { in classof() 161 static bool classof(const IntrinsicInst *I) { in classof() 178 static bool classof(const IntrinsicInst *I) { in classof() 200 static bool classof(const IntrinsicInst *I) { in classof() 230 static bool classof(const IntrinsicInst *I) { in classof() 247 static bool classof(const IntrinsicInst *I) { in classof() 284 static bool classof(const IntrinsicInst *I) { in classof() [all …]
|
/third_party/rust/crates/nom/src/multi/ |
D | mod.rs | 53 pub fn many0<I, O, E, F>(mut f: F) -> impl FnMut(I) -> IResult<I, Vec<O>, E> in many0() 56 F: Parser<I, O, E>, in many0() 57 E: ParseError<I>, in many0() 108 pub fn many1<I, O, E, F>(mut f: F) -> impl FnMut(I) -> IResult<I, Vec<O>, E> in many1() 111 F: Parser<I, O, E>, in many1() 112 E: ParseError<I>, in many1() 165 pub fn many_till<I, O, P, E, F, G>( in many_till() 168 ) -> impl FnMut(I) -> IResult<I, (Vec<O>, P), E> in many_till() 171 F: Parser<I, O, E>, in many_till() 172 G: Parser<I, P, E>, in many_till() [all …]
|
/third_party/rust/crates/nom/src/combinator/ |
D | mod.rs | 73 pub fn map<I, O1, O2, E, F, G>(mut parser: F, mut f: G) -> impl FnMut(I) -> IResult<I, O2, E> in map() 75 F: Parser<I, O1, E>, in map() 104 pub fn map_res<I: Clone, O1, O2, E: FromExternalError<I, E2>, E2, F, G>( in map_res() 107 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_res() 109 F: Parser<I, O1, E>, in map_res() 142 pub fn map_opt<I: Clone, O1, O2, E: ParseError<I>, F, G>( in map_opt() 145 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_opt() 147 F: Parser<I, O1, E>, in map_opt() 176 pub fn map_parser<I, O1, O2, E: ParseError<I>, F, G>( in map_parser() 179 ) -> impl FnMut(I) -> IResult<I, O2, E> in map_parser() [all …]
|
/third_party/rust/crates/nom/src/sequence/ |
D | mod.rs | 29 pub fn pair<I, O1, O2, E: ParseError<I>, F, G>( in pair() 32 ) -> impl FnMut(I) -> IResult<I, (O1, O2), E> in pair() 34 F: Parser<I, O1, E>, in pair() 35 G: Parser<I, O2, E>, in pair() 63 pub fn preceded<I, O1, O2, E: ParseError<I>, F, G>( in preceded() 66 ) -> impl FnMut(I) -> IResult<I, O2, E> in preceded() 68 F: Parser<I, O1, E>, in preceded() 69 G: Parser<I, O2, E>, in preceded() 97 pub fn terminated<I, O1, O2, E: ParseError<I>, F, G>( in terminated() 100 ) -> impl FnMut(I) -> IResult<I, O1, E> in terminated() [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | collisionExportsRequireAndModule.ts | 4 export interface I { interface 13 export interface I { interface 23 export interface I { interface 29 export interface I { interface 37 export interface I { interface 43 export interface I { interface 52 export interface I { interface 58 export interface I { interface 65 export interface I { interface 71 export interface I { interface [all …]
|
D | collisionExportsRequireAndAmbientModule.ts | 4 export interface I { interface 13 export interface I { interface 23 export interface I { interface 29 export interface I { interface 37 export interface I { interface 43 export interface I { interface 53 export interface I { interface 59 export interface I { interface 66 export interface I { interface 72 export interface I { interface [all …]
|
D | duplicateSymbolsExportMatching.ts | 4 interface I { } interface 8 interface I { } // ok interface 14 export interface I { } // ok interface 18 interface I { } interface 19 interface I { } // ok interface 25 interface I { } interface 26 export interface I { } // error interface
|
/third_party/rust/crates/nom/src/number/ |
D | streaming.rs | 30 pub fn be_u8<I, E: ParseError<I>>(input: I) -> IResult<I, u8, E> in be_u8() 60 pub fn be_u16<I, E: ParseError<I>>(input: I) -> IResult<I, u16, E> in be_u16() 93 pub fn be_u24<I, E: ParseError<I>>(input: I) -> IResult<I, u32, E> in be_u24() 126 pub fn be_u32<I, E: ParseError<I>>(input: I) -> IResult<I, u32, E> in be_u32() 159 pub fn be_u64<I, E: ParseError<I>>(input: I) -> IResult<I, u64, E> in be_u64() 191 pub fn be_u128<I, E: ParseError<I>>(input: I) -> IResult<I, u128, E> in be_u128() 221 pub fn be_i8<I, E: ParseError<I>>(input: I) -> IResult<I, i8, E> in be_i8() 241 pub fn be_i16<I, E: ParseError<I>>(input: I) -> IResult<I, i16, E> in be_i16() 261 pub fn be_i24<I, E: ParseError<I>>(input: I) -> IResult<I, i32, E> in be_i24() 290 pub fn be_i32<I, E: ParseError<I>>(input: I) -> IResult<I, i32, E> in be_i32() [all …]
|
D | complete.rs | 32 pub fn be_u8<I, E: ParseError<I>>(input: I) -> IResult<I, u8, E> in be_u8() 62 pub fn be_u16<I, E: ParseError<I>>(input: I) -> IResult<I, u16, E> in be_u16() 95 pub fn be_u24<I, E: ParseError<I>>(input: I) -> IResult<I, u32, E> in be_u24() 128 pub fn be_u32<I, E: ParseError<I>>(input: I) -> IResult<I, u32, E> in be_u32() 161 pub fn be_u64<I, E: ParseError<I>>(input: I) -> IResult<I, u64, E> in be_u64() 194 pub fn be_u128<I, E: ParseError<I>>(input: I) -> IResult<I, u128, E> in be_u128() 227 pub fn be_i8<I, E: ParseError<I>>(input: I) -> IResult<I, i8, E> in be_i8() 250 pub fn be_i16<I, E: ParseError<I>>(input: I) -> IResult<I, i16, E> in be_i16() 273 pub fn be_i24<I, E: ParseError<I>>(input: I) -> IResult<I, i32, E> in be_i24() 305 pub fn be_i32<I, E: ParseError<I>>(input: I) -> IResult<I, i32, E> in be_i32() [all …]
|
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
D | va_pack.c | 39 invalid_instruction(const bi_instr *I, const char *cause, ...) in invalid_instruction() 59 #define pack_assert(I, cond) \ argument 67 va_validate_register_pair(const bi_instr *I, unsigned s) in va_validate_register_pair() 86 va_pack_reg(const bi_instr *I, bi_index idx) in va_pack_reg() 95 va_pack_fau_special(const bi_instr *I, enum bir_fau fau) in va_pack_fau_special() 118 va_pack_fau_64(const bi_instr *I, bi_index idx) in va_pack_fau_64() 133 va_pack_src(const bi_instr *I, unsigned s) in va_pack_src() 150 va_pack_wrmask(const bi_instr *I) in va_pack_wrmask() 161 va_pack_atom_opc(const bi_instr *I) in va_pack_atom_opc() 179 va_pack_atom_opc_1(const bi_instr *I) in va_pack_atom_opc_1() [all …]
|
/third_party/rust/crates/nom/src/bits/ |
D | complete.rs | 33 pub fn take<I, O, C, E: ParseError<(I, usize)>>( in take() 35 ) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E> in take() 85 pub fn tag<I, O, C, E: ParseError<(I, usize)>>( in tag() 88 ) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E> in tag() 123 pub fn bool<I, E: ParseError<(I, usize)>>(input: (I, usize)) -> IResult<(I, usize), bool, E> in bool() argument
|
D | mod.rs | 40 pub fn bits<I, O, E1, E2, P>(mut parser: P) -> impl FnMut(I) -> IResult<I, O, E2> in bits() 42 E1: ParseError<(I, usize)> + ErrorConvert<E2>, in bits() 43 E2: ParseError<I>, in bits() 45 P: Parser<(I, usize), O, E1>, in bits() 86 pub fn bytes<I, O, E1, E2, P>(mut parser: P) -> impl FnMut((I, usize)) -> IResult<(I, usize), O, E2> in bytes() argument 89 E2: ParseError<(I, usize)>, in bytes() 91 P: Parser<I, O, E1>, in bytes()
|
D | streaming.rs | 10 pub fn take<I, O, C, E: ParseError<(I, usize)>>( in take() 12 ) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E> in take() 59 pub fn tag<I, O, C, E: ParseError<(I, usize)>>( in tag() 62 ) -> impl Fn((I, usize)) -> IResult<(I, usize), O, E> in tag() 97 pub fn bool<I, E: ParseError<(I, usize)>>(input: (I, usize)) -> IResult<(I, usize), bool, E> in bool() argument
|
/third_party/typescript/tests/baselines/reference/ |
D | typeVal.js | 6 var I:I = { I: 3}; variable 12 var I = { I: 3 }; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | Lint.cpp | 226 Instruction &I = *CS.getInstruction(); in visitCallSite() local 394 void Lint::visitCallInst(CallInst &I) { in visitCallInst() 398 void Lint::visitInvokeInst(InvokeInst &I) { in visitInvokeInst() 402 void Lint::visitReturnInst(ReturnInst &I) { in visitReturnInst() 415 void Lint::visitMemoryReference(Instruction &I, in visitMemoryReference() 506 void Lint::visitLoadInst(LoadInst &I) { in visitLoadInst() 512 void Lint::visitStoreInst(StoreInst &I) { in visitStoreInst() 519 void Lint::visitXor(BinaryOperator &I) { in visitXor() 524 void Lint::visitSub(BinaryOperator &I) { in visitSub() 529 void Lint::visitLShr(BinaryOperator &I) { in visitLShr() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | SubtargetFeature.h | 48 for (unsigned I = 0; I != B.size(); ++I) in FeatureBitset() local 55 for (auto I : Init) in FeatureBitset() local 64 constexpr FeatureBitset &set(unsigned I) { in set() 71 constexpr FeatureBitset &reset(unsigned I) { in reset() 78 constexpr FeatureBitset &flip(unsigned I) { in flip() 90 constexpr bool test(unsigned I) const { return (*this)[I]; } in test() 106 for (unsigned I = 0, E = array_lengthof(Bits); I != E; ++I) { variable 118 for (unsigned I = 0, E = array_lengthof(Bits); I != E; ++I) { variable 130 for (unsigned I = 0, E = array_lengthof(Bits); I != E; ++I) { variable 155 for (unsigned I = 0, E = size(); I != E; ++I) { variable
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_ra_coalesce.cpp | 96 for (vvec::iterator I = c2->values.begin(), E = c2->values.end(); I != E; in unify_chunks() local 123 for (vvec::iterator I = c1->values.begin(), E = c1->values.end(); I != E; in chunks_interference() local 127 for (vvec::iterator I = c2->values.begin(), E = c2->values.end(); I != E; in chunks_interference() local 140 for (edge_queue::iterator I = edges.begin(), E = edges.end(); in build_chunks() local 169 for (edge_queue::iterator I = edges.begin(), E = edges.end(); in dump_edges() local 183 for (chunk_vec::iterator I = all_chunks.begin(), E = all_chunks.end(); in dump_chunks() local 194 for (constraint_queue::iterator I = constraints.begin(), in dump_constraint_queue() local 233 for (vvec::iterator I = c->values.begin(), E = c->values.end(); I != E; in get_chunk_interferences() local 242 for (chunk_vec::iterator I = all_chunks.begin(), in build_chunk_queue() local 252 for (constraint_vec::iterator I = all_constraints.begin(), in build_constraint_queue() local [all …]
|
D | sb_gcm.cpp | 52 for (node_iterator N, I = pending.begin(), E = pending.end(); in run() local 111 for (node_iterator I = c->begin(), E = c->end(); I != E; ++I) { in collect_instructions() local 124 for (node_iterator I = c->begin(), E = c->end(); I != E; ++I) { in collect_instructions() local 140 for (node_iterator I = n->begin(), E = n->end(); I != E; ++I) { in sched_early() local 181 for (sq_iterator N, I = ready.begin(), E = ready.end(); I != E; in td_sched_bb() local 202 for (uselist::iterator I = v->uses.begin(), E = v->uses.end(); I != E; ++I) { in td_release_val() local 230 for (vvec::iterator I = v.begin(), E = v.end(); I != E; ++I) { in td_release_uses() local 259 for (node_riterator I = n->rbegin(), E = n->rend(); I != E; ++I) { in sched_late() local 300 for (node_list::iterator I = pending_nodes.begin(), in bu_sched_bb() local 312 for (vvec::iterator I = pending_defs.begin(), E = pending_defs.end(); in bu_sched_bb() local [all …]
|
D | sb_def_use.cpp | 40 for (node_iterator I = c->begin(), E = c->end(); I != E; ++I) { in process_phi() local 74 for (node_iterator I = c->begin(), E = c->end(); I != E; ++I) { in run_on() local 90 for (vvec::iterator I = vv.begin(), E = vv.end(); I != E; ++I) { in process_defs() local 109 for (vvec::iterator I = n->src.begin(), E = n->src.end(); I != E; ++I) { in process_uses() local 118 for (vvec::iterator I = v->muse.begin(), E = v->muse.end(); in process_uses() local 130 for (vvec::iterator I = n->dst.begin(), E = n->dst.end(); I != E; ++I) { in process_uses() local 137 for (vvec::iterator I = v->muse.begin(), E = v->muse.end(); in process_uses() local
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.cpp | 60 for (auto *I : DistinctMDNodes) in ~LLVMContextImpl() local 82 for (auto *I : ExprConstants) in ~LLVMContextImpl() local 84 for (auto *I : ArrayConstants) in ~LLVMContextImpl() local 86 for (auto *I : StructConstants) in ~LLVMContextImpl() local 88 for (auto *I : VectorConstants) in ~LLVMContextImpl() local 107 for (FoldingSetIterator<AttributeImpl> I = AttrsSet.begin(), in ~LLVMContextImpl() local 114 for (FoldingSetIterator<AttributeListImpl> I = AttrsLists.begin(), in ~LLVMContextImpl() local 122 for (FoldingSetIterator<AttributeSetNode> I = AttrsSetNodes.begin(), in ~LLVMContextImpl() local 149 for (auto I = ArrayConstants.begin(), E = ArrayConstants.end(); I != E;) { in dropTriviallyDeadConstantArrays() local 211 auto I = BundleTagCache.find(Tag); in getOperandBundleTagID() local
|
/third_party/rust/crates/rust-cexpr/src/ |
D | lib.rs | 75 fn from(e: (I, nom::ErrorKind)) -> Self { in from() 81 fn from(e: (I, ErrorKind)) -> Self { in from() 99 fn from_error_kind(input: I, kind: nom::ErrorKind) -> Self { in from_error_kind() 106 fn append(_: I, _: nom::ErrorKind, other: Self) -> Self { in append() 113 fn to_cexpr_result(self) -> nom::IResult<I, O, Error<I>>; in to_cexpr_result() 119 fn to_cexpr_result(self) -> nom::IResult<I, O, Error<I>> { in to_cexpr_result() 132 result: nom::IResult<&'i [I], O, E>, in assert_full_parse() 133 ) -> nom::IResult<&'i [I], O, Error<&'i [I]>> in assert_full_parse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | fallible_iterator.h | 84 static fallible_iterator itr(Underlying I, Error &Err) { in itr() 94 static fallible_iterator end(Underlying I) { in end() 197 fallible_iterator(Underlying I, Error *Err) in fallible_iterator() 216 Underlying I; variable 223 fallible_iterator<Underlying> make_fallible_itr(Underlying I, Error &Err) { in make_fallible_itr() 236 make_fallible_range(Underlying I, Underlying E, Error &Err) { in make_fallible_range()
|
/third_party/rust/crates/quote/src/ |
D | ext.rs | 42 fn append_separated<I, U>(&mut self, iter: I, op: U) in append_separated() 52 fn append_terminated<I, U>(&mut self, iter: I, term: U) in append_terminated() 77 fn append_separated<I, U>(&mut self, iter: I, op: U) in append_separated() 91 fn append_terminated<I, U>(&mut self, iter: I, term: U) in append_terminated()
|
/third_party/rust/crates/nom/src/branch/ |
D | mod.rs | 15 fn choice(&mut self, input: I) -> IResult<I, O, E>; in choice() 47 pub fn alt<I: Clone, O, E: ParseError<I>, List: Alt<I, O, E>>( in alt() argument 49 ) -> impl FnMut(I) -> IResult<I, O, E> { in alt() 58 fn permutation(&mut self, input: I) -> IResult<I, O, E>; in permutation() 106 pub fn permutation<I: Clone, O, E: ParseError<I>, List: Permutation<I, O, E>>( in permutation() argument 108 ) -> impl FnMut(I) -> IResult<I, O, E> { in permutation()
|