HomeSort by relevance Sort by last modified time
    Searched refs:Arg (Results 251 - 275 of 345) sorted by null

<<11121314

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcdce.h 471 typedef void (__RPC_API *RPC_AUTH_KEY_RETRIEVAL_FN)(void *Arg,unsigned short *ServerPrincName,unsigned __LONG32 KeyVer,void **Key,RPC_STATUS *Status);
473 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerRegisterAuthInfoA(RPC_CSTR ServerPrincName,unsigned __LONG32 AuthnSvc,RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn,void *Arg);
474 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerRegisterAuthInfoW(RPC_WSTR ServerPrincName,unsigned __LONG32 AuthnSvc,RPC_AUTH_KEY_RETRIEVAL_FN GetKeyFn,void *Arg);
  /external/clang/lib/AST/
ExprCXX.cpp 220 const Expr *Arg = getArgument();
222 const QualType ArgType = Arg->getType();
500 const Expr *Arg = getArg(I-1);
501 if (!Arg->isDefaultArgument()) {
502 SourceLocation NewEnd = Arg->getLocEnd();
    [all...]
ASTContext.cpp     [all...]
Decl.cpp 308 for (const TemplateArgument &Arg : Args) {
309 switch (Arg.getKind()) {
316 LV.merge(getLVForType(*Arg.getAsType(), computation));
320 if (NamedDecl *ND = dyn_cast<NamedDecl>(Arg.getAsDecl())) {
327 LV.merge(Arg.getNullPtrType()->getLinkageAndVisibility());
333 Arg.getAsTemplateOrTemplatePattern().getAsTemplateDecl())
338 LV.merge(getLVForTemplateArgumentList(Arg.getPackAsArray(), computation));
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 819 Expr *Arg = E->getArg(0);
820 assert(CGM.getContext().hasSameUnqualifiedType(Ty, Arg->getType()) &&
823 return Visit(Arg);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h 238 /// C++0x [temp.arg.explicit]p9.
276 void RememberPartiallySubstitutedPack(TemplateArgument Arg) { }
531 void InventTemplateArgumentLoc(const TemplateArgument &Arg,
    [all...]
SemaExpr.cpp 4323 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType); local
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Support/
APInt.cpp 664 hash_code llvm::hash_value(const APInt &Arg) {
665 if (Arg.isSingleWord())
666 return hash_combine(Arg.VAL);
668 return hash_combine_range(Arg.pVal, Arg.pVal + Arg.getNumWords());
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/clang/tools/scan-build/
scan-build 895 my $Arg = shift;
899 if ($k eq $Arg) {
906 push @$Args, $Arg;
    [all...]
  /external/clang/unittests/AST/
CommentParser.cpp 295 << "InlineCommandComment has " << ICC->getNumArgs() << " arg(s), "
306 StringRef Arg) {
313 << "InlineCommandComment has " << ICC->getNumArgs() << " arg(s), "
317 if (ActualArg != Arg)
320 "expected \"" << Arg.str() << "\"";
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 307 ExprAST *Arg = ParseExpression();
308 if (!Arg) return 0;
309 Args.push_back(Arg);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 331 ExprAST *Arg = ParseExpression();
332 if (!Arg) return 0;
333 Args.push_back(Arg);
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
scan-build 863 my $Arg = shift;
867 if ($k eq $Arg) {
874 push @$Args, $Arg;
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
scan-build 863 my $Arg = shift;
867 if ($k eq $Arg) {
874 push @$Args, $Arg;
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 640 const TemplateArgument &Arg);
Expr.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 916 template <typename T, typename Arg>
917 T *create(Arg A, ProgramStateRef St, const LocationContext *LCtx) {
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 519 unsigned Arg = PluralNumber(Start, End);
522 unsigned ValMod = ValNo % Arg;
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 518 for (CallExpr::arg_iterator Arg = E->arg_begin(), ArgEnd = E->arg_end();
519 Arg != ArgEnd; ++Arg)
520 Writer.AddStmt(*Arg);
    [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 563 friend hash_code hash_value(const APInt &Arg);
    [all...]

Completed in 2863 milliseconds

<<11121314