HomeSort by relevance Sort by last modified time
    Searched refs:Arg (Results 26 - 50 of 177) sorted by null

12 3 4 5 6 7 8

  /external/llvm/runtime/libprofile/
CommonProfiling.c 45 /* Ok, we have an llvmprof argument. Remove it from the arg list and decide
48 const char *Arg = argv[1];
52 if (!strcmp(Arg, "-llvmprof-output")) {
61 printf("Unknown option to the profiler runtime: '%s' - ignored.\n", Arg);
  /hardware/ti/omap3/dspbridge/inc/
std.h 28 *! 01-Mar-2002 kln changed LARGE_MODEL and Arg definition for 28x
32 *! 30-May-2000 srid: Added __TMS320C55X__ for 55x; Arg is void * for 55 .
220 /* Arg should be size of Ptr */
222 typedef Int Arg;
224 typedef void *Arg;
226 typedef LgInt Arg; /* uninterpreted LGSIZE-bit word */
247 * These macros are used to cast 'Arg' types to 'Int' or 'Ptr'.
248 * These macros were added for the 55x since Arg is not the same
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 28 *! 01-Mar-2002 kln changed LARGE_MODEL and Arg definition for 28x
32 *! 30-May-2000 srid: Added __TMS320C55X__ for 55x; Arg is void * for 55 .
222 /* Arg should be size of Ptr */
224 typedef Int Arg;
226 typedef void *Arg;
228 typedef LgInt Arg; /* uninterpreted LGSIZE-bit word */
251 * These macros are used to cast 'Arg' types to 'Int' or 'Ptr'.
252 * These macros were added for the 55x since Arg is not the same
  /external/llvm/include/llvm/
PassRegistry.h 52 const PassInfo *getPassInfo(StringRef Arg) const;
  /external/clang/lib/Sema/
SemaTemplate.cpp 462 const ParsedTemplateArgument &Arg) {
464 switch (Arg.getKind()) {
467 QualType T = SemaRef.GetTypeFromParser(Arg.getAsType(), &DI);
469 DI = SemaRef.Context.getTrivialTypeSourceInfo(T, Arg.getLocation());
474 Expr *E = static_cast<Expr *>(Arg.getAsExpr());
479 TemplateName Template = Arg.getAsTemplate().get();
481 if (Arg.getEllipsisLoc().isValid())
486 Arg.getScopeSpec().getWithLocInContext(
488 Arg.getLocation(),
489 Arg.getEllipsisLoc())
    [all...]
SemaTemplateDeduction.cpp 86 TemplateArgument Arg,
118 QualType Arg,
373 TemplateName Arg,
385 DeducedTemplateArgument NewDeduced(S.Context.getCanonicalTemplateName(Arg));
401 if (S.Context.hasSameTemplateName(Param, Arg))
406 Info.SecondArg = TemplateArgument(Arg);
419 /// \param Arg the argument type
432 QualType Arg,
435 assert(Arg.isCanonical() && "Argument type must be canonical");
439 = dyn_cast<TemplateSpecializationType>(Arg)) {
    [all...]
SemaTemplateInstantiate.cpp 717 void RememberPartiallySubstitutedPack(TemplateArgument Arg) {
718 if (Arg.isNull())
727 TemplateArgs.setArgument(Depth, Index, Arg);
    [all...]
  /external/clang/lib/Lex/
MacroArgs.h 77 const Token *getUnexpArgument(unsigned Arg) const;
87 getPreExpArgument(unsigned Arg, const MacroInfo *MI, Preprocessor &PP);
MacroArgs.cpp 112 const Token *MacroArgs::getUnexpArgument(unsigned Arg) const {
117 // Scan to find Arg.
118 for (; Arg; ++Result) {
119 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
121 --Arg;
123 assert(Result < Start+NumUnexpArgTokens && "Invalid arg #");
147 MacroArgs::getPreExpArgument(unsigned Arg, const MacroInfo *MI,
149 assert(Arg < MI->getNumArgs() && "Invalid argument number!");
155 std::vector<Token> &Result = PreExpArgTokens[Arg];
158 const Token *AT = getUnexpArgument(Arg);
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 195 static int byteArrayReader(uint8_t *B, uint64_t A, void *Arg) {
196 ByteArrayTy &ByteArray = *((ByteArrayTy*)Arg);
206 static int verboseEvaluator(uint64_t *V, unsigned R, void *Arg) {
207 EDDisassembler &disassembler = *(EDDisassembler *)((void **)Arg)[0];
208 raw_ostream &Out = *(raw_ostream *)((void **)Arg)[1];
357 void *Arg[] = { disassembler.get(), &Out };
358 if (operand->evaluate(evaluatedResult, verboseEvaluator, Arg)) {
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 93 const Value *Arg = *AI;
94 if (!Arg->getType()->isPointerTy())
96 Location CSLoc(Arg, UnknownSize, CSTag);
151 const Value *Arg = *I;
152 if (!Arg->getType()->isPointerTy())
154 Location CS2Loc(Arg, UnknownSize, CS2Tag);
171 const Value *Arg = *I;
172 if (!Arg->getType()->isPointerTy())
174 Location CS1Loc(Arg, UnknownSize, CS1Tag);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 170 static inline int getSOImmVal(unsigned Arg) {
173 if ((Arg & ~255U) == 0) return Arg;
175 unsigned RotAmt = getSOImmValRotate(Arg);
178 if (rotr32(~255U, RotAmt) & Arg)
182 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
302 // If 'Arg' can be handled with a single shifter_op return the value.
313 static inline int getT2SOImmVal(unsigned Arg) {
314 // If 'Arg' is an 8-bit splat, then get the encoded value.
315 int Splat = getT2SOImmValSplatVal(Arg);
    [all...]
  /external/pcre/
pcre_scanner.cc 134 const Arg& arg0,
135 const Arg& arg1,
136 const Arg& arg2) {
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 91 ValueT &operator[](KeyT Arg) {
93 Map.insert(std::make_pair(Arg, size_t(0)));
96 Vector.push_back(std::make_pair(Arg, ValueT()));
177 if (const Argument *Arg = dyn_cast<Argument>(Op))
178 if (Arg->hasByValAttr() ||
179 Arg->hasNestAttr() ||
180 Arg->hasStructRetAttr())
545 static const Value *FindSingleUseIdentifiedObject(const Value *Arg) {
546 if (Arg->hasOneUse()) {
547 if (const BitCastInst *BC = dyn_cast<BitCastInst>(Arg))
    [all...]
  /external/llvm/lib/VMCore/
Pass.cpp 191 const PassInfo *Pass::lookupPassInfo(StringRef Arg) {
192 return PassRegistry::getPassRegistry()->getPassInfo(Arg);
272 AnalysisUsage &AnalysisUsage::addPreserved(StringRef Arg) {
273 const PassInfo *PI = Pass::lookupPassInfo(Arg);
  /external/clang/include/clang/Driver/
OptTable.h 32 class Arg;
93 /// getOption - Get the given \arg id's Option instance, lazily creating it
151 Arg *ParseOneArg(const ArgList &Args, unsigned &Index) const;
160 /// missing values; in this case \arg MissingArgCount will be non-zero.
Driver.h 33 class Arg;
115 typedef SmallVector<std::pair<types::ID, const Arg*>, 16> InputList;
185 phases::ID getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg = 0)
281 /// \arg C - The compilation that is being built.
317 /// GetFilePath - Lookup \arg Name in the list of file search paths.
319 /// \arg TC - The tool chain for additional information on
325 /// GetProgramPath - Lookup \arg Name in the list of program search
328 /// \arg TC - The provided tool chain for additional information on
331 /// \arg WantFile - False when searching for an executable file, otherwise
346 /// \arg Phase on the \arg Input, taking in to account argument
    [all...]
Action.h 19 class Arg;
97 const Arg &Input;
99 InputAction(const Arg &_Input, types::ID _Type);
101 const Arg &getInputArg() const { return Input; }
  /external/clang/lib/Driver/
Android.mk 17 Arg.cpp \
Driver.cpp 17 #include "clang/Driver/Arg.h"
110 Arg *A = *it;
123 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
125 Arg *PhaseArg = 0;
163 const Arg *A = *it;
277 if (const Arg *A = Args->getLastArg(options::OPT_ccc_gcc_name))
286 if (const Arg *A = Args->getLastArg(options::OPT_ccc_clang_archs)) {
308 if (const Arg *A = Args->getLastArg(options::OPT_ccc_host_triple))
310 if (const Arg *A = Args->getLastArg(options::OPT_ccc_install_dir))
314 const Arg *A = *it
    [all...]
  /external/llvm/lib/Support/
Threading.cpp 73 static void *ExecuteOnThread_Dispatch(void *Arg) {
74 ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
  /external/chromium/base/
stl_util-inl.h 313 // return type is bool and both arguments have type Arg. It can be used
319 template <class Arg>
320 class STLBinaryPredicate : public STLBinaryFunction<bool, Arg, Arg> {
322 typedef typename STLBinaryPredicate<Arg>::Callback Callback;
324 : STLBinaryFunction<bool, Arg, Arg>(callback) {
  /external/llvm/include/llvm/Support/
CommandLine.h 113 ReallyHidden = 0x60, // Neither -help nor -help-hidden show this arg
161 StringRef Arg) = 0;
480 ValuesClass<DataType> END_WITH_NULL values(const char *Arg, DataType Val,
484 ValuesClass<DataType> Vals(Arg, Val, Desc, ValueArgs);
571 // In which case, the value is required. Otherwise if an arg str has not
625 bool parse(Option &O, StringRef ArgName, StringRef Arg, DataType &V) {
628 ArgVal = Arg;
718 bool parse(Option &O, StringRef ArgName, StringRef Arg, bool &Val);
747 bool parse(Option &O, StringRef ArgName, StringRef Arg, boolOrDefault &Val);
772 bool parse(Option &O, StringRef ArgName, StringRef Arg, int &Val)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 176 SDValue Arg = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
179 InVals.push_back(Arg);
214 SDValue Arg = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
216 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Arg);
218 Arg = DAG.getNode(ISD::AssertSext, dl, MVT::i32, Arg,
220 Arg = DAG.getNode(ISD::TRUNCATE, dl, VA.getLocVT(), Arg);
222 InVals.push_back(Arg);
    [all...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 24 #include "clang/Driver/Arg.h"
52 using clang::driver::Arg;
65 static void ExpandArgsFromBuf(const char *Arg,
184 const Arg *A = *it;
193 if (const Arg *A = Args->getLastArg(OPT_M_Group)) {
211 if (const Arg *A = Args->getLastArg(OPT_Output_Type_Group)) {
458 static void ExpandArgsFromBuf(const char *Arg,
461 const char *FName = Arg + 1;
465 ArgVector.push_back(SaveStringInSet(SavedStrings, Arg));
521 const char *Arg = argv[i]
    [all...]

Completed in 1139 milliseconds

12 3 4 5 6 7 8