Searched defs:custom (Results 1 - 25 of 33) sorted by relevance

12

/external/compiler-rt/BlocksRuntime/tests/
H A Dnullblockisa.c26 } *custom = (struct _custom *)(void *)(b); local
28 if (custom->innerp->isa != (void *)NULL) {
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
H A Dresults_unittests.js48 "scrollbars/custom-scrollbar-with-incomplete-style.html": {
93 "scrollbars/custom-scrollbar-with-incomplete-style.html": {
142 equals(view.currentTestName(), 'scrollbars/custom-scrollbar-with-incomplete-style.html');
161 equals(view.currentTestName(), 'scrollbars/custom-scrollbar-with-incomplete-style.html');
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dui_unittests.js31 "scrollbars/custom-scrollbar-with-incomplete-style.html": {
/external/chromium/webkit/glue/
H A Dwebcursor_gtk.cc22 // It attempts to create a custom cursor from the data inlined in
29 const CustomCursor& custom = CustomCursors[type]; local
30 cursor = gdk_cursor_new_from_name(gdk_display_get_default(), custom.name);
34 GdkPixmap* source = gdk_bitmap_create_from_data(NULL, custom.bits,
36 GdkPixmap* mask = gdk_bitmap_create_from_data(NULL, custom.mask_bits,
39 custom.hot_x, custom.hot_y);
48 // use a custom cursor.
50 // Get/create a custom cursor which is invisible.
/external/chromium_org/webkit/common/cursors/
H A Dwebcursor_gtk.cc22 // It attempts to create a custom cursor from the data inlined in
29 const CustomCursor& custom = CustomCursors[type]; local
30 cursor = gdk_cursor_new_from_name(gdk_display_get_default(), custom.name);
35 NULL, reinterpret_cast<const gchar*>(custom.bits), 32, 32);
37 NULL, reinterpret_cast<const gchar*>(custom.mask_bits), 32, 32);
39 custom.hot_x, custom.hot_y);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3recognizersharedstate.h189 void * custom; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
H A Dantlr3commontoken.h5 * of this common token. A custom pointer is provided, wher you may attach
102 * custom pointer element of this structure.
208 /** Pointer to a custom element that the ANTLR3 programmer may define and install
210 void * custom; member in struct:ANTLR3_COMMON_TOKEN_struct
212 /** Pointer to a function that knows how to free the custom structure when the
215 void (*freeCustom)(void * custom);
H A Dantlr3exception.h201 void * custom; member in struct:ANTLR3_EXCEPTION_struct
203 /** Pointer to a routine that is called to free the custom exception structure
206 void (*freeCustom) (void * custom);
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_name.h50 SK_OT_USHORT custom; member in union:SkOTTableName::Record::EncodingID
/external/chromium_org/tools/grit/grit/
H A Dtest_suite_all.py67 import grit.node.custom.filename_unittest namespace
132 grit.node.custom.filename_unittest.WindowsFilenameUnittest,
/external/skia/src/sfnt/
H A DSkOTTable_name.h50 SK_OT_USHORT custom; member in union:SkOTTableName::Record::EncodingID
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DSimpleFontData.h236 DerivedFontData(bool custom) argument
237 : forCustomFont(custom)
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_hostap.c787 char *custom)
789 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
791 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
794 pos = strstr(custom, "addr=");
822 char *pos, *end, *custom, *buf; local
836 custom = pos + IW_EV_POINT_LEN;
847 custom += IW_EV_POINT_OFF;
852 if (custom + iwe->u.data.length > end)
857 memcpy(buf, custom, iwe->u.data.length);
786 hostapd_wireless_event_wireless_custom(struct hostap_driver_data *drv, char *custom) argument
H A Ddriver_madwifi.c874 char *custom)
876 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
878 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
881 pos = strstr(custom, "addr=");
901 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
904 key = custom;
932 char *pos, *end, *custom, *buf; local
946 custom = pos + IW_EV_POINT_LEN;
957 custom += IW_EV_POINT_OFF;
969 if (custom
873 madwifi_wireless_event_wireless_custom(struct madwifi_driver_data *drv, char *custom) argument
[all...]
H A Ddriver_atheros.c1207 char *custom, char *end)
1209 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
1211 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
1214 pos = strstr(custom, "addr=");
1234 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
1237 key = custom;
1258 } else if (strncmp(custom, "PUSH-BUTTON.indication", 22) == 0) {
1267 } else if (strncmp(custom, "Manage.prob_req ", 16) == 0) {
1270 * binary data in the custom wireless event. The old way (using
1274 int len = atoi(custom
1206 atheros_wireless_event_wireless_custom(struct atheros_driver_data *drv, char *custom, char *end) argument
1410 char *pos, *end, *custom, *buf; local
[all...]
H A Ddriver_wext.c234 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom) argument
239 custom);
243 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
245 os_strstr(custom, " unicast ") != NULL;
248 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) {
253 spos = custom + 17;
294 } else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) {
295 if (hwaddr_aton(custom + 17, data.stkstart.peer)) {
297 "STKSTART.request '%s'", custom + 17);
303 } else if (os_strncmp(custom, "STO
436 char *pos, *end, *custom, *buf; local
1143 wext_get_scan_ssid(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1239 char *custom = pos + IW_EV_LCP_LEN; local
1263 wext_get_scan_iwevgenie(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1289 wext_get_scan_custom(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1438 char *pos, *end, *custom; local
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_hostap.c787 char *custom)
789 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
791 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
794 pos = strstr(custom, "addr=");
822 char *pos, *end, *custom, *buf; local
836 custom = pos + IW_EV_POINT_LEN;
847 custom += IW_EV_POINT_OFF;
852 if (custom + iwe->u.data.length > end)
857 memcpy(buf, custom, iwe->u.data.length);
786 hostapd_wireless_event_wireless_custom(struct hostap_driver_data *drv, char *custom) argument
H A Ddriver_madwifi.c874 char *custom)
876 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
878 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
881 pos = strstr(custom, "addr=");
901 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
904 key = custom;
932 char *pos, *end, *custom, *buf; local
946 custom = pos + IW_EV_POINT_LEN;
957 custom += IW_EV_POINT_OFF;
969 if (custom
873 madwifi_wireless_event_wireless_custom(struct madwifi_driver_data *drv, char *custom) argument
[all...]
H A Ddriver_atheros.c1207 char *custom, char *end)
1209 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
1211 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
1214 pos = strstr(custom, "addr=");
1234 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
1237 key = custom;
1258 } else if (strncmp(custom, "PUSH-BUTTON.indication", 22) == 0) {
1267 } else if (strncmp(custom, "Manage.prob_req ", 16) == 0) {
1270 * binary data in the custom wireless event. The old way (using
1274 int len = atoi(custom
1206 atheros_wireless_event_wireless_custom(struct atheros_driver_data *drv, char *custom, char *end) argument
1410 char *pos, *end, *custom, *buf; local
[all...]
H A Ddriver_wext.c234 wpa_driver_wext_event_wireless_custom(void *ctx, char *custom) argument
239 custom);
243 if (os_strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
245 os_strstr(custom, " unicast ") != NULL;
248 } else if (os_strncmp(custom, "ASSOCINFO(ReqIEs=", 17) == 0) {
253 spos = custom + 17;
294 } else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) {
295 if (hwaddr_aton(custom + 17, data.stkstart.peer)) {
297 "STKSTART.request '%s'", custom + 17);
303 } else if (os_strncmp(custom, "STO
436 char *pos, *end, *custom, *buf; local
1143 wext_get_scan_ssid(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1239 char *custom = pos + IW_EV_LCP_LEN; local
1263 wext_get_scan_iwevgenie(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1289 wext_get_scan_custom(struct iw_event *iwe, struct wext_scan_data *res, char *custom, char *end) argument
1438 char *pos, *end, *custom; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_hostap.c787 char *custom)
789 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
791 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
794 pos = strstr(custom, "addr=");
822 char *pos, *end, *custom, *buf; local
836 custom = pos + IW_EV_POINT_LEN;
847 custom += IW_EV_POINT_OFF;
852 if (custom + iwe->u.data.length > end)
857 memcpy(buf, custom, iwe->u.data.length);
786 hostapd_wireless_event_wireless_custom(struct hostap_driver_data *drv, char *custom) argument
H A Ddriver_madwifi.c874 char *custom)
876 wpa_printf(MSG_DEBUG, "Custom wireless event: '%s'", custom);
878 if (strncmp(custom, "MLME-MICHAELMICFAILURE.indication", 33) == 0) {
881 pos = strstr(custom, "addr=");
901 } else if (strncmp(custom, "STA-TRAFFIC-STAT", 16) == 0) {
904 key = custom;
932 char *pos, *end, *custom, *buf; local
946 custom = pos + IW_EV_POINT_LEN;
957 custom += IW_EV_POINT_OFF;
969 if (custom
873 madwifi_wireless_event_wireless_custom(struct madwifi_driver_data *drv, char *custom) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dpsaux.h784 FT_CMap_Class custom; member in struct:T1_CMap_ClassesRec_
/external/freetype/include/freetype/internal/
H A Dpsaux.h784 FT_CMap_Class custom; member in struct:T1_CMap_ClassesRec_

Completed in 788 milliseconds

12