HomeSort by relevance Sort by last modified time
    Searched refs:ArgType (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/lib/Analysis/
ScanfFormatString.cpp 19 using clang::analyze_format_string::ArgType;
212 ArgType ScanfSpecifier::getArgType(ASTContext &Ctx) const {
216 return ArgType::Invalid();
225 return ArgType::PtrTo(Ctx.IntTy);
227 return ArgType::PtrTo(ArgType::AnyCharTy);
229 return ArgType::PtrTo(Ctx.ShortTy);
231 return ArgType::PtrTo(Ctx.LongTy);
234 return ArgType::PtrTo(Ctx.LongLongTy);
236 return ArgType::PtrTo(ArgType(Ctx.getIntMaxType(), "intmax_t"))
    [all...]
PrintfFormatString.cpp 19 using clang::analyze_format_string::ArgType;
260 ArgType PrintfSpecifier::getArgType(ASTContext &Ctx,
265 return ArgType::Invalid();
271 return ArgType(ArgType::WIntTy, "wint_t");
273 return ArgType::Invalid();
282 case LengthModifier::AsChar: return ArgType::AnyCharTy;
289 return ArgType(Ctx.getIntMaxType(), "intmax_t");
292 return ArgType();
294 return ArgType(Ctx.getPointerDiffType(), "ptrdiff_t")
    [all...]
FormatString.cpp 19 using clang::analyze_format_string::ArgType;
233 // Methods on ArgType.
236 bool ArgType::matchesType(ASTContext &C, QualType argTy) const {
252 llvm_unreachable("ArgType must be valid");
381 llvm_unreachable("Invalid ArgType Kind!");
384 QualType ArgType::getRepresentativeType(ASTContext &C) const {
388 llvm_unreachable("No representative type for Invalid ArgType");
390 llvm_unreachable("No representative type for Unknown ArgType");
420 std::string ArgType::getRepresentativeTypeName(ASTContext &C) const {
428 // If ArgType is actually a pointer to T, append an asterisk
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 48 enum ArgType {
138 ArgType width() const { return width_; }
162 ArgType width,
182 ArgType width_; // Whether we are looking at a 32/64bit value.
errorcode.cc 33 ArgType width,
sandbox_bpf.h 158 ErrorCode::ArgType is_32bit,
  /external/clang/test/SemaTemplate/
instantiate-expr-3.cpp 94 template<typename ArgType>
100 (void)__builtin_va_arg(va, ArgType);
107 template<typename VaList, typename ArgType>
113 (void)__builtin_va_arg(va, ArgType); // expected-error{{int}}
  /external/eigen/Eigen/src/Core/util/
Meta.h 119 template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)>
120 struct unary_result_of_select {typedef ArgType type;};
122 template<typename Func, typename ArgType>
123 struct unary_result_of_select<Func, ArgType, sizeof(has_std_result_type)> {typedef typename Func::result_type type;};
125 template<typename Func, typename ArgType>
126 struct unary_result_of_select<Func, ArgType, sizeof(has_tr1_result)> {typedef typename Func::template result<Func(ArgType)>::type type;};
128 template<typename Func, typename ArgType>
129 struct result_of<Func(ArgType)> {
133 static has_tr1_result testFunctor(T const *, typename T::template result<T(ArgType)>::type const * = 0)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 213 class ArgType {
223 ArgType(Kind k = UnknownTy, const char *n = 0) : K(k), Name(n), Ptr(false) {}
224 ArgType(QualType t, const char *n = 0)
226 ArgType(CanQualType t) : K(SpecificTy), T(t), Name(0), Ptr(false) {}
228 static ArgType Invalid() { return ArgType(InvalidTy); }
231 /// Create an ArgType which corresponds to the type pointer to A.
232 static ArgType PtrTo(const ArgType& A) {
233 assert(A.K >= InvalidTy && "ArgType cannot be pointer to invalid/unknown")
    [all...]
  /external/chromium_org/sandbox/win/src/
internal_types.h 17 enum ArgType {
policy_engine_params.h 98 ParameterSet(ArgType real_type, const void* address)
110 ArgType real_type_;
crosscall_server.cc 181 ArgType type;
202 ArgType* type) {
217 ArgType type;
229 ArgType type;
242 ArgType type;
264 ArgType type;
crosscall_client.h 80 ArgType GetType() {
119 ArgType GetType() {
164 ArgType GetType() {
205 ArgType GetType() {
235 ArgType GetType() {
284 ArgType GetType() {
crosscall_params.h 68 ArgType type_;
224 bool is_in_out, ArgType type) {
crosscall_server.h 104 void* GetRawParameter(uint32 index, uint32* size, ArgType* type);
160 ArgType args[kMaxIpcParams];
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
callback.h 125 template <typename ArgType>
127 INVALIDATION_CALLBACK1_TYPE(ArgType)* callback,
128 typename internal::Identity<ArgType>::type arg) {
130 &::base::Callback<void(ArgType)>::Run, base::Owned(callback), arg));
  /external/clang/test/CodeGenCXX/
destructors.cpp 355 struct ArgType {
356 ~ArgType();
359 void f1(const ArgType& = ArgType());
365 // CHECK: call void @_ZN5test97ArgTypeD1Ev(%"struct.test9::ArgType"* %
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaTemplate.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 225 QualType ArgType = Context.getCanonicalType(argDecl->getType());
226 Qualifiers::ObjCLifetime propertyLifetime = ArgType.getObjCLifetime();
227 bool RetainableObject = ArgType->isObjCRetainableType();
230 ArgType->getAs<ObjCObjectPointerType>()) {
294 QualType ArgType = argDecl->getType();
295 if (!Ctx.hasSameUnqualifiedType(ArgType, GRT) ||
  /external/clang/include/clang/AST/
ExprObjC.h 697 QualType ArgType;
701 ArgType = (*P)->getType();
706 ArgType = (*P)->getType();
708 if (ArgType.isNull())
709 ArgType = getType();
711 return ArgType;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 330 Type * ArgType = P.Val->getType();
349 ArgType, Addrspace));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 152 Type *ArgType = F.getFunctionType()->getParamType(0);
153 switch (ArgType->getTypeID()) {

Completed in 479 milliseconds

1 2 3