Searched refs:Arg (Results 101 - 125 of 306) sorted by relevance

1234567891011>>

/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp70 static SymbolRef getPointedToSymbol(CheckerContext &C, const Expr *Arg);
352 const Expr* Arg = CE->getArg(ArgNum); local
353 SymbolRef Sym = getPointedToSymbol(C, Arg);
427 const Expr* Arg) {
429 SVal AddrVal = State->getSVal(Arg->IgnoreParens(), C.getLocationContext());
438 dyn_cast<PointerType>(Arg->getType().getCanonicalType().getTypePtr());
487 const Expr *Arg = CE->getArg(i); local
489 const Type *ArgTy = Arg->getType().getTypePtr();
492 || (ArgTy->isReferenceType() && !Arg->getType().isConstQualified()))
560 const Expr* Arg local
426 getPointedToSymbol(CheckerContext &C, const Expr* Arg) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.c179 GET_SWZ(pair->Alpha.Arg[i].Swizzle, 0),
180 pair->Alpha.Arg[i].Source);
199 swz = GET_SWZ(pair->RGB.Arg[i].Swizzle, chan);
206 pair->RGB.Arg[i].Source);
H A Dradeon_program_pair.h82 struct rc_pair_instruction_arg Arg[3]; member in struct:rc_pair_sub_instruction
H A Dr300_fragprog_emit.c183 arg = r300FPTranslateRGBSwizzle(inst->RGB.Arg[j].Source, inst->RGB.Arg[j].Swizzle);
184 arg |= inst->RGB.Arg[j].Abs << 6;
185 arg |= inst->RGB.Arg[j].Negate << 5;
188 arg = r300FPTranslateAlphaSwizzle(inst->Alpha.Arg[j].Source, inst->Alpha.Arg[j].Swizzle);
189 arg |= inst->Alpha.Arg[j].Abs << 6;
190 arg |= inst->Alpha.Arg[j].Negate << 5;
H A Dradeon_dataflow.h82 struct rc_pair_instruction_arg * Arg; member in struct:rc_reader::__anon13876::__anon13878
/external/chromium_org/third_party/re2/re2/testing/
H A Dre2_arg_test.cc8 // supported by RE2::Arg class
96 RE2::Arg arg(&r); \
/external/clang/include/clang/AST/
H A DCommentSema.h113 StringRef Arg);
118 StringRef Arg);
131 StringRef Arg);
145 StringRef Arg);
/external/clang/include/clang/Driver/
H A DAction.h19 class Arg;
103 const llvm::opt::Arg &Input;
106 InputAction(const llvm::opt::Arg &_Input, types::ID _Type);
108 const llvm::opt::Arg &getInputArg() const { return Input; }
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.c179 GET_SWZ(pair->Alpha.Arg[i].Swizzle, 0),
180 pair->Alpha.Arg[i].Source);
199 swz = GET_SWZ(pair->RGB.Arg[i].Swizzle, chan);
206 pair->RGB.Arg[i].Source);
H A Dradeon_program_pair.h82 struct rc_pair_instruction_arg Arg[3]; member in struct:rc_pair_sub_instruction
H A Dr300_fragprog_emit.c183 arg = r300FPTranslateRGBSwizzle(inst->RGB.Arg[j].Source, inst->RGB.Arg[j].Swizzle);
184 arg |= inst->RGB.Arg[j].Abs << 6;
185 arg |= inst->RGB.Arg[j].Negate << 5;
188 arg = r300FPTranslateAlphaSwizzle(inst->Alpha.Arg[j].Source, inst->Alpha.Arg[j].Swizzle);
189 arg |= inst->Alpha.Arg[j].Abs << 6;
190 arg |= inst->Alpha.Arg[j].Negate << 5;
H A Dradeon_dataflow.h82 struct rc_pair_instruction_arg * Arg; member in struct:rc_reader::__anon27287::__anon27289
/external/regex-re2/re2/testing/
H A Dre2_arg_test.cc8 // supported by RE2::Arg class
96 RE2::Arg arg(&r); \
/external/clang/lib/Driver/
H A DSanitizerArgs.cpp117 if (Arg *BLArg = Args.getLastArg(options::OPT_fsanitize_blacklist,
145 if (Arg *A =
218 const llvm::opt::Arg *A,
239 const llvm::opt::Arg *A,
256 unsigned SanitizerArgs::parse(const Driver &D, const llvm::opt::Arg *A,
270 const llvm::opt::Arg *A, unsigned &Add,
301 const llvm::opt::Arg *A,
H A DToolChain.cpp20 #include "llvm/Option/Arg.h"
152 if (Arg *A = Args.getLastArg(options::OPT_fuse_ld_EQ)) {
215 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
235 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian,
296 if (Arg *A = Args.getLastArg(options::OPT_rtlib_EQ)) {
310 if (Arg *A = Args.getLastArg(options::OPT_stdlib_EQ)) {
404 Arg *A =
/external/clang/lib/AST/
H A DCommentSema.cpp220 static int getParamPassDirection(StringRef Arg) { argument
221 return llvm::StringSwitch<int>(Arg)
231 StringRef Arg) {
232 std::string ArgLower = Arg.lower();
260 StringRef Arg) {
271 Arg);
302 StringRef Arg) {
309 Arg);
320 if (resolveTParamReference(Arg, TemplateParameters, &Position)) {
322 TParamCommandComment *&PrevCommand = TemplateParameterDocs[Arg];
228 actOnParamCommandDirectionArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
257 actOnParamCommandParamNameArg(ParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
299 actOnTParamCommandParamNameArg(TParamCommandComment *Command, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
379 actOnInlineCommand(SourceLocation CommandLocBegin, SourceLocation CommandLocEnd, unsigned CommandID, SourceLocation ArgLocBegin, SourceLocation ArgLocEnd, StringRef Arg) argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp256 for (Argument &Arg : F.args()) {
257 if (Arg.hasByValAttr())
258 Tracker.walk(&Arg);
312 for (auto &Arg : CI->arg_operands()) {
313 if (isa<Constant>(Arg.getUser()))
315 if (Argument *A = dyn_cast<Argument>(Arg.getUser()))
483 if (Argument *Arg = dyn_cast<Argument>(V)) {
487 for (Function::arg_iterator AI = F->arg_begin(); &*AI != Arg; ++AI)
493 if (CI->getArgOperand(ArgNo) == Arg)
/external/llvm/include/llvm/Support/
H A DCommandLine.h170 StringRef Arg) = 0;
517 ValuesClass<DataType> END_WITH_NULL values(const char *Arg, DataType Val, argument
521 ValuesClass<DataType> Vals(Arg, Val, Desc, ValueArgs);
662 bool parse(Option &O, StringRef ArgName, StringRef Arg, DataType &V) { argument
665 ArgVal = Arg;
754 bool parse(Option &O, StringRef ArgName, StringRef Arg, bool &Val);
783 bool parse(Option &O, StringRef ArgName, StringRef Arg, boolOrDefault &Val);
808 bool parse(Option &O, StringRef ArgName, StringRef Arg, int &Val);
830 bool parse(Option &O, StringRef ArgName, StringRef Arg, unsigned &Val);
851 bool parse(Option &O, StringRef ArgName, StringRef Arg,
915 parse(Option &, StringRef, StringRef Arg, std::string &Value) argument
939 parse(Option &, StringRef, StringRef Arg, char &Value) argument
[all...]
/external/llvm/lib/Analysis/
H A DAliasAnalysis.cpp105 const Value *Arg = *AI; local
106 if (!Arg->getType()->isPointerTy())
166 const Value *Arg = *I; local
167 if (!Arg->getType()->isPointerTy())
195 const Value *Arg = *I; local
196 if (!Arg->getType()->isPointerTy())
/external/clang/include/clang/Sema/
H A DAttributeList.h375 ArgsUnion getArg(unsigned Arg) const {
376 assert(Arg < NumArgs && "Arg access out of range!");
377 return getArgsBuffer()[Arg];
380 bool isArgExpr(unsigned Arg) const {
381 return Arg < NumArgs && getArg(Arg).is<Expr*>();
383 Expr *getArgAsExpr(unsigned Arg) const {
384 return getArg(Arg).get<Expr*>();
387 bool isArgIdent(unsigned Arg) cons
[all...]
H A DTemplate.h86 TemplateArgument Arg) {
91 = Arg;
148 DeducedTemplateArgument(const TemplateArgument &Arg,
150 : TemplateArgument(Arg), DeducedFromArrayBound(DeducedFromArrayBound) { }
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp82 bool isSafeToPromoteArgument(Argument *Arg, bool isByVal) const;
226 static bool AllCallersPassInValidPointerForArgument(Argument *Arg, argument
228 Function *Callee = Arg->getParent();
230 unsigned ArgNo = Arg->getArgNo();
313 bool ArgPromotion::isSafeToPromoteArgument(Argument *Arg, argument
318 if (Arg->use_empty())
346 if (isByValOrInAlloca || AllCallersPassInValidPointerForArgument(Arg, DL))
351 BasicBlock *EntryBlock = Arg->getParent()->begin();
360 if (V == Arg) {
361 // This load actually loads (part of) Arg
[all...]
/external/clang/lib/CodeGen/
H A DCGCUDANV.cpp87 assert(isa<llvm::PointerType>(V->getType()) && "Arg type not PointerType");
116 llvm::Value *Arg = CGF.Builder.CreatePointerCast(CGF.CurFn, CharPtrTy); local
117 CGF.EmitRuntimeCallOrInvoke(cudaLaunchFn, Arg);
/external/llvm/lib/IR/
H A DPassRegistry.cpp48 const PassInfo *PassRegistry::getPassInfo(StringRef Arg) const {
50 StringMapType::const_iterator I = PassInfoStringMap.find(Arg);
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp269 Value *Arg = handleLoopCondition(Cond, Broken); local
275 Broken->addIncoming(*PI == BB ? Arg : Int64Zero, *PI);
278 Term->setCondition(CallInst::Create(Loop, Arg, "", Term));
279 push(Term->getSuccessor(0), Arg);

Completed in 691 milliseconds

1234567891011>>