Home
last modified time | relevance | path

Searched refs:QualifiedName (Results 1 – 25 of 42) sorted by relevance

12

/third_party/node/deps/v8/src/torque/
Ddeclarations.h47 static std::vector<Declarable*> TryLookup(const QualifiedName& name) { in TryLookup()
51 static std::vector<Declarable*> TryLookupShallow(const QualifiedName& name) { in TryLookupShallow()
56 static std::vector<T*> TryLookup(const QualifiedName& name) { in TryLookup()
60 static std::vector<Declarable*> Lookup(const QualifiedName& name) { in Lookup()
68 static std::vector<Declarable*> LookupGlobalScope(const QualifiedName& name);
70 static const TypeAlias* LookupTypeAlias(const QualifiedName& name);
71 static const Type* LookupType(const QualifiedName& name);
73 static base::Optional<const Type*> TryLookupType(const QualifiedName& name);
74 static const Type* LookupGlobalType(const QualifiedName& name);
79 static Value* LookupValue(const QualifiedName& name);
[all …]
Ddeclarations.cc39 FilterDeclarables<T>(Declarations::TryLookupShallow(QualifiedName(name))); in CheckAlreadyDeclared()
49 const QualifiedName& name) { in LookupGlobalScope()
60 const TypeAlias* Declarations::LookupTypeAlias(const QualifiedName& name) { in LookupTypeAlias()
66 const Type* Declarations::LookupType(const QualifiedName& name) { in LookupType()
71 const TypeAlias* alias = LookupTypeAlias(QualifiedName(name->value)); in LookupType()
80 const QualifiedName& name) { in TryLookupType()
86 const Type* Declarations::LookupGlobalType(const QualifiedName& name) { in LookupGlobalType()
107 Value* Declarations::LookupValue(const QualifiedName& name) { in LookupValue()
113 std::vector<Macro*> macros = TryLookup<Macro>(QualifiedName(name)); in TryLookupMacro()
124 const QualifiedName& name) { in TryLookupBuiltin()
[all …]
Ddeclarable.cc21 QualifiedName QualifiedName::Parse(std::string qualified_name) { in DEFINE_CONTEXTUAL_VARIABLE()
30 return QualifiedName(qualifications, qualified_name); in DEFINE_CONTEXTUAL_VARIABLE()
33 std::ostream& operator<<(std::ostream& os, const QualifiedName& name) { in operator <<()
93 std::vector<Declarable*> Scope::Lookup(const QualifiedName& name) { in Lookup()
Dtype-oracle.h86 QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, in GetReferenceGeneric()
102 QualifiedName(MUTABLE_SLICE_TYPE_STRING)); in GetMutableSliceGeneric()
106 QualifiedName(CONST_SLICE_TYPE_STRING)); in GetConstSliceGeneric()
242 QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, in GetUninitializedHeapObjectType()
391 const Type* GetBuiltinType(const QualifiedName& name) { in GetBuiltinType()
395 return GetBuiltinType(QualifiedName(name)); in GetBuiltinType()
Ddeclarable.h28 struct QualifiedName { struct
32 QualifiedName(std::vector<std::string> namespace_qualification, in QualifiedName() argument
36 explicit QualifiedName(std::string name) in QualifiedName() function
37 : QualifiedName({}, std::move(name)) {} in QualifiedName()
39 static QualifiedName Parse(std::string qualified_name);
45 QualifiedName DropFirstNamespaceQualification() const { in DropFirstNamespaceQualification() argument
46 return QualifiedName{ in DropFirstNamespaceQualification()
52 friend std::ostream& operator<<(std::ostream& os, const QualifiedName& name);
178 std::vector<Declarable*> LookupShallow(const QualifiedName& name) { in LookupShallow()
195 std::vector<Declarable*> Lookup(const QualifiedName& name);
Dtype-visitor.cc95 QualifiedName non_constexpr_name{GetNonConstexprName(decl->name->value)}; in ComputeType()
241 Declarations::LookupTypeAlias(QualifiedName(decl->name->value)); in ComputeType()
347 QualifiedName qualified_name{basic->namespace_qualification, in ComputeType()
503 QualifiedName qualified_name{basic->namespace_qualification, in ComputeTypeForStructExpression()
Dimplementation-visitor.h693 Callable* LookupCallable(const QualifiedName& name,
699 bool TestLookupCallable(const QualifiedName& name,
703 Callable* LookupCallable(const QualifiedName& name,
736 VisitResult GenerateCall(const QualifiedName& callable_name,
743 return GenerateCall(QualifiedName(std::move(callable_name)),
Dtype-inference.cc94 QualifiedName qualified_name{parameter->namespace_qualification, in MatchGeneric()
Dimplementation-visitor.cc1212 GenerateCall(QualifiedName({"", TORQUE_INTERNAL_NAMESPACE_STRING}, in Visit()
1489 GenerateCall(QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, in InitializeClass()
1597 offset = GenerateCall(QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, in GenerateLayoutForInitialization()
1615 QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, "AlignTagged"), in GenerateLayoutForInitialization()
1664 QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, "GetInstanceTypeMap"), in Visit()
1686 QualifiedName({TORQUE_INTERNAL_NAMESPACE_STRING}, "AllocateFromNew"), in Visit()
1912 const std::string& reason, const QualifiedName& name, in FailCallableLookup()
1986 const QualifiedName& name, const TypeVector& parameter_types) { in TestLookupCallable()
2012 const QualifiedName& name, const Container& declaration_container, in LookupCallable()
2111 const QualifiedName& name, const Container& declaration_container, in LookupCallable()
[all …]
Ddeclaration-visitor.cc19 Declarations::TryLookupShallow(QualifiedName(name))); in GetOrCreateNamespace()
/third_party/rust/crates/cxx/syntax/
Dqualified.rs5 pub struct QualifiedName { struct
9 impl QualifiedName { impl
20 Ok(QualifiedName { segments }) in parse_quoted_or_unquoted()
33 fn parse_unquoted(input: ParseStream, allow_raw: bool) -> Result<QualifiedName> { in parse_unquoted() argument
58 Ok(QualifiedName { segments }) in parse_unquoted()
Dnamespace.rs1 use crate::syntax::qualified::QualifiedName;
49 let segments = QualifiedName::parse_quoted_or_unquoted(input)?.segments; in parse()
/third_party/typescript/src/services/codefixes/
DcorrectQualifiedNameToIndexedAccessType.ts23 …function getQualifiedName(sourceFile: SourceFile, pos: number): QualifiedName & { left: Identifier…
26 …return isIdentifier(qualifiedName.left) ? qualifiedName as QualifiedName & { left: Identifier } : …
29 …geTracker: textChanges.ChangeTracker, sourceFile: SourceFile, qualifiedName: QualifiedName): void {
/third_party/rust/crates/cxx/macro/src/
Dlib.rs48 use crate::syntax::qualified::QualifiedName;
92 path: QualifiedName, in type_id()
98 let path = QualifiedName::parse_quoted_or_unquoted(input)?; in type_id()
Dtype_id.rs1 use crate::syntax::qualified::QualifiedName;
21 pub fn expand(krate: Crate, arg: QualifiedName) -> TokenStream { in expand()
/third_party/typescript/src/services/refactors/
DconvertImport.ts107 const nodesToReplace: (PropertyAccessExpression | QualifiedName)[] = [];
151 …rtyAccessOrQualifiedName(propertyAccessOrQualifiedName: PropertyAccessExpression | QualifiedName) {
155 …rtyAccessOrQualifiedName(propertyAccessOrQualifiedName: PropertyAccessExpression | QualifiedName) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DMicrosoftDemangleNodes.h245 QualifiedName, enumerator
480 QualifiedNameNode *QualifiedName = nullptr; member
526 QualifiedNameNode() : Node(NodeKind::QualifiedName) {} in QualifiedNameNode()
DItaniumDemangle.h55 X(QualifiedName) \
877 class QualifiedName final : public Node {
883 QualifiedName(const Node *Qualifier_, const Node *Name_) in QualifiedName() function
3312 SoFar = make<QualifiedName>(SoFar, Qual); in parseUnresolvedName()
3320 return make<QualifiedName>(SoFar, Base); in parseUnresolvedName()
3342 SoFar = make<QualifiedName>(SoFar, Qual); in parseUnresolvedName()
3373 return make<QualifiedName>(SoFar, Base); in parseUnresolvedName()
/third_party/typescript/src/compiler/
DutilitiesPublic.ts582 if (name.kind === SyntaxKind.QualifiedName) {
1284 return kind === SyntaxKind.QualifiedName
1562 …dNameOrImportTypeNode(node: Node): node is PropertyAccessExpression | QualifiedName | ImportTypeNo…
1565 || kind === SyntaxKind.QualifiedName
1571 …ion isPropertyAccessOrQualifiedName(node: Node): node is PropertyAccessExpression | QualifiedName {
1574 || kind === SyntaxKind.QualifiedName;
1952 || kind === SyntaxKind.QualifiedName
Dutilities.ts1024 export function declarationNameToString(name: DeclarationName | QualifiedName | undefined) {
1069 case SyntaxKind.QualifiedName:
1371 …if (node.parent.kind === SyntaxKind.QualifiedName && (node.parent as QualifiedName).right === node…
1378 …ssert(node.kind === SyntaxKind.Identifier || node.kind === SyntaxKind.QualifiedName || node.kind =…
1382 case SyntaxKind.QualifiedName:
1936 case SyntaxKind.QualifiedName as TypeNodeSyntaxKind:
2085 case SyntaxKind.QualifiedName:
2086 while (node.parent.kind === SyntaxKind.QualifiedName) {
2169 while (node.kind === SyntaxKind.QualifiedName || node.kind === SyntaxKind.Identifier) {
3216 case SyntaxKind.QualifiedName:
[all …]
/third_party/typescript/src/compiler/transformers/
DtypeSerializer.ts540 case SyntaxKind.QualifiedName:
549 function serializeQualifiedNameAsExpression(node: QualifiedName): SerializedEntityName {
/third_party/typescript/src/compiler/transformers/declarations/
Ddiagnostics.ts8 typeName?: DeclarationName | QualifiedName;
/third_party/typescript/src/compiler/factory/
DnodeTests.ts159 export function isQualifiedName(node: Node): node is QualifiedName {
160 return node.kind === SyntaxKind.QualifiedName;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangleNodes.cpp536 QualifiedName->output(OS, Flags); in outputPre()
/third_party/typescript/src/services/
Dutilities.ts137 …const name = node.kind === SyntaxKind.QualifiedName ? node : isQualifiedName(node.parent) && node.…
142 while (node.parent.kind === SyntaxKind.QualifiedName) {
155 if (root.parent.kind === SyntaxKind.QualifiedName) {
156 while (root.parent && root.parent.kind === SyntaxKind.QualifiedName) {
160 isLastClause = (root as QualifiedName).right === node;

12