HomeSort by: relevance | last modified time | path
    Searched refs:Fun (Results 1 - 19 of 19) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
call-sc.c 40 T fun() function
45 void Fun(T foo)
62 Fun(init);
66 "advance fun" is guaranteed to have always been preceded by a
72 L = fun ();
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
call-sc.c 40 T fun() function
45 void Fun(T foo)
62 Fun(init);
66 "advance fun" is guaranteed to have always been preceded by a
72 L = fun ();
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerExtFunctionsWeakAlias.cpp 34 static T *GetFnPtr(T *Fun, T *FunDef, const char *FnName, bool WarnIfMissing) {
35 if (Fun == FunDef) {
40 return Fun;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Errno.h 32 template <typename FailT, typename Fun, typename... Args>
33 inline decltype(auto) RetryAfterSignal(const FailT &Fail, const Fun &F,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
DeclSpec.cpp 194 new (&I.Fun) FunctionTypeInfo;
195 I.Fun.hasPrototype = hasProto;
196 I.Fun.isVariadic = EllipsisLoc.isValid();
197 I.Fun.isAmbiguous = isAmbiguous;
198 I.Fun.LParenLoc = LParenLoc;
199 I.Fun.EllipsisLoc = EllipsisLoc;
200 I.Fun.RParenLoc = RParenLoc;
201 I.Fun.DeleteParams = false;
202 I.Fun.NumParams = NumParams;
203 I.Fun.Params = nullptr
    [all...]
SemaTemplateVariadic.cpp 933 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
934 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
940 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
941 for (unsigned i = 0; i != Chunk.Fun.getNumExceptions(); ++i) {
942 if (Chunk.Fun.Exceptions[i]
947 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) &&
948 Chunk.Fun.NoexceptExpr->containsUnexpandedParameterPack())
951 if (Chunk.Fun.hasTrailingReturnType()) {
952 QualType T = Chunk.Fun.getTrailingReturnType().get();
Sema.cpp 2283 if (const FunctionDecl *Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
2284 if (Fun->getMinRequiredArguments() == 0)
2285 ZeroArgCallReturnTy = Fun->getReturnType();
SemaType.cpp 3121 D.getTypeObject(FunctionChunkIndex).Fun;
3617 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
4942 DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
5485 const DeclaratorChunk::FunctionTypeInfo &FTI = DeclType.Fun;
5559 if (Chunk.Fun.hasRefQualifier())
5560 RemovalLocs.push_back(Chunk.Fun.getRefQualifierLoc());
5562 if (Chunk.Fun.hasMethodTypeQualifiers())
5563 Chunk.Fun.MethodQualifiers->forEachQualifier(
6155 const DeclaratorChunk::FunctionTypeInfo &FTI = Chunk.Fun;
SemaDeclCXX.cpp 413 for (unsigned argIdx = 0, e = chunk.Fun.NumParams; argIdx != e;
415 ParmVarDecl *Param = cast<ParmVarDecl>(chunk.Fun.Params[argIdx].Param);
418 std::move(chunk.Fun.Params[argIdx].DefaultArgTokens);
10597 if (Chunk.Fun.HasTrailingReturnType) {
10599 GetTypeFromParser(Chunk.Fun.getTrailingReturnType(), &TRT);
10832 if (!Chunk.Fun.hasTrailingReturnType()) {
10840 ParsedType TrailingReturnType = Chunk.Fun.getTrailingReturnType();
SemaOverload.cpp 10339 } else if (FunctionDecl *Fun
10341 NoteOverloadCandidate(*I, Fun, CRK_None, DestType, TakingAddress);
12182 if (FunctionDecl *Fun =
12184 if (!functionHasPassObjectSizeParams(Fun))
12185 S.NoteOverloadCandidate(*I, Fun, CRK_None, TargetFunctionType,
SemaDecl.cpp 9363 DeclaratorChunk::FunctionTypeInfo &FTI = D.getTypeObject(FTIIdx).Fun;
14332 Outer.Fun.hasTrailingReturnType()) {
14333 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
  /src/external/gpl3/gdb.old/dist/gdbsupport/
eintr.h 57 template<typename ErrorValType, typename Fun, typename... Args>
59 handle_eintr (ErrorValType errval, const Fun &f, const Args &... args)
  /src/external/gpl3/gdb/dist/gdbsupport/
eintr.h 57 template<typename ErrorValType, typename Fun, typename... Args>
59 handle_eintr (ErrorValType errval, const Fun &f, const Args &... args)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 411 LLVMValueRef Fun;
417 FunCloner(LLVMValueRef Src, LLVMValueRef Dst): Fun(Dst),
418 M(LLVMGetGlobalParent(Fun)), VMap(clone_params(Src, Dst)) {}
882 LLVMBasicBlockRef BB = LLVMAppendBasicBlock(Fun, Name);
1211 LLVMValueRef Fun = LLVMGetNamedFunction(M, Name);
1212 if (!Fun)
1222 LLVMSetPersonalityFn(Fun, P);
1230 LLVMGlobalSetMetadata(Fun, Kind, MD);
1234 FunCloner FC(Cur, Fun);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 1552 FunctionTypeInfo Fun;
1560 case DeclaratorChunk::Function: return Fun.destroy();
2333 return DeclTypeInfo[index].Fun;
2451 Chunk.Fun.hasTrailingReturnType())
2460 Chunk.Fun.hasTrailingReturnType())
2461 return Chunk.Fun.getTrailingReturnType();
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
Consumed.cpp 491 void propagateReturnType(const Expr *Call, const FunctionDecl *Fun);
685 const FunctionDecl *Fun) {
686 QualType RetType = Fun->getCallResultType();
692 if (ReturnTypestateAttr *RTA = Fun->getAttr<ReturnTypestateAttr>())
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 841 Apply(SExpr *F, SExpr *A) : SExpr(COP_Apply), Fun(F), Arg(A) {}
843 : SExpr(A), Fun(F), Arg(Ar) {}
847 SExpr *fun() { return Fun; } function in class:clang::threadSafety::Apply
848 const SExpr *fun() const { return Fun; } function in class:clang::threadSafety::Apply
855 auto Nf = Vs.traverse(Fun, Vs.subExprCtx(Ctx));
862 typename C::CType Ct = Cmp.compare(fun(), E->fun());
869 SExpr* Fun;
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/range/
package.d 3696 Given callable ($(REF isCallable, std,traits)) `fun`, create as a range
3697 whose front is defined by successive calls to `fun()`.
3701 `fun` maybe be passed either a template alias parameter (existing
3706 The resulting range will call `fun()` on construction, and every call to
3709 Returns: an `inputRange` where each element represents another call to fun.
3711 auto generate(Fun)(Fun fun)
3712 if (isCallable!fun)
3714 auto gen = Generator!(Fun)(fun)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
parallelism.d 146 alias Fun = SetFunctionAttributes!(typeof(&impl), "D",
148 auto purified = (() @trusted => cast(Fun) &impl)();
216 private template ReduceType(alias fun, R, E)
218 alias ReduceType = typeof(binaryFun!fun(E.init, ElementType!R.init));
290 private template AliasReturn(alias fun, T...)
292 alias AliasReturn = typeof({ T args; return fun(args); });
408 `workForce` by ref. If `fun` returns by ref, the reference will point
409 to the returned reference of `fun`. Otherwise it will point to a
419 struct Task(alias fun, Args...)
436 fun(myCastedTask._args)
    [all...]

Completed in 110 milliseconds