/third_party/rust/crates/serde/serde_derive/src/internals/ |
D | check.rs | 3 use crate::internals::{ungroup, Ctxt, Derive}; 8 pub fn check(cx: &Ctxt, cont: &mut Container, derive: Derive) { in check() argument 27 fn check_default_on_tuple(cx: &Ctxt, cont: &Container) { in check_default_on_tuple() argument 66 fn check_remote_generic(cx: &Ctxt, cont: &Container) { in check_remote_generic() argument 78 fn check_getter(cx: &Ctxt, cont: &Container) { in check_getter() argument 100 fn check_flatten(cx: &Ctxt, cont: &Container) { in check_flatten() argument 117 fn check_flatten_field(cx: &Ctxt, style: Style, field: &Field) { in check_flatten_field() argument 144 fn check_identifier(cx: &Ctxt, cont: &Container) { in check_identifier() argument 226 fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) { in check_variant_skip_attrs() argument 300 fn check_internal_tag_field_name_conflict(cx: &Ctxt, cont: &Container) { in check_internal_tag_field_name_conflict() argument [all …]
|
D | ctxt.rs | 12 pub struct Ctxt { struct 18 impl Ctxt { implementation 23 Ctxt { in new() 62 impl Drop for Ctxt { implementation
|
D | ast.rs | 3 use crate::internals::{attr, check, Ctxt, Derive}; 62 cx: &Ctxt, in from_ast() argument 140 cx: &Ctxt, in enum_from_ast() argument 175 cx: &Ctxt, in struct_from_ast() argument 198 cx: &Ctxt, in fields_from_ast() argument
|
D | attr.rs | 2 use crate::internals::{ungroup, Ctxt}; 24 cx: &'c Ctxt, 31 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none() argument 79 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none() argument 93 cx: &'c Ctxt, 100 fn none(cx: &'c Ctxt, name: Symbol) -> Self { in none() argument 287 pub fn from_ast(cx: &Ctxt, item: &syn::DeriveInput) -> Self { in from_ast() argument 687 cx: &Ctxt, in decide_tag() argument 748 cx: &Ctxt, in decide_identifier() argument 812 pub fn from_ast(cx: &Ctxt, variant: &syn::Variant) -> Self { in from_ast() argument [all …]
|
D | mod.rs | 13 pub use self::ctxt::Ctxt;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
D | DWARFLinkerCompileUnit.cpp | 76 DeclContext *Ctxt, PatchLocation Attr) { in noteForwardReference() argument 77 ForwardDIEReferences.emplace_back(Die, RefUnit, Ctxt, Attr); in noteForwardReference() 85 DeclContext *Ctxt; in fixupForwardReferences() local 86 std::tie(RefDie, RefUnit, Ctxt, Attr) = Ref; in fixupForwardReferences() 87 if (Ctxt && Ctxt->getCanonicalDIEOffset()) in fixupForwardReferences() 88 Attr.set(Ctxt->getCanonicalDIEOffset()); in fixupForwardReferences()
|
D | DWARFLinkerDeclContext.cpp | 34 U.getInfo(FirstIdx).Ctxt = nullptr; in setLastSeenDIE()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | YAMLTraits.cpp | 39 IO::IO(void *Context) : Ctxt(Context) {} in IO() 44 return Ctxt; in getContext() 48 Ctxt = Context; in setContext() 55 Input::Input(StringRef InputContent, void *Ctxt, in Input() argument 57 : IO(Ctxt), Strm(new Stream(InputContent, SrcMgr, false, &EC)) { in Input() 63 Input::Input(MemoryBufferRef Input, void *Ctxt, in Input() argument 65 : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) { in Input()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerDeclContext.h | 152 static unsigned getHashValue(const DeclContext *Ctxt) { in getHashValue() 153 return Ctxt->QualifiedNameHash; in getHashValue()
|
D | DWARFLinkerCompileUnit.h | 58 DeclContext *Ctxt; member 165 DeclContext *Ctxt, PatchLocation Attr);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/ |
D | MsgPackDocumentYAML.cpp | 175 static void output(const ScalarDocNode &S, void *Ctxt, raw_ostream &OS, in output() 181 static StringRef input(StringRef Str, StringRef Tag, void *Ctxt, in input()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
D | LTOCodeGenerator.cpp | 686 void *Ctxt) { in setDiagnosticHandler() argument 688 this->DiagContext = Ctxt; in setDiagnosticHandler()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 1295 DWARFContext *Ctxt = S->Context.get(); in getDWOContext() local 1296 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext() 1302 DWARFContext *Ctxt = S->Context.get(); in getDWOContext() local 1303 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext() 1337 auto *Ctxt = S->Context.get(); in getDWOContext() local 1338 return std::shared_ptr<DWARFContext>(std::move(S), Ctxt); in getDWOContext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | YAMLTraits.h | 513 IO(void *Ctxt=nullptr); 706 void *Ctxt; 1062 void *Ctxt = nullptr, 1209 Output(llvm::raw_ostream &, void *Ctxt = nullptr, int WrapColumn = 70);
|
/third_party/rust/crates/serde/serde_derive/src/ |
D | ser.rs | 3 use crate::internals::{attr, replace_receiver, Ctxt, Derive}; 13 let ctxt = Ctxt::new(); in expand_derive_serialize() 61 fn precondition(cx: &Ctxt, cont: &Container) { in precondition() argument
|
D | de.rs | 3 use crate::internals::{attr, replace_receiver, ungroup, Ctxt, Derive}; 16 let ctxt = Ctxt::new(); in expand_derive_deserialize() 69 fn precondition(cx: &Ctxt, cont: &Container) { in precondition() argument 74 fn precondition_sized(cx: &Ctxt, cont: &Container) { in precondition_sized() argument 87 fn precondition_no_de_lifetime(cx: &Ctxt, cont: &Container) { in precondition_no_de_lifetime() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MIRPrinter.cpp | 176 static void output(const Module &Mod, void *Ctxt, raw_ostream &OS) { in output() 180 static StringRef input(StringRef Str, void *Ctxt, Module &Mod) { in input()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | YAMLTraits.h | 1543 Output(raw_ostream &, void *Ctxt = nullptr, int WrapColumn = 70);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 14555 LLVMContext &Ctxt = *DAG->getContext(); in getLoadedType() local 14556 return EVT::getIntegerVT(Ctxt, getLoadedSize() * 8); in getLoadedType()
|