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;
221 ArgType ScanfSpecifier::getArgType(ASTContext &Ctx) const {
225 return ArgType::Invalid();
234 return ArgType::PtrTo(Ctx.IntTy);
236 return ArgType::PtrTo(ArgType::AnyCharTy);
238 return ArgType::PtrTo(Ctx.ShortTy);
240 return ArgType::PtrTo(Ctx.LongTy);
243 return ArgType::PtrTo(Ctx.LongLongTy);
245 return ArgType::PtrTo(ArgType(Ctx.LongLongTy, "__int64"))
    [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();
284 return ArgType(Ctx.IntTy, "__int32");
285 case LengthModifier::AsChar: return ArgType::AnyCharTy;
292 return ArgType(Ctx.LongLongTy, "__int64");
294 return ArgType(Ctx.getIntMaxType(), "intmax_t")
    [all...]
FormatString.cpp 19 using clang::analyze_format_string::ArgType;
254 // Methods on ArgType.
257 bool ArgType::matchesType(ASTContext &C, QualType argTy) const {
273 llvm_unreachable("ArgType must be valid");
402 llvm_unreachable("Invalid ArgType Kind!");
405 QualType ArgType::getRepresentativeType(ASTContext &C) const {
409 llvm_unreachable("No representative type for Invalid ArgType");
411 llvm_unreachable("No representative type for Unknown ArgType");
441 std::string ArgType::getRepresentativeTypeName(ASTContext &C) const {
449 // If ArgType is actually a pointer to T, append an asterisk
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode.h 55 enum ArgType {
145 ArgType width() const { return width_; }
169 ArgType width,
189 ArgType width_; // Whether we are looking at a 32/64bit value.
errorcode.cc 38 ArgType width,
sandbox_bpf.h 150 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 220 class ArgType {
230 ArgType(Kind k = UnknownTy, const char *n = nullptr)
232 ArgType(QualType t, const char *n = nullptr)
234 ArgType(CanQualType t) : K(SpecificTy), T(t), Name(nullptr), Ptr(false) {}
236 static ArgType Invalid() { return ArgType(InvalidTy); }
239 /// Create an ArgType which corresponds to the type pointer to A.
240 static ArgType PtrTo(const ArgType& A) {
241 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 180 ArgType type;
201 ArgType* type) {
216 ArgType type;
228 ArgType type;
241 ArgType type;
263 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 352 struct ArgType {
353 ~ArgType();
356 void f1(const ArgType& = ArgType());
362 // CHECK: call void @_ZN5test97ArgTypeD1Ev(%"struct.test9::ArgType"* %
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaChecking.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/include/clang/AST/
ExprObjC.h 698 QualType ArgType;
702 ArgType = (*P)->getType();
707 ArgType = (*P)->getType();
709 if (ArgType.isNull())
710 ArgType = getType();
712 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 155 Type *ArgType = F.getFunctionType()->getParamType(0);
156 switch (ArgType->getTypeID()) {

Completed in 394 milliseconds

1 2 3