Home
last modified time | relevance | path

Searched refs:this_ (Results 1 – 17 of 17) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dtokens.h136 this_, enumerator
393 this_, enumerator
H A Dtokens.d127 this_, enumerator
383 this_,
449 TOK.this_,
655 TOK.this_: "this",
H A Dcppmangle.d2096 private void visitObject(V : Visitor)(RootObject o, V this_)
2100 ta.accept(this_);
2102 ea.accept(this_);
2104 sa.accept(this_);
2106 t.accept(this_);
2110 this_.visit(t);
H A Dparse.d423 case TOK.this_:
543 if (next == TOK.this_)
609 if (next2 == TOK.this_)
1573 else if (token.value == TOK.this_)
1953 case TOK.this_: in parseTemplateSingleArgument()
2324 …if (token.value == TOK.leftParenthesis && peekNext() == TOK.this_ && peekNext2() == TOK.rightParen…
2417 check(TOK.this_);
2488 check(TOK.this_);
2563 check(TOK.this_);
3626 case TOK.this_:
[all …]
H A Ddeclaration.d98 (!e1 || e1.op == EXP.this_)) in modifyFieldVar()
380 if (e1 && e1.op == EXP.this_ && isField()) in checkModify()
H A Dtraits.d1086 if (dve.e1.op == EXP.dotType || dve.e1.op == EXP.this_) in semanticTraits()
1106 if (dte.e1.op != EXP.dotType && dte.e1.op != EXP.this_) in semanticTraits()
H A Dexpression.d657 case EXP.this_: in expToVariable()
1634 … inout(ThisExp) isThisExp() { return op == EXP.this_ ? cast(typeof(return))this : null; } in isThisExp()
2311 super(loc, EXP.this_, __traits(classInstanceSize, ThisExp)); in this()
4829 … if (e1.op == EXP.this_ && sc.ctorflow.fieldinit.length && !(sc.ctorflow.callSuper & CSX.any_ctor)) in toLvalue()
7063 if (dotVarExp.e1.op == EXP.this_)
7100 if (dve.e1.op == EXP.this_)
H A Dctfeexpr.d241 case EXP.this_: in needToCopyLiteral()
1930 case EXP.this_: in isCtfeReferenceValid()
H A Dhdrgen.d2561 case EXP.this_: return visitThis(e.isThisExp()); in expressionPrettyPrint()
3451 … EXP.int64 || e.op == EXP.float64 || e.op == EXP.null_ || e.op == EXP.string_ || e.op == EXP.this_) in tiargsToBuffer()
4016 EXP.this_ : "this", in EXPtoString()
H A Ddtemplate.d2287 else if (ea && (ea.op == EXP.this_ || ea.op == EXP.super_)) in declareParameter()
7251 if (ea.op == EXP.this_) in hasNestedArgs()
7582 e.op == EXP.this_ || e.op == EXP.super_ || in definitelyValueParameter()
7605 if (e.op == EXP.this_ || e.op == EXP.super_) in definitelyValueParameter()
8111 if (ea && (ea.op == EXP.this_ || ea.op == EXP.super_)) in matchArg()
H A Dexpressionsem.d1047 if (e1.op == EXP.this_)
4343 if (exp.e1.op == EXP.this_ || exp.e1.op == EXP.super_) in visit()
4701 …if (sc.func && sc.func.isInvariantDeclaration() && ue.e1.op == EXP.this_ && exp.f.addPostInvariant… in visit()
4772 else if (exp.e1.op == EXP.super_ || exp.e1.op == EXP.this_) in visit()
7072 …else if ((exp.e1.op == EXP.this_ || exp.e1.op == EXP.super_) && global.params.useDIP1000 == Featur… in visit()
7873 if ((dve.e1.op == EXP.this_ || dve.e1.op == EXP.super_) && in visit()
H A Ddinterpret.d73 case EXP.this_: in ctfeInterpret()
6793 case EXP.this_: in copyRegionExp()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp483 FunctionDifferenceEngine *this_() { return this; } in this_() function in __anon0b0ced060111::FunctionDifferenceEngine
487 Engine(Engine), Queue(QueueSorter(*this_())) {} in FunctionDifferenceEngine()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h1391 ExtQuals *this_() { return this; }
1396 canon.isNull() ? QualType(this_(), 0) : canon),
1820 canon.isNull() ? QualType(this_(), 0) : canon) {
1834 Type *this_() { return this; }
5866 BaseType(QualType(this_(), 0)) {
H A DASTContext.h448 ASTContext &this_() { return *this; } in this_() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp970 : ConstantArrayTypes(this_()), FunctionProtoTypes(this_()), in ASTContext()
971 TemplateSpecializationTypes(this_()), in ASTContext()
972 DependentTemplateSpecializationTypes(this_()), AutoTypes(this_()), in ASTContext()
973 SubstTemplateTemplateParmPacks(this_()), in ASTContext()
974 CanonTemplateTemplateParms(this_()), SourceMgr(SM), LangOpts(LOpts), in ASTContext()
983 CompCategories(this_()), LastSDM(nullptr, 0) { in ASTContext()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dvariant.d384 auto this_ = (*src)[]; in VariantN() local
385 emplaceRef(*cast(Unqual!T*) zat, cast(Unqual!T) this_); in VariantN()