Home
last modified time | relevance | path

Searched refs:byRef (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Descape.d446 const byRef = param.isReference() && !(param.storageClass & STC.scope_) in checkParamArgumentReturn() local
450 return checkAssignEscape(sc, e, gag, byRef); in checkParamArgumentReturn()
518 bool checkAssignEscape(Scope* sc, Expression e, bool gag, bool byRef) in checkAssignEscape() argument
521 if (log) printf("checkAssignEscape(e: %s, byRef: %d)\n", e.toChars(), byRef); in checkAssignEscape()
547 if (byRef) in checkAssignEscape()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Diteration.d4227 int byRef = 7;
4228 joined.front = byRef;
4229 assert(range.element == byRef);
4230 assert(joined.front == byRef);
4239 int byRef = 7;
4240 joined.back = byRef;
4241 assert(range.element == byRef);
4242 assert(joined.back == byRef);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Diteration.d2722 int byRef = 7; variable
2723 joined.front = byRef;
2724 assert(range.element == byRef);
2725 assert(joined.front == byRef);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h4135 Capture(VarDecl *variable, bool byRef, bool nested, Expr *copy) in Capture() argument
4137 (byRef ? flag_isByRef : 0) | (nested ? flag_isNested : 0)), in Capture()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1561 bool byRef = (flags & 1); in VisitBlockDecl() local
1565 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr)); in VisitBlockDecl()