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

1234567891011>>

/external/webkit/WebCore/page/
H A DConnection.cpp34 Connection::ConnectionType Connection::type() const function in class:WebCore::Connection
36 return networkStateNotifier().type();
/external/webkit/WebCore/platform/
H A DStaticConstructors.h27 // declare the global objects with a different type that can be POD default
55 #define DEFINE_GLOBAL(type, name) \
56 const type name;
58 #define DEFINE_GLOBAL(type, name, arg...) \
59 const type name;
61 #define DEFINE_GLOBAL(type, name, ...) \
62 const type name;
69 #define DEFINE_GLOBAL(type, name) \
70 void * name[(sizeof(type) + sizeof(void *) - 1) / sizeof(void *)];
72 #define DEFINE_GLOBAL(type, nam
[all...]
/external/bluetooth/glib/gio/
H A Dgcontenttypeprivate.h31 char * _g_unix_content_type_unalias (const char *type);
32 char **_g_unix_content_type_get_parents (const char *type);
H A Dgcontenttype.h36 gboolean g_content_type_is_a (const char *type,
38 gboolean g_content_type_is_unknown (const char *type);
39 char * g_content_type_get_description (const char *type);
40 char * g_content_type_get_mime_type (const char *type);
41 GIcon * g_content_type_get_icon (const char *type);
42 gboolean g_content_type_can_be_executable (const char *type);
/external/webkit/WebCore/wml/
H A DWMLIntrinsicEventHandler.cpp32 bool WMLIntrinsicEventHandler::registerIntrinsicEvent(WMLIntrinsicEventType type, PassRefPtr<WMLIntrinsicEvent> event) argument
34 if (m_events.contains(type))
37 m_events.set(type, event);
41 void WMLIntrinsicEventHandler::deregisterIntrinsicEvent(WMLIntrinsicEventType type) argument
43 if (m_events.contains(type))
44 m_events.remove(type);
47 void WMLIntrinsicEventHandler::triggerIntrinsicEvent(WMLIntrinsicEventType type) const
49 RefPtr<WMLIntrinsicEvent> event = m_events.get(type);
54 bool WMLIntrinsicEventHandler::hasIntrinsicEvent(WMLIntrinsicEventType type) const
56 return m_events.contains(type);
[all...]
/external/webkit/WebCore/svg/
H A DSVGAnimatedPropertyTraits.h47 static ReturnType toReturnType(const StoredType& type) { return type; } argument
48 static String toString(PassType type) { return type.valueAsString(); } argument
59 static ReturnType toReturnType(const StoredType& type) { return type; } argument
60 static String toString(PassType type) { return type ? "true" : "false"; } argument
71 static ReturnType toReturnType(const StoredType& type) { return type; } argument
72 toString(PassType type) argument
83 toReturnType(const StoredType& type) argument
84 toString(PassType type) argument
95 toReturnType(const StoredType& type) argument
96 toString(PassType type) argument
107 toReturnType(const StoredType& type) argument
108 toString(PassType type) argument
119 toReturnType(const StoredType& type) argument
120 toString(PassType type) argument
131 toReturnType(const StoredType& type) argument
132 toString(PassType type) argument
143 toReturnType(const StoredType& type) argument
144 toString(PassType type) argument
155 toReturnType(const StoredType& type) argument
156 toString(PassType type) argument
167 toReturnType(const StoredType& type) argument
168 toString(PassType type) argument
179 toReturnType(const StoredType& type) argument
180 toString(PassType type) argument
[all...]
/external/webkit/WebKit/chromium/public/
H A DWebMediaPlayerAction.h44 Type type; member in struct:WebKit::WebMediaPlayerAction
48 : type(Unknown), enable(false) { }
49 WebMediaPlayerAction(Type type, bool enable) argument
50 : type(type), enable(enable) { }
/external/webkit/WebCore/css/
H A DthemeWin.css35 input:not([type]),
36 input[type="text"],
37 input[type="password"] {
41 input[type="search"] {
45 input[type="checkbox"] {
49 input[type="radio"] {
55 FIXME: Add input[type="file"] once we figure out our file inputs.
56 FIXME: Add input[type="image"] once we figure out our image inputs.
57 FIXME: We probably do the wrong thing if you put an invalid input type.
61 input:not([type])
[all...]
H A DCSSQuirkPrimitiveValue.h34 static PassRefPtr<CSSQuirkPrimitiveValue> create(double value, UnitTypes type) argument
36 return adoptRef(new CSSQuirkPrimitiveValue(value, type));
40 CSSQuirkPrimitiveValue(double num, UnitTypes type) argument
41 : CSSPrimitiveValue(num, type)
/external/icu4c/common/
H A Ducln_cmn.c32 ucln_common_registerCleanup(ECleanupCommonType type, argument
35 U_ASSERT(UCLN_COMMON_START < type && type < UCLN_COMMON_COUNT);
36 if (UCLN_COMMON_START < type && type < UCLN_COMMON_COUNT)
38 gCommonCleanupFunctions[type] = func;
43 ucln_registerCleanup(ECleanupLibraryType type, argument
46 U_ASSERT(UCLN_START < type && type < UCLN_COMMON);
47 if (UCLN_START < type
[all...]
/external/icu4c/i18n/
H A Ducln_in.c40 void ucln_i18n_registerCleanup(ECleanupI18NType type, argument
43 U_ASSERT(UCLN_I18N_START < type && type < UCLN_I18N_COUNT);
45 if (UCLN_I18N_START < type && type < UCLN_I18N_COUNT)
47 gCleanupFunctions[type] = func;
/external/icu4c/io/
H A Ducln_io.c41 void ucln_io_registerCleanup(ECleanupIOType type, argument
44 U_ASSERT(UCLN_IO_START < type && type < UCLN_IO_COUNT);
46 if (UCLN_IO_START < type && type < UCLN_IO_COUNT)
48 gCleanupFunctions[type] = func;
/external/iptables/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/external/webkit/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/bluetooth/glib/glib/
H A Dgslice.h46 #define g_slice_new(type) ((type*) g_slice_alloc (sizeof (type)))
47 #define g_slice_new0(type) ((type*) g_slice_alloc0 (sizeof (type)))
60 /* we go through extra hoops to ensure type safety */
61 #define g_slice_dup(type, mem) \
62 (1 ? (type*) g_slice_copy (sizeof (type), (me
[all...]
/external/elfutils/libebl/
H A Darm_symbol.c89 /* Determine relocation type string for Alpha. */
91 arm_reloc_type_name (int type, char *buf, size_t len) argument
93 if (type >= R_ARM_NONE && type <= R_ARM_ALU_SBREL_27_20)
94 return reloc_map_table[type];
96 if (type >= R_ARM_GNU_VTENTRY && type <= R_ARM_THM_PC9)
97 return reloc_map_table2[type - R_ARM_GNU_VTENTRY];
99 if (type >= R_ARM_RXPC25 && type <
108 arm_reloc_type_check(int type) argument
[all...]
H A Deblobjnotetypename.c1 /* Return note type name.
25 ebl_object_note_type_name (ebl, type, buf, len)
27 uint32_t type;
31 const char *res = ebl->object_note_type_name (type, buf, len);
42 if (type < sizeof (knowntypes) / sizeof (knowntypes[0])
43 && knowntypes[type] != NULL)
44 res = knowntypes[type];
47 snprintf (buf, len, "%s: %" PRIu32, gettext ("<unknown>"), type);
H A Dlibebl_i386.h27 /* Function to get relocation type name. */
28 extern const char *i386_reloc_type_name (int type, char *buf, size_t len);
30 /* Check relocation type. */
31 extern bool i386_reloc_type_check (int type);
33 /* Check relocation type use. */
34 extern bool i386_reloc_valid_use (Elf *elf, int type);
36 /* Check relocation type use. */
37 extern bool i386_gotpc_reloc_check (Elf *elf, int type);
40 extern bool i386_core_note (const char *name, uint32_t type, uint32_t descsz,
H A Dx86_64_symbol.c68 /* Determine relocation type string for x86-64. */
70 x86_64_reloc_type_name (int type, char *buf, size_t len) argument
72 if (type < 0 || type >= R_X86_64_NUM)
75 return reloc_map_table[type].name;
79 /* Check for correct relocation type. */
81 x86_64_reloc_type_check (int type) argument
83 return (type >= R_X86_64_NONE && type < R_X86_64_NUM
84 && reloc_map_table[type]
90 x86_64_reloc_valid_use(Elf *elf, int type) argument
[all...]
H A Di386_symbol.c80 /* Determine relocation type string for x86. */
82 i386_reloc_type_name (int type, char *buf, size_t len) argument
84 if (type < 0 || type >= R_386_NUM)
87 return reloc_map_table[type].name;
91 /* Check for correct relocation type. */
93 i386_reloc_type_check (int type) argument
95 return (type >= R_386_NONE && type < R_386_NUM
96 && reloc_map_table[type]
102 i386_reloc_valid_use(Elf *elf, int type) argument
124 i386_gotpc_reloc_check(Elf *elf, int type) argument
[all...]
/external/speex/libspeex/
H A Dstack_alloc.h60 * @def PUSH(stack, size, type)
62 * Allocates 'size' elements of type 'type' on the stack
66 * @param type Type of element
78 * @def ALLOC(var, size, type)
80 * Allocate 'size' elements of 'type' on stack
84 * @param type Type of element
93 #define PUSH(stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VALGRIND_MAKE_WRITABLE(stack, ((size)*sizeof(type))),(stac
[all...]
/external/v8/test/mjsunit/
H A Dundeletable-functions.js105 function CheckEcmaSemantics(type, props, name) {
108 CheckDeletable(type, props[i]);
113 function CheckJSCSemantics(type, props, name) {
116 CheckNotDeletable(type, props[i]);
121 function CheckDontDelete(type, props, name) {
124 CheckDontDeleteAttr(type, props[i]);
129 function CheckDeletable(type, prop) {
130 var old = type[prop];
132 if (!type[prop]) return;
133 assertTrue(type
[all...]
/external/webkit/WebCore/dom/
H A DPageTransitionEvent.cpp38 PageTransitionEvent::PageTransitionEvent(const AtomicString& type, bool persisted) argument
39 : Event(type, true, true)
48 void PageTransitionEvent::initPageTransitionEvent(const AtomicString& type, argument
56 initEvent(type, canBubbleArg, cancelableArg);
/external/dbus/dbus/
H A Ddbus-memory.h46 #define dbus_new(type, count) ((type*)dbus_malloc (sizeof (type) * (count)));
47 #define dbus_new0(type, count) ((type*)dbus_malloc0 (sizeof (type) * (count)));
/external/webkit/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;

Completed in 218 milliseconds

1234567891011>>