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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/content/public/common/
resource_type.cc 9 bool IsResourceTypeFrame(ResourceType type) {
10 return type == RESOURCE_TYPE_MAIN_FRAME || type == RESOURCE_TYPE_SUB_FRAME;
  /external/chromium_org/ppapi/shared_impl/
file_system_util.cc 11 bool FileSystemTypeIsValid(PP_FileSystemType type) {
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) {
19 return (type == PP_FILESYSTEMTYPE_LOCALTEMPORARY ||
20 type == PP_FILESYSTEMTYPE_LOCALPERSISTENT);
24 PP_IsolatedFileSystemType_Private type) {
25 switch (type) {
    [all...]
  /external/chromium_org/net/base/
connection_type_histograms.cc 17 // 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) {
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/
ftp_server_type_histograms.cc 17 // 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) {
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);
  /device/asus/flo/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /device/lge/hammerhead/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /device/lge/mako/camera/hdr/include/
morpho_api.h 18 #define MORPHO_API(type) __declspec(dllexport) extern type
20 #define MORPHO_API(type) extern type
  /external/chromium_org/third_party/WebKit/Source/wtf/
StaticConstructors.h 34 #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/
ExtensionTypes.c 9 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->tp_base
26 PyTypeObject* type = Py_TYPE(obj); local
45 PyTypeObject* type = Py_TYPE(obj); local
    [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/chromium_org/base/
move.h 8 // 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 can be use
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_collection.cc 7 PanelCollection::PanelCollection(Type type)
8 : type_(type) {
  /external/chromium_org/third_party/webrtc/base/
move.h 14 // 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 can be use
    [all...]
socketfactory.h 23 // Returns a new socket for blocking communication. The type can be
28 virtual Socket* CreateSocket(int type) = 0;
29 virtual Socket* CreateSocket(int family, int type) = 0;
30 // Returns a new socket for nonblocking communication. The type can be
32 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
33 virtual AsyncSocket* CreateAsyncSocket(int family, int type) = 0;
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
move.h 16 // 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 can be use
    [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]')}}
  /external/chromium_org/tools/gn/
substitution_type.cc 101 bool SubstitutionIsInOutputDir(SubstitutionType type) {
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) {
111 return type == SUBSTITUTION_LITERAL ||
112 type == SUBSTITUTION_SOURCE |
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elftypesize.asm 8 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/
xdg_user_dir_lookup.h 31 char* xdg_user_dir_lookup(const char *type);
  /external/clang/test/CodeGen/
PR4611-bitfield-layout.c 3 // 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/
instantiate-typedef.cpp 5 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/
test.h 4 int fio_crctest(const char *type);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
socket.c 10 int socket(int domain, int type, int protocol) {
11 return ki_socket(domain, type, protocol);

Completed in 393 milliseconds

1 2 3 4 5 6 7 8 91011>>