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

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/osfmk/UserNotification/
H A DUNDTypes.defs38 type UNDMessage = c_string[*:1024];
39 type UNDLabel = c_string[*:128];
41 type UNDKey = c_string[*:128];
42 type UNDPath = c_string[*:1024];
44 type UNDXMLDict = c_string[*:2048];
49 type xmlData = ^ array [] of MACH_MSG_TYPE_BYTE
53 type UNDServerRef = mach_port_t;
55 type UNDReplyRef = mach_port_t
/macosx-10.9.5/xnu-2422.115.4/osfmk/default_pager/
H A Ddefault_pager_types.defs38 type default_pager_info_t = struct[3] of natural_t;
39 type default_pager_info_64_t = struct[6] of natural_t;
41 type default_pager_object_t = struct[2] of natural_t;
42 type default_pager_object_array_t = array[] of default_pager_object_t;
44 type default_pager_page_t = struct[1] of natural_t;
45 type default_pager_page_array_t = array[] of default_pager_page_t;
47 type backing_store_flavor_t = integer_t;
48 type backing_store_info_t = array[*:20] of integer_t;
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorCounters.h51 static inline void incrementCounter(CounterType type) argument
55 ++s_counters[type];
57 UNUSED_PARAM(type);
61 static inline void decrementCounter(CounterType type) argument
65 --s_counters[type];
67 UNUSED_PARAM(type);
94 inline void incrementCounter(CounterType type) argument
96 ++m_counters[type];
99 inline void decrementCounter(CounterType type) argument
101 --m_counters[type];
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGPropertyTraits.h35 static String toString(bool type) { return type ? "true" : "false"; } argument
41 static String toString(unsigned type) { return String::number(type); } argument
47 static String toString(int type) { return String::number(type); } argument
53 static String toString(float type) { return String::number(type); } argument
59 static String toString(const String& type) { return type; } argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitEnumTypes.cpp.template50 static GType type = 0;
51 if (G_UNLIKELY(!type))
52 type = g_@type@_register_static("@EnumName@", values);
54 return type;
H A DWebKitScriptDialogPrivate.h27 _WebKitScriptDialog(unsigned type, const CString& message) argument
28 : type(type)
34 _WebKitScriptDialog(unsigned type, const CString& message, const CString& defaultText) argument
35 : type(type)
40 ASSERT(type == WEBKIT_SCRIPT_DIALOG_PROMPT);
44 : type(dialog->type)
52 unsigned type; member in struct:_WebKitScriptDialog
[all...]
/macosx-10.9.5/ncurses-42/ncurses/include/
H A Dncurses_dll.h61 # define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API
62 # define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type
73 # define NCURSES_EXPORT(type) NCURSES_IMPEXP type NCURSES_API
76 # define NCURSES_EXPORT_VAR(type) NCURSES_IMPEXP type
84 #define NCURSES_WRAPPED_VAR(type,name) extern type NCURSES_PUBLIC_VA
[all...]
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Drpcmem.c99 unsigned32 type,
105 RPC_MEM_ALLOC_IL(addr, char *, size, type, flags);
108 if ((type & 0xff) == rpc_g_dbg_switches[rpc_es_dbg_mem_type])
111 ("(rpc__mem_alloc) type %x - %lx @ %p\n",
112 type, size, addr));
117 ("(rpc__mem_alloc) type %x - %lx @ %p\n",
118 type, size, addr));
129 unsigned32 type,
133 RPC_MEM_REALLOC_IL(addr, dce_pointer_t, size, type, flags);
136 if ((type
96 rpc__mem_alloc( size_t size, unsigned32 type, unsigned32 flags ATTRIBUTE_UNUSED ) argument
125 rpc__mem_realloc( dce_pointer_t addr, unsigned32 size, unsigned32 type, unsigned32 flags ATTRIBUTE_UNUSED ) argument
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A Dobjc_support.h25 /*#F Takes a C value pointed by @var{datum} with its type encoded in
26 @var{type}, that should be coming from an ObjC @encode directive,
29 extern PyObject *pythonify_c_value (const char *type,
31 extern PyObject *pythonify_c_return_value (const char *type,
34 extern PyObject *pythonify_c_array_nullterminated(const char* type, void* datum, BOOL already_retained, BOOL already_cfretained);
36 extern int depythonify_c_array_count(const char* type, Py_ssize_t count, BOOL strict, PyObject* value, void* datum, BOOL already_retained, BOOL already_cfretained);
38 extern int depythonify_c_array_nullterminated(const char* type, Py_ssize_t count, PyObject* value, void* datum, BOOL already_retained, BOOL already_cfretained);
41 pointed by @var{datum} accordingly with the type specification
42 encoded in @var{type}, that should be coming from an ObjC @encode
46 extern int depythonify_c_value (const char *type,
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/mach/
H A Dmach_types.defs65 * Mach kernel interface type declarations
74 type memory_object_offset_t = uint64_t;
75 type memory_object_size_t = uint64_t;
76 type memory_object_cluster_size_t = uint32_t;
77 type memory_object_fault_info_t = array[16] of integer_t;
82 type upl_size_t = uint32_t;
83 type upl_offset_t = uint32_t;
84 type upl_page_info_t = struct[2] of integer_t;
85 type upl_page_info_array_t = array[*:256] of upl_page_info_t;
87 type upl_
[all...]
/macosx-10.9.5/apache-786.1/httpd/include/
H A Dap_config.h69 #define AP_DECLARE(type) type
79 #define AP_DECLARE_NONSTD(type) type
85 * @note AP_DECLARE_DATA extern type apr_variable; syntax is required for
88 * AP_DECLARE_DATA type apr_variable
94 #define AP_DECLARE(type) type __stdcall
95 #define AP_DECLARE_NONSTD(type) type
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DBiquadFilterNode.cpp43 String BiquadFilterNode::type() const function in class:WebCore::BiquadFilterNode
45 switch (const_cast<BiquadFilterNode*>(this)->biquadProcessor()->type()) {
68 void BiquadFilterNode::setType(const String& type) argument
70 if (type == "lowpass")
72 else if (type == "highpass")
74 else if (type == "bandpass")
76 else if (type == "lowshelf")
78 else if (type == "highshelf")
80 else if (type == "peaking")
82 else if (type
90 setType(unsigned type) argument
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/Replicated/
H A DTypes.pm23 my $type = $_;
24 if($type=~m/^::/) {
25 $type = 'DBIx::Class::Storage::DBI::Replicated::Balancer'.$type;
27 Class::MOP::load_class($type);
28 $type;
/macosx-10.9.5/ICU-511.35/icuSources/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;
/macosx-10.9.5/WebKit-7537.78.2/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;
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/lib/
H A Dstaticopen.c66 } type; local
70 /* What type of plugin are we looking for? */
72 type = SERVER;
75 type = CLIENT;
78 type = AUXPROP;
81 type = CANONUSER;
89 if(type == SERVER) {
92 } else if (type == CLIENT) {
99 if(type == SERVER) {
102 } else if (type
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/device/
H A Ddevice_types.defs75 type recnum_t = uint32_t;
76 type dev_mode_t = uint32_t;
77 type dev_flavor_t = uint32_t;
78 type dev_name_t = c_string[*:128];
79 type dev_status_t = array[*:1024] of int;
80 type io_buf_len_t = integer_t;
81 type io_buf_ptr_t = ^array[] of MACH_MSG_TYPE_INTEGER_8;
82 type io_buf_ptr_inband_t= array[*:128] of char;
83 type filter_t = short;
84 type filter_array_
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/mediastream/
H A DRTCSessionDescription.cpp43 static bool verifyType(const String& type) argument
45 return type == "offer" || type == "pranswer" || type == "answer";
50 String type; local
51 bool ok = dictionary.get("type", type);
52 if (!ok || !verifyType(type)) {
64 return adoptRef(new RTCSessionDescription(RTCSessionDescriptionDescriptor::create(type, sdp)));
82 const String& RTCSessionDescription::type() cons function in class:WebCore::RTCSessionDescription
87 setType(const String& type, ExceptionCode& ec) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLLIElement.idl21 [Reflect] attribute DOMString type;
H A DHTMLUListElement.idl22 [Reflect] attribute DOMString type;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Djavascript.js11 function kw(type) {return {type: type, style: "keyword"};}
13 var operator = kw("operator"), atom = {type: "atom", style: "atom"};
27 var type = {type: "variable", style: "variable-3"};
44 "string": type, "number": type, "bool": type, "any": type
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DCrypto.cpp44 ArrayBufferView::ViewType type = array->getType(); local
45 return type == ArrayBufferView::TypeInt8
46 || type == ArrayBufferView::TypeUint8
47 || type == ArrayBufferView::TypeUint8Clamped
48 || type == ArrayBufferView::TypeInt16
49 || type == ArrayBufferView::TypeUint16
50 || type == ArrayBufferView::TypeInt32
51 || type == ArrayBufferView::TypeUint32;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebTouchEvent.cpp36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, Modifiers modifiers, double timestamp) argument
37 : WebEvent(type, modifiers, timestamp)
40 ASSERT(isTouchEventType(type));
61 bool WebTouchEvent::isTouchEventType(Type type) argument
63 return type == TouchStart || type == TouchMove || type == TouchEnd || type == TouchCancel;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/include/
H A Dapu.h.in53 #define APU_DECLARE(type) type
60 #define APU_DECLARE_NONSTD(type) type
65 * @fn APU_DECLARE_DATA type apr_variable;
66 * @note APU_DECLARE_DATA extern type apr_variable; syntax is required for
71 #define APU_DECLARE(type) type __stdcall
72 #define APU_DECLARE_NONSTD(type) type __cdec
[all...]
H A Dapu.hw53 #define APU_DECLARE(type) type
60 #define APU_DECLARE_NONSTD(type) type
65 * @fn APU_DECLARE_DATA type apr_variable;
66 * @note extern APU_DECLARE_DATA type apr_variable; syntax is required for
71 #define APU_DECLARE(type) type __stdcall
72 #define APU_DECLARE_NONSTD(type) type __cdec
[all...]

Completed in 185 milliseconds

1234567891011>>