HomeSort by relevance Sort by last modified time
    Searched refs:info (Results 301 - 325 of 1780) sorted by null

<<11121314151617181920>>

  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLInputElementCustom.cpp 41 v8::Handle<v8::Value> V8HTMLInputElement::selectionStartAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
44 v8::Handle<v8::Object> holder = info.Holder();
54 void V8HTMLInputElement::selectionStartAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
57 v8::Handle<v8::Object> holder = info.Holder();
67 v8::Handle<v8::Value> V8HTMLInputElement::selectionEndAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
70 v8::Handle<v8::Object> holder = info.Holder();
80 void V8HTMLInputElement::selectionEndAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
83 v8::Handle<v8::Object> holder = info.Holder();
V8HTMLDocumentCustom.cpp 52 v8::Handle<v8::Boolean> V8HTMLDocument::namedPropertyDeleter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
62 ASSERT(info.Holder()->InternalFieldCount() == V8HTMLDocument::internalFieldCount);
63 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
64 info.Holder()->SetInternalField(V8HTMLDocument::shadowIndex, marker);
68 v8::Handle<v8::Value> V8HTMLDocument::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
78 ASSERT(info.Holder()->InternalFieldCount() == V8HTMLDocument::internalFieldCount);
79 v8::Local<v8::Value> marker = info.Holder()->GetInternalField(V8HTMLDocument::markerIndex);
80 v8::Local<v8::Value> value = info.Holder()->GetInternalField(V8HTMLDocument::shadowIndex);
85 HTMLDocument* htmlDocument = V8HTMLDocument::toNative(info.Holder());
107 v8::Handle<v8::Value> V8HTMLDocument::indexedPropertyGetter(uint32_t index, const v8::AccessorInfo &info)
    [all...]
  /external/webkit/WebCore/platform/win/
DragImageCairoWin.cpp 93 BITMAP info; local
94 GetObject(bitmap, sizeof(info), &info);
95 ASSERT(info.bmBitsPixel == 32);
100 return cairo_image_surface_create_for_data((unsigned char*)info.bmBits,
102 info.bmWidth,
103 info.bmHeight,
104 info.bmWidthBytes);
  /external/webkit/WebCore/plugins/chromium/
PluginDataChromium.cpp 38 static PluginInfo* clone(const PluginInfo* info)
41 result->name = info->name;
42 result->desc = info->desc;
43 result->file = info->file;
44 for (size_t i = 0; i < info->mimes.size(); ++i) {
46 mime->type = info->mimes[i]->type;
47 mime->desc = info->mimes[i]->desc;
48 mime->suffixes = info->mimes[i]->suffixes;
  /frameworks/base/core/java/com/android/internal/appwidget/
IAppWidgetHost.aidl 26 void providerChanged(int appWidgetId, in AppWidgetProviderInfo info);
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupAccountTypeUnitTests.java 84 Store.StoreInfo info = new Store.StoreInfo(); local
85 info.mAccountInstanceLimit = -1;
86 info.mScheme = "scheme1";
87 assertTrue("no limit", activity.checkAccountInstanceLimit(info));
90 info.mAccountInstanceLimit = 3;
91 assertTrue("limit, but not reached", activity.checkAccountInstanceLimit(info));
94 info.mAccountInstanceLimit = 2;
95 assertFalse("limit, reached", activity.checkAccountInstanceLimit(info));
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/XME/
xme.c 183 #define XiGMiscGetReq(name,req,info) GetReq (name, req); \
184 req->reqType = info->codes->major_opcode; \
187 #define XiGMiscGetReqExtra(name,n,req,info) GetReqExtra (name, n, req); \
188 req->reqType = info->codes->major_opcode; \
191 #define XiGMiscGetReq(name,req,info) GetReq (name, req); \
192 req->reqType = info->codes->major_opcode; \
194 #define XiGMiscGetReqExtra(name,n,req,info) GetReqExtra (name, n, req); \
195 req->reqType = info->codes->major_opcode; \
202 * find_display - locate the display info block
235 XExtDisplayInfo *info = XiGMiscFindDisplay(dpy) local
268 XExtDisplayInfo *info = XiGMiscFindDisplay(dpy); local
310 XExtDisplayInfo *info = XiGMiscFindDisplay(dpy); local
351 XExtDisplayInfo *info = XiGMiscFindDisplay(dpy); local
372 XExtDisplayInfo *info = XiGMiscFindDisplay(dpy); local
    [all...]
  /system/core/fastboot/
usb_osx.c 57 usb_ifc_info info; member in struct:usb_handle
171 if ((*interface)->GetInterfaceClass(interface, &handle->info.ifc_class) != 0 ||
172 (*interface)->GetInterfaceSubClass(interface, &handle->info.ifc_subclass) != 0 ||
173 (*interface)->GetInterfaceProtocol(interface, &handle->info.ifc_protocol) != 0)
179 handle->info.has_bulk_in = 0;
180 handle->info.has_bulk_out = 0;
201 handle->info.has_bulk_in = 1;
204 handle->info.has_bulk_out = 1;
208 if (handle->info.ifc_protocol == 0x01) {
215 if (handle->info.has_bulk_in && handle->info.has_bulk_out)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_A.c 65 static void BlitNto1SurfaceAlpha(SDL_BlitInfo *info)
67 int width = info->d_width;
68 int height = info->d_height;
69 Uint8 *src = info->s_pixels;
70 int srcskip = info->s_skip;
71 Uint8 *dst = info->d_pixels;
72 int dstskip = info->d_skip;
73 Uint8 *palmap = info->table;
74 SDL_PixelFormat *srcfmt = info->src;
75 SDL_PixelFormat *dstfmt = info->dst
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
ActivityInfoTest.java 58 ActivityInfo info = new ActivityInfo(); local
59 new ActivityInfo(info);
84 ActivityInfo info = ActivityInfo.CREATOR.createFromParcel(p); local
85 assertEquals(mActivityInfo.theme, info.theme);
86 assertEquals(mActivityInfo.launchMode, info.launchMode);
87 assertEquals(mActivityInfo.permission, info.permission);
88 assertEquals(mActivityInfo.taskAffinity, info.taskAffinity);
89 assertEquals(mActivityInfo.targetActivity, info.targetActivity);
90 assertEquals(mActivityInfo.flags, info.flags);
91 assertEquals(mActivityInfo.screenOrientation, info.screenOrientation)
    [all...]
  /external/iptables/libiptc/
libip6tc.c 275 if (strcmp(h->info.name, "filter") == 0) {
276 assert(h->info.valid_hooks
282 assert(h->info.hook_entry[NF_IP6_LOCAL_IN] == 0);
286 assert(h->info.hook_entry[NF_IP6_FORWARD] == n);
290 assert(h->info.hook_entry[NF_IP6_LOCAL_OUT] == n);
292 user_offset = h->info.hook_entry[NF_IP6_LOCAL_OUT];
293 } else if (strcmp(h->info.name, "nat") == 0) {
294 assert((h->info.valid_hooks
298 (h->info.valid_hooks
304 assert(h->info.hook_entry[NF_IP6_PRE_ROUTING] == 0)
    [all...]
  /external/bluetooth/bluez/gdbus/
mainloop.c 41 #define info(fmt...) macro
99 struct watch_info *info = dbus_watch_get_data(watch); local
109 if (dbus_connection_get_dispatch_status(info->conn) == DBUS_DISPATCH_DATA_REMAINS)
110 g_timeout_add(DISPATCH_TIMEOUT, message_dispatch_cb, info->conn);
119 struct watch_info *info; local
125 info = g_new(struct watch_info, 1);
128 info->io = g_io_channel_unix_new(fd);
129 info->conn = dbus_connection_ref(conn);
131 dbus_watch_set_data(watch, info, NULL);
138 info->watch_id = g_io_add_watch(info->io, cond, watch_func, watch)
145 struct watch_info *info = dbus_watch_get_data(watch); local
    [all...]
  /external/v8/src/arm/
fast-codegen-arm.cc 73 info()->receiver()->Lookup(*name, &lookup);
75 ASSERT(lookup.holder() == *info()->receiver());
77 Handle<Map> map(Handle<HeapObject>::cast(info()->receiver())->map());
119 info()->receiver()->Lookup(*name, &lookup);
121 ASSERT(lookup.holder() == *info()->receiver());
123 Handle<Map> map(Handle<HeapObject>::cast(info()->receiver())->map());
157 info()->AddBailout(accumulator1(), scratch0()); // Left, right.
162 Label* bailout = info()->AddBailout(scratch0(), accumulator0());
167 Label* bailout = info()->AddBailout(accumulator1(), accumulator0());
190 Label* bailout_to_beginning = info()->AddBailout()
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextCGWin.cpp 44 BITMAP info; local
46 GetObject(bitmap, sizeof(info), &info);
47 ASSERT(info.bmBitsPixel == 32);
50 CGContextRef context = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8,
51 info.bmWidthBytes, deviceRGB, bitmapInfo);
55 CGContextTranslateCTM(context, 0, info.bmHeight);
90 BITMAP info; local
    [all...]
  /external/qemu/
disas.c 14 /* Get LENGTH bytes from info's buffer, at target address memaddr.
18 struct disassemble_info *info)
20 if (memaddr < info->buffer_vma
21 || memaddr + length > info->buffer_vma + info->buffer_length)
24 memcpy (myaddr, info->buffer + (memaddr - info->buffer_vma), length);
28 /* Get LENGTH bytes from info's buffer, at target address memaddr.
34 struct disassemble_info *info)
43 perror_memory (int status, bfd_vma memaddr, struct disassemble_info *info)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AgendaWindowAdapter.java 294 DayAdapterInfo info = getAdapterInfoByPosition(position); local
295 if (info != null) {
296 return info.dayAdapter.getItemViewType(position - info.offset);
305 DayAdapterInfo info = getAdapterInfoByPosition(position); local
306 if (info != null) {
307 return info.dayAdapter.isEnabled(position - info.offset);
320 DayAdapterInfo info = getAdapterInfoByPosition(position); local
321 if (info != null)
336 DayAdapterInfo info = getAdapterInfoByPosition(position); local
361 DayAdapterInfo info = getAdapterInfoByPosition(position); local
382 DayAdapterInfo info = getAdapterInfoByTime(time); local
428 DayAdapterInfo info = getAdapterInfoByPosition(position); local
521 DayAdapterInfo info; local
820 DayAdapterInfo info = pruneAdapterInfo(data.queryType); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_osx.m 63 WirelessInfo info;
66 err = WirelessGetInfo(drv->wireless_ctx, &info);
72 if (!info.power) {
78 if (info.ssid[len] == 0)
81 os_memcpy(ssid, info.ssid, len);
90 WirelessInfo info;
92 err = WirelessGetInfo(drv->wireless_ctx, &info);
98 if (!info.power) {
103 os_memcpy(bssid, info.bssID, ETH_ALEN);
176 WirelessNetworkInfo *info;
    [all...]
  /external/qemu/elff/
elf_file.cc 23 /* Tags to parse when collecting info about routines. */
190 Dwarf_AddressInfo info; local
191 info.die_obj = cu->get_leaf_die_for_address(address);
192 if (info.die_obj != NULL) {
194 if (cu->get_pc_address_file_info(address, &info)) {
196 address_info->file_name = info.file_name;
197 address_info->dir_name = info.dir_name;
198 address_info->line_number = info.line_number;
207 Dwarf_Tag tag = info.die_obj->get_tag();
211 info.die_obj = info.die_obj->parent_die();
    [all...]
  /external/bluetooth/glib/gobject/
genums.c 93 static GTypeInfo info = { local
115 info.class_size = sizeof (GEnumClass);
116 type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
122 info.class_size = sizeof (GFlagsClass);
123 type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
260 * @info: the #GTypeInfo struct to be filled in
273 * GTypeInfo *info,
282 * g_enum_complete_type_info (type, info, values);
288 GTypeInfo *info,
292 g_return_if_fail (info != NULL)
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
math_emu.h 17 struct info { struct
  /build/tools/lsd/
cmdline.c 15 {"print-info", no_argument, 0, 'p'},
55 int *info,
64 ASSERT(info);
65 *info = 0;
86 INFO ("option -%c with value `%s'\n", c, (optarg ?: "(null)"));
99 INFO ("option %s", long_options[option_index].name);
101 INFO (" with arg %s", optarg);
102 INFO ("\n");
106 case 'p': *info = 1; break;
  /development/host/windows/usb/api/
adb_api_private_defines.h 75 @param[in] info Buffer to save this entry to. Must be big enough to fit it.
79 void Save(AdbInterfaceInfo* info) const {
80 info->class_id = class_id();
81 info->flags = flags();
82 wcscpy(info->device_name, device_name().c_str());
adb_interface_enum.h 45 This routine uses SetupDiGetClassDevs to get our device info and calls
63 @param[out] info Upon successful completion will receive interface
67 addressed by info param. On the way out (only if buffer is not
72 in info param was not big enough and *size specifies memory size
76 bool Next(AdbInterfaceInfo* info, ULONG* size);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 83 String info = intent.toString(); local
86 info = info + " " + extra;
88 intentInfo.setText(info);
  /external/bluetooth/bluez/common/
logging.h 27 void info(const char *format, ...) __attribute__((format(printf, 1, 2)));

Completed in 444 milliseconds

<<11121314151617181920>>