Searched defs:type (Results 151 - 175 of 3757) sorted by relevance

1234567891011>>

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCRL.java35 * @param type
37 public MyCRL(String type) { argument
38 super(type);
H A DMyCertificate.java44 * @param type
47 public MyCertificate(String type, byte[] encoding) { argument
48 super(type);
82 return "[My test Certificate, type: " + getType() + "]";
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectPool.java30 * Pool of object of a given type to pick from to help memory usage
48 * @param type Type of objects for this pool
50 public ObjectPool(Class type) argument
52 objectType = type;
59 * @param className Fully qualified name of the type of objects for this pool.
80 * @param type Type of objects for this pool
83 public ObjectPool(Class type, int size) argument
85 objectType = type;
163 // Make sure the object is of the correct type.
171 // throw new IllegalArgumentException("argument type invali
[all...]
/external/boringssl/src/crypto/asn1/
H A Da_type.c67 if ((a->value.ptr != NULL) || (a->type == V_ASN1_NULL))
68 return(a->type);
73 void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) argument
80 a->type=type;
81 if (type == V_ASN1_BOOLEAN)
87 int ASN1_TYPE_set1(ASN1_TYPE *a, int type, const void *value) argument
89 if (!value || (type == V_ASN1_BOOLEAN))
92 ASN1_TYPE_set(a, type, p);
94 else if (type
[all...]
/external/boringssl/src/crypto/digest/
H A Dinternal.h68 /* type contains a NID identifing the digest function. (For example,
70 int type; member in struct:env_md_st
/external/boringssl/src/crypto/evp/
H A Dasn1.c67 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **out, const uint8_t **inp, argument
81 if (!EVP_PKEY_set_type(ret, type)) {
156 switch (key->type) {
/external/boringssl/src/crypto/x509/
H A Da_digest.c65 int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data, argument
80 ret = EVP_Digest(str, i, md, len, type, NULL);
85 int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type, void *asn, argument
94 ret = EVP_Digest(str, i, md, len, type, NULL);
H A Da_sign.c70 const EVP_MD *type)
74 if (!EVP_DigestSignInit(&ctx, NULL, type, NULL, pkey))
68 ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1, X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *asn, EVP_PKEY *pkey, const EVP_MD *type) argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSProcessableByteArray.java18 private final ASN1ObjectIdentifier type; field in class:CMSProcessableByteArray
28 ASN1ObjectIdentifier type,
31 this.type = type;
53 return type;
27 CMSProcessableByteArray( ASN1ObjectIdentifier type, byte[] bytes) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
H A DAttributeTypeAndValue.java14 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);
37 AttributeTypeAndValue( ASN1ObjectIdentifier type, ASN1Encodable value) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DPEMUtil.java17 String type)
19 _header1 = "-----BEGIN " + type + "-----";
20 _header2 = "-----BEGIN X509 " + type + "-----";
21 _footer1 = "-----END " + type + "-----";
22 _footer2 = "-----END X509 " + type + "-----";
16 PEMUtil( String type) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPEMUtil.java19 String type)
21 _header1 = "-----BEGIN " + type + "-----";
22 _header2 = "-----BEGIN X509 " + type + "-----";
23 _footer1 = "-----END " + type + "-----";
24 _footer2 = "-----END X509 " + type + "-----";
18 PEMUtil( String type) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemObject.java8 * 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) argument
27 this(type, EMPTY_LIST, content);
33 * @param type pem object type.
37 public PemObject(String type, List headers, byte[] content) argument
39 this.type
[all...]
H A DPemReader.java39 String type = line.substring(0, index);
43 return loadObject(type);
50 private PemObject loadObject(String type) argument
54 String endMarker = END + type;
84 return new PemObject(type, headers, Base64.decode(buf.toString()));
/external/ceres-solver/internal/ceres/
H A Dintegral_types.h43 typedef kTrueType type; typedef in struct:ceres::internal::Ternary
47 typedef kFalseType type; typedef in struct:ceres::internal::Ternary
61 void>::type >::type >::type >::type >::type
62 type; typedef in struct:ceres::internal::Integer
73 void>::type >::type >
74 type; typedef in struct:ceres::internal::UnsignedInteger
[all...]
H A Dline_search_direction.h46 type(LBFGS),
54 LineSearchDirectionType type; member in struct:ceres::internal::LineSearchDirection::Options
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dbasic.py31 type = 'basic' variable in class:AuthBasicAuthenticator
/external/clang/include/clang/AST/
H A DCommentVisitor.h19 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
H A DDeclVisitor.h26 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/
H A Dp8.cpp71 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/
H A Ddr6xx.cpp46 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
[all...]
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp40 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/
H A Dinjected-class-name.cpp9 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/
H A Dp9-0x.cpp4 // 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/
H A Dsfinae-1.cpp23 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);

Completed in 528 milliseconds

1234567891011>>