HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 376 - 400 of 7786) sorted by null

<<11121314151617181920>>

  /external/bison/lib/
bitsetv.c 27 type TYPE. */
30 enum bitset_type type)
38 bytes = bitset_bytes (type, n_bits);
53 bitset_init (bsetv[i], n_bits, type);
67 enum bitset_type type; local
69 type = bitset_type_choose (n_bits, attr);
70 return bitsetv_alloc (n_vecs, n_bits, type);
  /external/boringssl/src/crypto/digest/
internal.h 68 /* type contains a NID identifing the digest function. (For example,
70 int type; member in struct:env_md_st
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
AttributeTypeAndValue.java 14 private ASN1ObjectIdentifier type; field in class:AttributeTypeAndValue
19 type = (ASN1ObjectIdentifier)seq.getObjectAt(0);
38 ASN1ObjectIdentifier type,
41 this.type = type;
47 return type;
58 * type OBJECT IDENTIFIER,
59 * value ANY DEFINED BY type }
67 v.add(type);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemObject.java 8 * A generic PEM object - type, header properties, and byte content.
15 private String type; field in class:PemObject
22 * @param type pem object type.
25 public PemObject(String type, byte[] content)
27 this(type, EMPTY_LIST, content);
33 * @param type pem object type.
37 public PemObject(String type, List headers, byte[] content)
39 this.type = type
    [all...]
  /external/ceres-solver/internal/ceres/
integral_types.h 43 typedef kTrueType type; typedef in struct:ceres::internal::Ternary
47 typedef kFalseType type; typedef in struct:ceres::internal::Ternary
50 #define CERES_INTSIZE(TYPE) \
51 typename Ternary<sizeof(TYPE) * 8 == kBits, TYPE,
61 void>::type >::type >::type >::type >::type
62 type; typedef in struct:ceres::internal::Integer
74 type; typedef in struct:ceres::internal::UnsignedInteger
    [all...]
line_search_direction.h 46 type(LBFGS),
54 LineSearchDirectionType type; member in struct:ceres::internal::LineSearchDirection::Options
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
basic.py 31 type = 'basic' variable in class:AuthBasicAuthenticator
  /external/clang/include/clang/AST/
CommentVisitor.h 19 template <typename T> struct make_ptr { typedef T *type; }; typedef in struct:clang::comments::make_ptr
20 template <typename T> struct make_const_ptr { typedef const T *type; }; typedef in struct:clang::comments::make_const_ptr
25 #define PTR(CLASS) typename Ptr<CLASS>::type
DeclVisitor.h 26 template <typename T> struct make_ptr { typedef T *type; }; typedef in struct:clang::declvisitor::make_ptr
27 template <typename T> struct make_const_ptr { typedef const T *type; }; typedef in struct:clang::declvisitor::make_const_ptr
34 #define PTR(CLASS) typename Ptr<CLASS>::type
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p8.cpp 71 typedef Base type; typedef in struct:test2::Base
79 using Base<T>::type::foo; //expected-error {{redeclaration of using decl}}
89 typedef int type; typedef in namespace:test3::N
95 using N::type;
96 using N::type;
  /external/clang/test/CXX/drs/
dr6xx.cpp 46 typedef int type; typedef in class:dr602::B::C
48 typename C::type ct; // ok, befriended
152 using T = decltype(static_cast<S&&>(s).*&S::n); // expected-error {{different type}}
153 using T = int&&; // expected-error {{different type}}
203 char c[2] = STR(c); // ok, type matches
325 typedef int type;
333 X::type a; // FIXME: private
335 X::type b; // ok
337 int f() { X::type c; } // FIXME: private
338 void g() { X::type d; } // o
    [all...]
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 40 typedef T type; typedef in struct:remove_reference
45 typedef T type; typedef in struct:remove_reference
50 typedef T type; typedef in struct:remove_reference
54 template<typename T> int &f(typename remove_reference<T>::type&);
55 template<typename T> float &f(typename remove_reference<T>::type&&);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
injected-class-name.cpp 9 typedef T type; typedef in struct:X0
12 type f1(T);
19 typename X0<T, Types...>::type X0<T, Types...>::f1(T) { }
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 4 // Metafunction to extract the Nth type from a set of types.
12 typedef Head type; typedef in struct:get_nth_type
15 // Placeholder type when get_nth_type fails.
20 typedef no_type type; typedef in struct:get_nth_type
24 typename get_nth_type<0, Args...>::type first_arg(Args...);
27 typename get_nth_type<1, Args...>::type second_arg(Args...);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
sfinae-1.cpp 23 typedef typename T::trap type; typedef in struct:instantiation_order1::it_is_a_trap
28 typedef T type; typedef in struct:instantiation_order1::enable_if
35 typename enable_if<sizeof(T) == 17>::type
36 f(const T&, typename it_is_a_trap<T>::type* = 0);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p4.cpp 5 template<class T> struct identity { typedef T type; }; typedef in struct:PR8598::identity
8 void f(T C::*, typename identity<T>::type*){}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p11.cpp 12 typedef T type; typedef in struct:identity
16 T* f2(int, typename identity<T>::type = 0);
18 T& f2(U, typename identity<T>::type = 0);
  /external/clang/test/Modules/Inputs/
cxx-templates-c.h 22 template<typename T> struct DontWalkPreviousDeclAfterMerging { struct Inner { typedef T type; }; }; typedef in struct:DontWalkPreviousDeclAfterMerging::Inner
  /external/clang/test/Modules/Inputs/merge-using-decls/
a.h 8 typedef int type; typedef in struct:YA
13 using typename T::type;
20 using typename T::type;
27 using typename T::type;
34 using typename T::type;
40 typedef C<YA>::type I;
41 typedef D<YA>::type I;
42 typedef E<YA>::type I;
43 typedef F<YA>::type I;
b.h 9 typedef int type; typedef in struct:YB
14 int type; member in struct:YBRev
19 using typename T::type;
25 // Mismatch in type/non-type-ness.
27 using T::type;
41 using typename T::Y::type;
47 typedef C<YB>::type I;
49 typedef E<YB>::type I;
50 typedef F<YB>::type I
    [all...]
  /external/clang/test/Parser/
cxx-ambig-paren-expr.cpp 7 // Type id.
29 typedef int type; typedef
33 typedef int type; typedef in namespace:ns
38 typedef int type; typedef in struct:cls
48 if (result((cls::type) i).check())
51 if (result((ns::type) i).check())
54 if (result((::type) i).check())
  /external/clang/test/SemaCXX/
PR9908.cpp 7 typedef typename _Tp::template rebind<_Up>::other type; typedef in struct:__allocator_traits_rebind
15 __allocator_traits_rebind<allocator_type, T>::type;
crash-lambda-12645424.cpp 7 typedef _Tp type; typedef in struct:add_lvalue_reference
14 typedef T type; typedef in struct:C
18 typedef typename C<typename Fun0<T>::type, Funs...>::type type; typedef in struct:C
23 typedef type_list<typename C<Ts, Funs...>::type...> type; typedef in struct:tl_map
28 tl_map< filtered_pattern, add_lvalue_reference > type; member in struct:F
32 F<Pattern> type; member in struct:get_case
36 template<typename Expr> typename get_case<Expr, Pattern>::type operator>>(Expr ); // expected-note {{candidate template ignored}
    [all...]
overload-0x.cpp 5 struct A { // expected-note {{candidate function (the implicit copy assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
7 // expected-note@-2 {{candidate function (the implicit move assignment operator) not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
9 A &operator=(void*); // expected-note {{candidate function not viable: 'this' argument has type 'const test0::A', but method is not marked const}}
25 // expected-error@-3 {{non-const lvalue reference to type 'int' cannot bind to a temporary of type 'void'}}
54 // expected-error@-3 {{cannot initialize a variable of type 'double' with an rvalue of type 'void *'}}
63 struct S { typedef int type; }; typedef in struct:sfinae_test::S
66 struct S<sizeof(int)> { typedef void type; }; typedef in struct:sfinae_test::S
70 template<typename T> int cxx11_ignored(T, typename S<sizeof(f(T(), "foo"))>::type *);
    [all...]
underlying_type.cpp 19 "f has the wrong underlying type");
23 "g has the wrong underlying type");
27 "h has the wrong type");
31 typedef __underlying_type(T) type; // expected-error {{only enumeration types}} typedef in struct:f::underlying_type
34 static_assert(is_same_type<underlying_type<f>::type, char>::value,
35 "f has the wrong underlying type in the template");
37 underlying_type<int>::type e; // expected-note {{requested here}}
42 static_assert(is_same_type<underlying_type<foo>::type, unsigned>::value,
43 "foo has the wrong underlying type");
48 // expected-error@-2 {{variable has incomplete type}}
    [all...]

Completed in 510 milliseconds

<<11121314151617181920>>