HomeSort by relevance Sort by last modified time
    Searched full:area (Results 1 - 25 of 1514) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/samsung/crespo/alsa-lib/src/
shmarea.c 2 * IPC SHM area manager
42 * \brief Create a shm area record
44 * \param ptr the shared area pointer
45 * \return The allocated shm area record, NULL if fail
47 * Allocates a shared area record with the given SHM ID and pointer.
52 struct snd_shm_area *area = malloc(sizeof(*area)); local
53 if (area) {
54 area->shmid = shmid;
55 area->ptr = ptr
102 struct snd_shm_area *area; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_cursor.c 132 cursor->area.x = 0;
133 cursor->area.y = 0;
134 cursor->area.w = w;
135 cursor->area.h = h;
214 SDL_cursor->area.x = (x - SDL_cursor->hot_x);
215 SDL_cursor->area.y = (y - SDL_cursor->hot_y);
330 SDL_cursor->area.x = (x - SDL_cursor->hot_x);
331 SDL_cursor->area.y = (y - SDL_cursor->hot_y);
348 void SDL_MouseRect(SDL_Rect *area)
352 *area = SDL_cursor->area
597 SDL_Rect area; local
662 SDL_Rect area; local
675 SDL_Rect area; local
736 SDL_Rect area; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsmouse.c 55 SDL_Rect area; local
69 /* Remove the cursor image from the DMA area */
80 /* Save the current mouse area */
81 SDL_MouseRect(&area);
82 mouse_y1 = area.y;
83 mouse_y2 = area.y+area.h;
88 cursor->area.x = (x - cursor->hot_x);
89 cursor->area.y = (y - cursor->hot_y);
100 /* Update the affected area of the screen *
    [all...]
  /external/webkit/WebCore/manual-tests/accessibility/
java-applet.html 9 <li>Open Accessibility Inspector. Move mouse onto white area of web area.
10 <li>Press Cmd+F7 to lock onto the web area.
  /frameworks/base/docs/html/guide/developing/tools/
draw9patch.jd 23 <p>The left pane is your drawing area, in which you can edit the lines for the
24 stretchable patches and content area. The right
25 pane is the preview area, where you can preview your graphic when stretched.</p>
28 patches and (optional) content area. Right-click (or hold Shift and click, on Mac) to erase
37 the stretchable patches and content area.
39 with no drawing area added, because it already exists.</p>
46 <li><strong>Zoom</strong>: Adjust the zoom level of the graphic in the drawing area.</li>
47 <li><strong>Patch scale</strong>: Adjust the scale of the images in the preview area.</li>
48 <li><strong>Show lock</strong>: Visualize the non-drawable area of the graphic on mouse-over.</li>
49 <li><strong>Show patches</strong>: Preview the stretchable patches in the drawing area (pink is a
    [all...]
  /external/proguard/docs/
screenshots.html 19 <area shape="rect" coords="2,7,46,16" alt="ProGuard" href="screenshot_gui1.gif" target="other">
20 <area shape="rect" coords="2,17,46,27" alt="Input/Output" href="screenshot_gui2.gif" target="other">
21 <area shape="rect" coords="2,28,46,37" alt="Shrinking" href="screenshot_gui3.gif" target="other">
22 <area shape="rect" coords="2,38,46,48" alt="Optimization" href="screenshot_gui4.gif" target="other">
23 <area shape="rect" coords="2,49,46,58" alt="Obfuscation" href="screenshot_gui5.gif" target="other">
24 <area shape="rect" coords="2,59,46,69" alt="Information" href="screenshot_gui6.gif" target="other">
25 <area shape="rect" coords="2,70,46,79" alt="Process" href="screenshot_gui7.gif" target="other">
26 <area shape="rect" coords="2,80,46,90" alt="ReTrace" href="screenshot_gui8.gif" target="other">
  /external/iproute2/lib/
dnet_pton.c 40 u_int16_t area = 0; local
44 pos = dnet_num(src, &area);
45 if ((pos == 0) || (area > 63) || (*(src + pos) != '.'))
51 *(u_int16_t *)dna->a_addr = dn_htons((area << 10) | node);
dnet_ntop.c 39 u_int16_t area = addr >> 10; local
51 if (do_digit(str + pos, &area, 10, &pos, len, &started))
54 if (do_digit(str + pos, &area, 1, &pos, len, &started))
  /external/webkit/LayoutTests/storage/domstorage/localstorage/
private-browsing-affects-storage-expected.txt 1 This is a test to make sure that when private browsing is on any attempt to change the localStorage area fail.
window-open-expected.txt 1 This is a test to make sure the localStorage object for multiple windows in the same security origin share the same global storage area.
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/
private-browsing-affects-storage-expected.txt 1 This is a test to make sure that when private browsing is on any attempt to change the sessionStorage area fail.
  /external/icu4c/samples/layout/
cgnomelayout.c 90 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); local
99 gtk_widget_hide(area);
101 gtk_widget_show_all(area);
229 GtkWidget *area; local
249 area = gtk_drawing_area_new();
250 gtk_object_set_data(GTK_OBJECT(app), "area", area); local
252 style = gtk_style_copy(gtk_widget_get_style(area));
258 gtk_widget_set_style(area, style)
260 gnome_app_set_contents(GNOME_APP(app), area); local
    [all...]
gnomelayout.cpp 98 GtkWidget *area = GTK_WIDGET(gtk_object_get_data(GTK_OBJECT(app), "area")); local
107 gtk_widget_hide(area);
109 gtk_widget_show_all(area);
250 GtkWidget *area = gtk_drawing_area_new(); local
251 gtk_object_set_data(GTK_OBJECT(app), "area", area); local
253 GtkStyle *style = gtk_style_copy(gtk_widget_get_style(area));
259 gtk_widget_set_style(area, style);
261 gnome_app_set_contents(GNOME_APP(app), area); local
    [all...]
  /external/dropbear/libtomcrypt/src/misc/
zeromem.c 20 @param out The destination of the area to zero
21 @param outlen The length of the area to zero (octets)
  /external/webkit/WebCore/manual-tests/
focus-select-when-clicked.html 12 3. Press tab, and verify that focus moves to TEXT AREA 2 <br></p>
15 Blue focus ring is drawn around the pop-up menu when clicked, then focus moves to TEXT AREA 2 after pressing tab.</p>
21 <input type="text" value="TEXT AREA 1">
26 <input type="text" value="TEXT AREA 2">
textarea-focus.html 14 Click in the red text area below.
18 The text area&rsquo;s background will change from red to green.
22 The text area will not change to green. Only switching to another window and back to this window
  /external/webkit/WebCore/storage/
LocalStorageTask.h 46 static PassOwnPtr<LocalStorageTask> createImport(StorageAreaSync* area) { return new LocalStorageTask(AreaImport, area); }
47 static PassOwnPtr<LocalStorageTask> createSync(StorageAreaSync* area) { return new LocalStorageTask(AreaSync, area); }
  /external/webkit/WebCore/storage/wince/
LocalStorageThreadWince.cpp 57 void LocalStorageThread::scheduleImport(PassRefPtr<StorageAreaSync> area)
59 m_queue.append(LocalStorageTask::createImport(area));
64 void LocalStorageThread::scheduleSync(PassRefPtr<StorageAreaSync> area)
66 m_queue.append(LocalStorageTask::createSync(area));
  /external/webkit/WebCore/manual-tests/gtk/
copy-htmltext.html 8 <h1>Copy HTML content from currently editable area</h1>
11 Here is a Editable Area,<br />
15 <li>Select all that text or picture in this editable area (type <b>Ctrl-A</b> / Option-A)</li>
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 203 NJ_UINT8 *area; local
214 area = YOMI_AREA_TOP_ADDR(hdl) + DATA_YOMI(data);
225 NJ_CHAR_COPY(stroke, area);
227 area += sizeof(NJ_CHAR);
232 dic_ylen = convert_to_yomi(hdl, area, DATA_YOMI_SIZE(data), stroke, size);
359 NJ_UINT8 *area, *data; local
373 area = YOMI_AREA_TOP_ADDR(loc->handle) + DATA_YOMI(data);
385 NJ_CHAR_COPY(stroke, area);
387 area += sizeof(NJ_CHAR);
392 len = convert_to_yomi(loc->handle, area, DATA_YOMI_SIZE(data), stroke, size)
405 NJ_UINT8 *data, *area; local
    [all...]
  /external/webkit/WebKit/android/jni/
PictureSet.cpp 76 void PictureSet::add(const SkRegion& area, SkPicture* picture,
79 DBG_SET_LOGD("%p area={%d,%d,r=%d,b=%d} pict=%p elapsed=%d split=%d", this,
80 area.getBounds().fLeft, area.getBounds().fTop,
81 area.getBounds().fRight, area.getBounds().fBottom, picture,
85 SkRegion diff = SkRegion(area);
89 Pictures pictureAndBounds = {area, picture, area.getBounds(),
112 SkRegion& area = working->mArea local
178 SkRegion& area = working->mArea; local
248 const SkRegion& area = working->mArea; local
622 const SkRegion& area = working->mArea; local
    [all...]
  /external/kernel-headers/original/linux/
vmalloc.h 45 extern void *__vmalloc_area(struct vm_struct *area, gfp_t gfp_mask,
68 extern int map_vm_area(struct vm_struct *area, pgprot_t prot,
70 extern void unmap_vm_area(struct vm_struct *area);
  /external/proguard/src/proguard/gui/
TextAreaOutputStream.java 29 * This <code>PrintStream</code> appends its output to a given text area.
54 // Append the accumulated buffer contents to the text area.
74 // Append the accumulated text to the text area.
  /frameworks/base/services/java/com/android/server/
InputWindow.java 40 // Window frame area.
46 // Window visible frame area.
52 // Window touchable area.
  /external/libffi/testsuite/libffi.call/
return_ldl.c 0 /* Area: ffi_call

Completed in 2498 milliseconds

1 2 3 4 5 6 7 8 91011>>