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

1 2 3 4 5 6 7 8 91011>>

  /test/vts/compilation_tools/vtsc/code_gen/common/
HalHidlCodeGenUtils.cpp 22 bool IsElidableType(const VariableType& type) {
23 if (type == TYPE_SCALAR || type == TYPE_ENUM || type == TYPE_MASK ||
24 type == TYPE_POINTER || type == TYPE_HIDL_INTERFACE ||
25 type == TYPE_VOID) {
31 bool IsConstType(const VariableType& type) {
32 if (type == TYPE_ARRAY || type == TYPE_VECTOR || type == TYPE_REF |
    [all...]
  /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
  /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...]
  /external/swiftshader/third_party/subzero/crosstest/
test_bitmanip.h 17 #define X(inst, type) \
18 type test_##inst(type a); \
19 type test_alloca_##inst(type a); \
20 type test_const_##inst(type ignored); \
21 type my_##inst(type a);
26 #define X(type, builtin_name)
    [all...]
test_sync_atomic.h 17 #define X(inst, type) \
18 type test_##inst(bool fetch_first, volatile type *ptr, type a); \
19 type test_alloca_##inst(bool fetch, volatile type *ptr, type a); \
20 type test_const_##inst(bool fetch, volatile type *ptr, type ignored)
    [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/pdfium/core/fxcrt/css/
cfx_cssvalue.cpp 9 CFX_CSSValue::CFX_CSSValue(CFX_CSSPrimitiveType type) : m_value(type) {}
  /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...]
  /frameworks/base/tools/aapt2/
Resource_test.cpp 24 const ResourceType* type = ParseResourceType("anim"); local
25 ASSERT_NE(type, nullptr);
26 EXPECT_EQ(*type, ResourceType::kAnim);
28 type = ParseResourceType("animator");
29 ASSERT_NE(type, nullptr);
30 EXPECT_EQ(*type, ResourceType::kAnimator);
32 type = ParseResourceType("array");
33 ASSERT_NE(type, nullptr);
34 EXPECT_EQ(*type, ResourceType::kArray);
36 type = ParseResourceType("attr")
    [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...]
  /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.27/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.27/ld/testsuite/ld-elfvsb/
define.s 3 .type protected,"object"
6 .type hidden,"object"
9 .type internal,"object"

Completed in 561 milliseconds

1 2 3 4 5 6 7 8 91011>>