Searched refs:type (Results 51 - 75 of 7554) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/chromium/
H A DWritableDataObject.cpp49 void WritableDataObject::clearData(const String& type) argument
51 m_dataMap.remove(type);
52 if (type == mimeTypeTextURIList)
54 else if (type == mimeTypeTextHTML)
77 bool WritableDataObject::setData(const String& type, const String& data) argument
83 PlatformBridge::clipboardWriteData(type, data, "");
86 m_dataMap.set(type, data);
87 if (type == mimeTypeTextURIList)
89 else if (type == mimeTypeTextHTML)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DClassicToken.cs46 int type; field in class:Antlr.Runtime.ClassicToken
54 public ClassicToken(int type) { argument
55 this.type = type;
60 type = oldToken.Type;
66 public ClassicToken(int type, string text) { argument
67 this.type = type;
71 public ClassicToken(int type, string text, int channel) { argument
72 this.type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DClassicToken.cs48 int type; field in class:Antlr.Runtime.ClassicToken
56 public ClassicToken( int type )
58 this.type = type;
64 type = oldToken.Type;
70 public ClassicToken( int type, string text ) argument
72 this.type = type;
76 public ClassicToken( int type, string text, int channel ) argument
78 this.type
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs49 public static Type getComponentType( this Type type )
51 return type.GetElementType();
55 public static ConstructorInfo getConstructor( this Type type, Type[] argumentTypes ) argument
57 return type.GetConstructor( argumentTypes );
61 public static FieldInfo getField( this Type type, string name ) argument
63 FieldInfo field = type.GetField( name );
71 public static string getName( this Type type )
73 return type.Name;
83 public static bool isArray( this Type type )
85 return type
[all...]
/external/aac/libSYS/include/
H A DgenericStds.h99 /* Work around for broken android toolchain: sys/types.h:137: error: 'uint64_t' does not name a type */
139 * Declaring memory areas requires to specify a unique name and a data type. Use the H_ macro
146 * aligned memory addresses (beyond the natural alignment of its type). The preprocesor macro
154 #define H_ALLOC_MEM(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
158 #define H_ALLOC_MEM_OVERLAY(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
163 #define C_ALLOC_MEM(name,type,nu
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Devent_target.js24 * @param {string} type The name of the event.
28 addEventListener: function(type, handler) {
31 if (!(type in this.listeners_)) {
32 this.listeners_[type] = [handler];
34 var handlers = this.listeners_[type];
42 * @param {string} type The name of the event.
46 removeEventListener: function(type, handler) {
49 if (type in this.listeners_) {
50 var handlers = this.listeners_[type];
55 delete this.listeners_[type];
[all...]
/external/chromium-trace/trace-viewer/src/
H A Devent_target.js23 * @param {string} type The name of the event.
27 addEventListener: function(type, handler) {
30 if (!(type in this.listeners_)) {
31 this.listeners_[type] = [handler];
33 var handlers = this.listeners_[type];
41 * @param {string} type The name of the event.
45 removeEventListener: function(type, handler) {
48 if (type in this.listeners_) {
49 var handlers = this.listeners_[type];
54 delete this.listeners_[type];
[all...]
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp39 typedef T type; typedef in struct:X2
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner::vector<type>::push_back;
70 typedef T type; typedef in struct:X4
76 ::X4<type>::g(t);
77 this->::X4<type>::g(t);
84 typedef Integer type; typedef in struct:X4
89 void h(type t) {
91 ::X4<type>::g(t);
92 this->::X4<type>
99 typedef T type; typedef in struct:X5
106 typedef T* type; typedef in struct:X6
117 typedef typename TT<T>::type type; typedef in struct:outer::inner::apply_meta
126 typedef outer_alias::inner::apply_meta<T_type, U_type::template apply> type; typedef in struct:X7
[all...]
/external/clang/test/SemaTemplate/
H A Dtypename-specifier.cpp4 typedef int type; typedef in struct:N::A
11 struct type { }; struct in struct:N::C
12 int type; // expected-note 2{{referenced member 'type' is declared here}} member in struct:N::C
18 typename N::A::type *ip1 = &i; // expected-warning{{'typename' occurs outside of a template}}
19 typename N::B::type *ip2 = &i; // expected-error{{no type named 'type' in 'N::B'}} \
21 typename N::C::type *ip3 = &i; // expected-error{{typename specifier refers to non-type membe
39 typedef typename T::type type; // expected-error {{no type named 'type' in 'N::B'}} \\ typedef in struct:N::X
55 typedef typename N::X<T>::type *type; // expected-note{{in instantiation of template class 'N::X<B>' requested here}} \\ typedef in struct:Y
60 typedef int type; typedef in struct:A
67 struct type { }; struct in struct:C
68 int type; // expected-note{{referenced member 'type' is declared here}} member in struct:C
[all...]
/external/dbus/dbus/
H A Ddbus-memory.h50 #define dbus_new(type, count) ((type*)dbus_malloc (sizeof (type) * (count)))
51 #define dbus_new0(type, count) ((type*)dbus_malloc0 (sizeof (type) * (count)))
/external/icu4c/i18n/
H A Ducln_in.c47 void ucln_i18n_registerCleanup(ECleanupI18NType type, argument
50 U_ASSERT(UCLN_I18N_START < type && type < UCLN_I18N_COUNT);
52 if (UCLN_I18N_START < type && type < UCLN_I18N_COUNT)
54 gCleanupFunctions[type] = func;
/external/icu4c/io/
H A Ducln_io.c48 void ucln_io_registerCleanup(ECleanupIOType type, argument
51 U_ASSERT(UCLN_IO_START < type && type < UCLN_IO_COUNT);
53 if (UCLN_IO_START < type && type < UCLN_IO_COUNT)
55 gCleanupFunctions[type] = func;
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPattern.cpp34 void CanvasPattern::parseRepetitionType(const String& type, bool& repeatX, bool& repeatY, ExceptionCode& ec) argument
37 if (type.isEmpty() || type == "repeat") {
42 if (type == "no-repeat") {
47 if (type == "repeat-x") {
52 if (type == "repeat-y") {
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebKitPluginHostTypes.defs31 type plist_bytes_t = ^array [] of uint8_t;
32 type application_name_t = ^array [] of uint8_t;
33 type data_t = ^array [] of char;
/external/qemu/
H A Dqemu-config.c13 .type = QEMU_OPT_NUMBER,
17 .type = QEMU_OPT_NUMBER,
21 .type = QEMU_OPT_STRING,
25 .type = QEMU_OPT_NUMBER,
28 .type = QEMU_OPT_NUMBER,
32 .type = QEMU_OPT_NUMBER,
36 .type = QEMU_OPT_NUMBER,
40 .type = QEMU_OPT_STRING,
44 .type = QEMU_OPT_STRING,
45 .help = "media type (dis
[all...]
/external/opencv/cv/src/
H A D_cvlist.h84 #define DECLARE_LIST(type, prefix)\
86 struct prefix##element_##type\
88 struct prefix##element_##type* m_prev;\
89 struct prefix##element_##type* m_next;\
90 type m_data;\
92 typedef struct prefix##element_##type ELEMENT_##type;\
94 _LIST_INLINE _CVLIST* prefix##create_list_##type(long);\
95 _LIST_INLINE void prefix##destroy_list_##type(_CVLIST*);\
97 _LIST_INLINE CVPOS prefix##get_head_pos_##type(_CVLIS
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java47 * Boolean type on Geometries to indicate that physics collision
58 protected byte type; field in class:UserData
66 * type and value.
68 * @param type Type of data, should be between 0 and 4.
71 public UserData(byte type, Object value) { argument
72 assert type >= 0 && type <= 4;
73 this.type = type;
86 public static byte getObjectType(Object type) { argument
[all...]
/external/dropbear/
H A Dprocess-packet.c45 unsigned char type; local
50 type = buf_getbyte(ses.payload);
51 TRACE(("process_packet: packet type = %d", type))
53 ses.lastpacket = type;
56 switch(type) {
77 if (ses.requirenext != type) {
79 dropbear_exit("unexpected packet type %d, expected %d", type,
90 TRACE(("Ignoring packet, type
[all...]
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.cpp49 int URLSegments::charactersBefore(ComponentType type, bool includeDelimiter) const argument
51 if (type == Scheme)
59 if (type <= Username)
65 if (type <= Password)
71 if (type <= Host)
77 if (type < Port || (type == Port && includeDelimiter))
79 if (type == Port)
85 if (type <= Path)
91 if (type < Quer
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_editor.cc10 : type(NEW_URL),
15 : type(EXISTING_NODE),
/external/chromium/chrome/common/
H A Dfavicon_url.cc11 FaviconURL::FaviconURL(const GURL& url, IconType type) argument
13 icon_type(type) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsocketfactory.h40 // Returns a new socket for blocking communication. The type can be
42 virtual Socket* CreateSocket(int type) = 0;
44 // Returns a new socket for nonblocking communication. The type can be
46 virtual AsyncSocket* CreateAsyncSocket(int type) = 0;
/external/clang/test/CXX/temp/temp.names/
H A Dp4.cpp6 typedef U* type; typedef in struct:meta::apply
11 void f(typename T::template apply<U>::type);
/external/clang/test/FixIt/
H A Dno-macro-fixit.c4 #define va_arg(ap, type) __builtin_va_arg(ap, type)
/external/clang/test/Sema/
H A Dvector-cast.c13 v2 = (t2)v1; // -expected-error {{invalid conversion between vector type \
15 v1 = (t1)v2; // -expected-error {{invalid conversion between vector type \
20 type 't1' and scalar type 'char *'}}
23 type 't1' and integer type 'short' of different size}}
27 type 't1' and integer type 'short' of different size}}
29 type 't1' and scalar type 'cha
[all...]

Completed in 500 milliseconds

1234567891011>>