Searched refs:ActualArgs (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DTokenLexer.h35 /// ActualArgs - The actual arguments specified for a function-like macro, or
37 MacroArgs *ActualArgs; member in class:clang::TokenLexer
98 /// arguments. Note that this ctor takes ownership of the ActualArgs pointer.
102 MacroArgs *ActualArgs, Preprocessor &pp)
103 : Macro(0), ActualArgs(0), PP(pp), OwnsTokens(false) {
104 Init(Tok, ILEnd, MI, ActualArgs);
109 /// ownership of the ActualArgs pointer. ILEnd specifies the location of the
112 MacroArgs *ActualArgs);
119 : Macro(0), ActualArgs(0), PP(pp), OwnsTokens(false) {
101 TokenLexer(Token &Tok, SourceLocation ILEnd, MacroInfo *MI, MacroArgs *ActualArgs, Preprocessor &pp) argument
/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp86 std::vector<GenericValue> ActualArgs; local
89 ActualArgs.push_back(ArgValues[i]);
92 callFunction(F, ActualArgs);
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Lex/
H A DTokenLexer.cpp25 /// arguments. Note that this ctor takes ownership of the ActualArgs pointer.
33 ActualArgs = Actuals;
89 ActualArgs = 0;
119 if (ActualArgs) ActualArgs->destroy(PP);
203 Res = ActualArgs->getStringifiedArgument(ArgNo, PP,
208 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
255 if (!PasteBefore && ActualArgs->isVarargsElidedUse() &&
269 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
270 if (ActualArgs
[all...]
/freebsd-10.2-release/sys/contrib/dev/acpica/compiler/
H A Daslmethod.c93 UINT8 ActualArgs = 0; local
189 MethodInfo->ValidArgTypes[ActualArgs] |= AnMapObjTypeToBtype (NextParamType);
196 MethodInfo->ValidArgTypes[ActualArgs] =
199 ActualArgs++;
206 (MethodInfo->NumArguments != ActualArgs))
213 if ((!MethodInfo->NumArguments) && (ActualArgs))
215 MethodInfo->NumArguments = ActualArgs;
216 ArgNode->Asl.Value.Integer |= ActualArgs;
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1257 CallArgList ActualArgs; local
1259 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1260 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1261 ActualArgs.addFrom(CallArgs);
1263 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1329 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, 0, &call);
1402 CallArgList ActualArgs; local
1403 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1404 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1405 ActualArgs
[all...]
H A DCGObjCMac.cpp1870 CallArgList ActualArgs; local
1873 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1874 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
1875 ActualArgs.addFrom(CallArgs);
1878 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1917 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs);
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2292 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2295 const SmallVectorImpl<Constant*> &ActualArgs);
2717 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2720 const SmallVectorImpl<Constant*> &ActualArgs) {
2732 setVal(AI, ActualArgs[ArgNo]);
2719 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs) argument

Completed in 185 milliseconds