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

/external/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
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.cpp86 std::vector<GenericValue> ActualArgs; local
89 ActualArgs.push_back(ArgValues[i]);
92 callFunction(F, ActualArgs);
/external/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);
154 Res = ActualArgs->getStringifiedArgument(ArgNo, PP,
159 Res = MacroArgs::StringifyArgument(ActualArgs->getUnexpArgument(ArgNo),
210 const Token *ArgTok = ActualArgs->getUnexpArgument(ArgNo);
211 if (ActualArgs->ArgNeedsPreexpansion(ArgTok, PP))
212 ResultArgToks = &ActualArgs
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1095 CallArgList ActualArgs; local
1097 ActualArgs.add(RValue::get(EnforceType(Builder, Receiver, IdTy)), ASTIdTy);
1098 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1099 ActualArgs.addFrom(CallArgs);
1101 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1167 RValue msgRet = CGF.EmitCall(MSI.CallInfo, imp, Return, ActualArgs, 0, &call);
1240 CallArgList ActualArgs; local
1241 ActualArgs.add(RValue::get(Receiver), ASTIdTy);
1242 ActualArgs.add(RValue::get(cmd), CGF.getContext().getObjCSelType());
1243 ActualArgs
[all...]
H A DCGObjCMac.cpp1716 CallArgList ActualArgs; local
1719 ActualArgs.add(RValue::get(Arg0), Arg0Ty);
1720 ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType());
1721 ActualArgs.addFrom(CallArgs);
1724 MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs);
1763 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2477 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2480 const SmallVectorImpl<Constant*> &ActualArgs);
2812 /// successful, false if we can't evaluate it. ActualArgs contains the formal
2815 const SmallVectorImpl<Constant*> &ActualArgs) {
2827 setVal(AI, ActualArgs[ArgNo]);
2814 EvaluateFunction(Function *F, Constant *&RetVal, const SmallVectorImpl<Constant*> &ActualArgs) argument

Completed in 247 milliseconds