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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
directive-type-diagnostics.s 6 .type symbol 32
7 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '%<type>' or "<type>"
8 // CHECK: .type symbol 32
  /external/llvm/test/MC/ELF/ARM/
directive-type-diagnostics.s 6 .type symbol 32
7 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '%<type>' or "<type>"
8 // CHECK: .type symbol 32
  /external/llvm/test/MC/ELF/
gnu-type-diagnostics.s 3 .type TYPE FUNC
4 // CHECK: error: unsupported attribute in '.type' directive
5 // CHECK: .type TYPE FUNC
8 .type type stt_func
9 // CHECK: error: unsupported attribute in '.type' directive
10 // CHECK: .type type stt_fun
    [all...]
gnu-type.s 3 .type TYPE STT_FUNC
4 // CHECK: .type TYPE,@function
6 .type comma_TYPE, STT_FUNC
7 // CHECK: .type comma_TYPE,@function
9 .type at_TYPE, @STT_FUNC
10 // CHECK: .type at_TYPE,@function
12 .type percent_TYPE, %STT_FUNC
13 // CHECK: .type percent_TYPE,@functio
    [all...]
  /external/llvm/test/MC/MachO/ARM/
directive-type-diagnostics.s 6 .type symbol 32
7 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '%<type>' or "<type>"
8 // CHECK: .type symbol 32
  /external/libchrome/base/
move.h 15 // Use DISALLOW_COPY_AND_ASSIGN instead, or if your type will be used in
17 #define MOVE_ONLY_TYPE_FOR_CPP_03(type) \
18 DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type)
24 // ownership of the type through a base::Callback without heap-allocating it
35 #define DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type) \
37 type(const type&) = delete; \
38 void operator=(const type&) = delete; \
45 #define DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type) \
47 type(const type&) = delete;
    [all...]
  /external/libweave/third_party/chromium/base/
move.h 15 // Use DISALLOW_COPY_AND_ASSIGN instead, or if your type will be used in
17 #define MOVE_ONLY_TYPE_FOR_CPP_03(type) \
18 DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type)
24 // ownership of the type through a base::Callback without heap-allocating it
35 #define DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type) \
37 type(const type&) = delete; \
38 void operator=(const type&) = delete; \
45 #define DISALLOW_COPY_AND_ASSIGN_WITH_MOVE_FOR_BIND(type) \
47 type(const type&) = delete;
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SNIMatcher.java 39 * a particular type, such as host names.
53 // the type of the server name that this matcher performs on
54 private final int type; field in class:SNIMatcher
57 * Creates an {@code SNIMatcher} using the specified server name type.
59 * @param type
60 * the type of the server name that this matcher performs on
62 * @throws IllegalArgumentException if {@code type} is not in the range
65 protected SNIMatcher(int type) {
66 if (type < 0) {
68 "Server name type cannot be less than zero")
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/testdata/
typeswitch.golden 2 Parenthesized type switch expressions originally
6 Only type-switches that didn't declare a variable
7 in the type switch type assertion and which
9 cases were permitted to have their type assertion parenthesized
12 type switch header or in the case.
20 switch x.(type) { // should remain the same
22 switch x.(type) { // should become: switch x.(type) {
25 switch x.(type) { // should remain the sam
    [all...]
typeswitch.input 2 Parenthesized type switch expressions originally
6 Only type-switches that didn't declare a variable
7 in the type switch type assertion and which
9 cases were permitted to have their type assertion parenthesized
12 type switch header or in the case.
20 switch x.(type) { // should remain the same
22 switch (x.(type)) { // should become: switch x.(type) {
25 switch x.(type) { // should remain the sam
    [all...]
  /prebuilts/go/linux-x86/src/cmd/gofmt/testdata/
typeswitch.golden 2 Parenthesized type switch expressions originally
6 Only type-switches that didn't declare a variable
7 in the type switch type assertion and which
9 cases were permitted to have their type assertion parenthesized
12 type switch header or in the case.
20 switch x.(type) { // should remain the same
22 switch x.(type) { // should become: switch x.(type) {
25 switch x.(type) { // should remain the sam
    [all...]
typeswitch.input 2 Parenthesized type switch expressions originally
6 Only type-switches that didn't declare a variable
7 in the type switch type assertion and which
9 cases were permitted to have their type assertion parenthesized
12 type switch header or in the case.
20 switch x.(type) { // should remain the same
22 switch (x.(type)) { // should become: switch x.(type) {
25 switch x.(type) { // should remain the sam
    [all...]
  /external/clang/test/Modules/
merge-anon-in-template.cpp 6 is_floating<int>::type t;
  /external/cblas/testing/
auxiliary.c 8 void get_transpose_type(char *type, enum CBLAS_TRANSPOSE *trans) {
9 if( (strncmp( type,"n",1 )==0)||(strncmp( type,"N",1 )==0) )
11 else if( (strncmp( type,"t",1 )==0)||(strncmp( type,"T",1 )==0) )
13 else if( (strncmp( type,"c",1 )==0)||(strncmp( type,"C",1 )==0) )
18 void get_uplo_type(char *type, enum CBLAS_UPLO *uplo) {
19 if( (strncmp( type,"u",1 )==0)||(strncmp( type,"U",1 )==0)
    [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...]
  /external/clang/test/Sema/
c11-typedef-redef.c 3 typedef int type; typedef
4 typedef type type; typedef
5 typedef int type; typedef
9 typedef type type2;
13 typedef int vla[N]; // expected-error{{redefinition of typedef for variably-modified type 'int [N]'}}
17 typedef vla2 vla3; // expected-error{{redefinition of typedef for variably-modified type 'vla2' (aka 'int [N]')}}
  /libcore/ojluni/src/main/java/java/security/cert/
CRL.java 48 // the CRL type
49 private String type; field in class:CRL
52 * Creates a CRL of the specified type.
54 * @param type the standard name of the CRL type.
60 protected CRL(String type) {
61 this.type = type;
65 * Returns the type of this CRL.
67 * @return the type of this CRL
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/detail/
tuple.hpp 67 typename CvtOp<typename tuple_element<0, Tuple>::type>::type,
68 typename CvtOp<typename tuple_element<1, Tuple>::type>::type
69 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
75 typename CvtOp<typename tuple_element<0, Tuple>::type>::type,
76 typename CvtOp<typename tuple_element<1, Tuple>::type>::type,
77 typename CvtOp<typename tuple_element<2, Tuple>::type>::typ
78 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
88 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
99 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
111 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
124 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
138 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
153 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
169 > type; typedef in struct:cv::cudev::tuple_detail::ConvertTuple
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyerrors.swg 7 PyObject* type = 0;
10 type = PyExc_MemoryError;
13 type = PyExc_IOError;
16 type = PyExc_RuntimeError;
19 type = PyExc_IndexError;
22 type = PyExc_TypeError;
25 type = PyExc_ZeroDivisionError;
28 type = PyExc_OverflowError;
31 type = PyExc_SyntaxError;
34 type = PyExc_ValueError
    [all...]
  /external/libdrm/tests/util/
kms.h 29 const char *util_lookup_encoder_type_name(unsigned int type);
30 const char *util_lookup_connector_status_name(unsigned int type);
31 const char *util_lookup_connector_type_name(unsigned int type);
  /frameworks/base/drm/java/android/drm/
DrmInfoEvent.java 28 // Please add newly defined type constants to the end of the list,
57 // Add more type constants here...
60 // We may want to add a user-defined type constant, such as
68 * @param type Type of the event. Must be any of the event types defined above,
72 public DrmInfoEvent(int uniqueId, int type, String message) {
73 super(uniqueId, type, message);
74 checkTypeValidity(type);
81 * @param type Type of the event. Must be any of the event types defined above
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
yes_no_type.hpp 23 typedef char (& type)[I]; typedef in struct:boost::algorithm::size_descriptor
26 typedef size_descriptor<1>::type yes_type;
27 typedef size_descriptor<2>::type no_type;
  /system/extras/simpleperf/nonlinux_support/include/linux/
ioctl.h 17 #define __IO(type, nr)
18 #define __IOR(type, nr, size)
19 #define __IOW(type, nr, size)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
reloc-uw.s 3 .macro uw, type
4 .proc uw\type
5 .\type uw\type
6 uw\type:
9 .endp uw\type
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvsb/
define.s 3 .type protected,"object"
6 .type hidden,"object"
9 .type internal,"object"

Completed in 695 milliseconds

1 2 3 4 5 6 7 8 91011>>