Searched refs:type (Results 1 - 25 of 19236) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dgnu-type-diagnostics.s3 .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_func
13 .type symbol 32
14 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '
[all...]
H A Dgnu-type.s3 .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,@function
15 .type string_TYPE, "STT_FUNC"
16 // CHECK: .type string_TYP
[all...]
/external/chromium_org/content/public/common/
H A Dresource_type.cc9 bool IsResourceTypeFrame(ResourceType type) { argument
10 return type == RESOURCE_TYPE_MAIN_FRAME || type == RESOURCE_TYPE_SUB_FRAME;
/external/chromium_org/ppapi/shared_impl/
H A Dfile_system_util.cc11 bool FileSystemTypeIsValid(PP_FileSystemType type) { argument
12 return (type == PP_FILESYSTEMTYPE_LOCALPERSISTENT ||
13 type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
14 type == PP_FILESYSTEMTYPE_EXTERNAL ||
15 type == PP_FILESYSTEMTYPE_ISOLATED);
18 bool FileSystemTypeHasQuota(PP_FileSystemType type) { argument
19 return (type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
20 type == PP_FILESYSTEMTYPE_LOCALPERSISTENT);
24 PP_IsolatedFileSystemType_Private type) {
25 switch (type) {
23 IsolatedFileSystemTypeToRootName( PP_IsolatedFileSystemType_Private type) argument
[all...]
/external/chromium_org/net/base/
H A Dconnection_type_histograms.cc17 // of that type during that session. In the second group (counter2), each
18 // counter is the number of connections of that type the user has seen during
23 void UpdateConnectionTypeHistograms(ConnectionType type) { argument
27 if (type >= 0 && type < NUM_OF_CONNECTION_TYPES) {
28 if (!had_connection_type[type]) {
29 had_connection_type[type] = true;
31 type, NUM_OF_CONNECTION_TYPES);
35 type, NUM_OF_CONNECTION_TYPES);
37 NOTREACHED(); // Someone's logging an invalid type!
[all...]
/external/chromium_org/net/ftp/
H A Dftp_server_type_histograms.cc17 // seen an FTP server of a given type during that session. In the second
18 // histogram we tally the number of transactions with FTP server of a given type
20 void UpdateFtpServerTypeHistograms(FtpServerType type) { argument
22 if (type >= 0 && type < NUM_OF_SERVER_TYPES) {
23 if (!had_server_type[type]) {
24 had_server_type[type] = true;
26 type, NUM_OF_SERVER_TYPES);
30 type, NUM_OF_SERVER_TYPES);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStaticConstructors.h34 #define DEFINE_GLOBAL(type, name, ...) \
35 void* name##Storage[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)]; \
36 const type& name = *reinterpret_cast<type*>(&name##Storage);
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DExtensionTypes.c9 PyTypeObject* type = Py_TYPE(obj); local
10 /* try to find the first parent type that has a different tp_dealloc() function */
11 while (type && type->tp_dealloc != current_tp_dealloc)
12 type = type->tp_base;
13 while (type && type->tp_dealloc == current_tp_dealloc)
14 type = type
26 PyTypeObject* type = Py_TYPE(obj); local
45 PyTypeObject* type = Py_TYPE(obj); local
[all...]
/external/chromium_org/base/
H A Dmove.h8 // Macro with the boilerplate that makes a type move-only in C++03.
13 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
43 // like they're using a phantom type.
79 // gives us a move-only type.
118 // It is tempting to want to use the RValue type in function parameters, but
125 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
130 // reference as if it were the move-only type itself. Unfortunately,
158 // value of type scoped_ptr<Child> even if you add a constructor to
166 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
168 // In Boost.Move, RValue is the boost::rv<> template. This type ca
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel_collection.cc7 PanelCollection::PanelCollection(Type type) argument
8 : type_(type) {
/external/chromium_org/third_party/webrtc/base/
H A Dmove.h14 // Macro with the boilerplate that makes a type move-only in C++03.
19 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
49 // like they're using a phantom type.
85 // gives us a move-only type.
124 // It is tempting to want to use the RValue type in function parameters, but
131 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
136 // reference as if it were the move-only type itself. Unfortunately,
154 // value of type scoped_ptr<Child> even if you add a constructor to
162 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
164 // In Boost.Move, RValue is the boost::rv<> template. This type ca
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dmove.h16 // Macro with the boilerplate that makes a type move-only in C++03.
21 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
51 // like they're using a phantom type.
87 // gives us a move-only type.
126 // It is tempting to want to use the RValue type in function parameters, but
133 // Boost.Move makes RValue a fieldless child of the move-only type. RValue&
138 // reference as if it were the move-only type itself. Unfortunately,
166 // value of type scoped_ptr<Child> even if you add a constructor to
174 // private to the move-only type, and we don't use the reinterpret_cast<> hack.
176 // In Boost.Move, RValue is the boost::rv<> template. This type ca
[all...]
/external/smack/src/org/xbill/DNS/
H A DInvalidTypeException.java6 * An exception thrown when an invalid type code is specified.
14 InvalidTypeException(int type) { argument
15 super("Invalid DNS type: " + type);
/external/clang/test/Sema/
H A Dc11-typedef-redef.c3 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]')}}
/external/chromium_org/tools/gn/
H A Dsubstitution_type.cc101 bool SubstitutionIsInOutputDir(SubstitutionType type) { argument
102 return type == SUBSTITUTION_SOURCE_GEN_DIR ||
103 type == SUBSTITUTION_SOURCE_OUT_DIR ||
104 type == SUBSTITUTION_ROOT_GEN_DIR ||
105 type == SUBSTITUTION_ROOT_OUT_DIR ||
106 type == SUBSTITUTION_TARGET_GEN_DIR ||
107 type == SUBSTITUTION_TARGET_OUT_DIR;
110 bool IsValidSourceSubstitution(SubstitutionType type) { argument
111 return type == SUBSTITUTION_LITERAL ||
112 type
121 IsValidToolSubstutition(SubstitutionType type) argument
132 IsValidCompilerSubstitution(SubstitutionType type) argument
145 IsValidCompilerOutputsSubstitution(SubstitutionType type) argument
151 IsValidLinkerSubstitution(SubstitutionType type) argument
161 IsValidLinkerOutputsSubstitution(SubstitutionType type) argument
167 IsValidCopySubstitution(SubstitutionType type) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
H A Delftypesize.asm8 type a function label
12 type b object label
16 type c function label
21 type d object label
25 type e object label
28 type f object label
/external/chromium_org/base/third_party/xdg_user_dirs/
H A Dxdg_user_dir_lookup.h31 char* xdg_user_dir_lookup(const char *type);
/external/clang/test/CodeGen/
H A DPR4611-bitfield-layout.c3 // CHECK: struct.object_entry = type { i32 }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
/external/clang/test/SemaTemplate/
H A Dinstantiate-typedef.cpp5 typedef T* type; // expected-error{{'type' declared as a pointer to a reference}} typedef in struct:add_pointer
8 add_pointer<int>::type test1(int * ptr) { return ptr; }
10 add_pointer<float>::type test2(int * ptr) {
11 return ptr; // expected-error{{cannot initialize return object of type 'add_pointer<float>::type' (aka 'float *') with an lvalue of type 'int *'}}
14 add_pointer<int&>::type // expected-note{{in instantiation of template class 'add_pointer<int &>' requested here}}
/external/fio/crc/
H A Dtest.h4 int fio_crctest(const char *type);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dsocket.c10 int socket(int domain, int type, int protocol) { argument
11 return ki_socket(domain, type, protocol);
/external/chromium_org/net/quic/congestion_control/
H A Dreceive_algorithm_interface.cc13 CongestionFeedbackType type) {
14 switch (type) {
12 Create( CongestionFeedbackType type) argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCounters.cpp38 int InspectorCounters::counterValue(CounterType type) argument
40 return s_counters[type];
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2263.js28 var obj = { length: { valueOf: function(){ throw { type: "length" }}}};
29 var sep = { toString: function(){ throw { type: "toString" }}};
/external/clang/test/Analysis/
H A Delementtype.c4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;

Completed in 1095 milliseconds

1234567891011>>