HomeSort by relevance Sort by last modified time
    Searched defs:fixed (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/ui/tests/
ui_gfx_image_unittest.cc 43 GtkWidget* fixed = gtk_fixed_new(); local
44 gtk_container_add(GTK_CONTAINER(window), fixed); local
48 gtk_fixed_put(GTK_FIXED(fixed), image_view, 10, 10);
  /external/chromium/chrome/browser/ui/gtk/
gtk_expanded_container.h 52 GtkFixed fixed; member in struct:_GtkExpandedContainer
gtk_custom_menu_item.cc 358 GtkWidget* fixed = gtk_fixed_new(); local
359 gtk_widget_set_size_request(fixed, 5, -1);
361 gtk_box_pack_start(GTK_BOX(menu_item->hbox), fixed, FALSE, FALSE, 0);
362 gtk_widget_show(fixed);
364 menu_item->all_widgets = g_list_append(menu_item->all_widgets, fixed);
  /external/webkit/Source/WebCore/rendering/
LayoutState.cpp 46 bool fixed = renderer->isPositioned() && renderer->style()->position() == FixedPosition; local
47 if (fixed) {
54 if (renderer->isPositioned() && !fixed) {
66 m_clipped = !fixed && prev->m_clipped;
  /development/tools/apkcheck/src/com/android/apkcheck/
MethodInfo.java 85 String fixed = TypeUtils.ambiguousToBinaryName(mParameters.get(i), local
87 mParameters.set(i, fixed);
  /external/v8/test/mjsunit/
html-string-funcs.js 35 fixed: 'tt', italics: 'i', small: 'small',
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler_unittest.cc 37 GtkWidget* fixed = gtk_fixed_new(); local
38 handler_ = new GtkKeyBindingsHandler(fixed);
39 gtk_container_add(GTK_CONTAINER(window_), fixed); local
40 gtk_widget_show(fixed);
  /external/valgrind/main/none/tests/linux/
mremap2.c 43 // A suitable attempted fixed dst is workingarea + 150*PAGE.
108 int alocal, maymove, fixed, nsi, dstpossible; local
121 for (fixed = 0; fixed <= 1; fixed++) {
129 (fixed ? MREMAP_FIXED : 0);
143 printf("maymv %d fixed %d newsz %2d dstpo %d dst %p -> ",
144 maymove, fixed, newsizes[nsi], dstpossible, dst );
  /sdk/ninepatch/src/com/android/ninepatch/
NinePatchChunk.java 419 * This returns both the fixed areas, and the patches (stretchable) areas.
422 * of fixed area. The second list ({@link Pair#mSecond}) is the list of stretchable areas.
438 List<Pair<Integer>> fixed = new ArrayList<Pair<Integer>>(); local
448 fixed.add(new Pair<Integer>(lastIndex, i));
460 fixed.add(new Pair<Integer>(lastIndex, pixels.length));
466 fixed.clear();
469 return new Pair<List<Pair<Integer>>>(fixed, patches);
  /external/qemu/distrib/zlib-1.2.3/
infback.c 65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
79 static code fixed[544]; local
81 /* build fixed huffman tables if first call (may not be thread safe) */
92 next = fixed;
299 case 1: /* fixed block */
301 Tracev((stderr, "inflate: fixed codes block%s\n",
inflate.c 24 * - Correct filename to inffixed.h for fixed tables in inflate.c
60 * - Fixed stored blocks bug in inflateBack()
197 fixed code decoding. Normally this returns fixed tables from inffixed.h.
211 static code fixed[544]; local
213 /* build fixed huffman tables if first call (may not be thread safe) */
224 next = fixed;
275 puts(" /* inffixed.h -- table for decoding fixed codes");
790 case 1: /* fixed block */
792 Tracev((stderr, "inflate: fixed codes block%s\n"
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.cpp 272 RefPtr<Element> fixed = doc->createElement(divTag, false); local
273 reportElement->appendChild(fixed.get(), ec);
274 fixed->setAttribute(styleAttr, "font-family:monospace;font-size:12px");
275 fixed->appendChild(doc->createTextNode(errorMessages), ec);
  /external/zlib/
infback.c 65 fixed code decoding. Normally this returns fixed tables from inffixed.h.
79 static code fixed[544]; local
81 /* build fixed huffman tables if first call (may not be thread safe) */
92 next = fixed;
299 case 1: /* fixed block */
301 Tracev((stderr, "inflate: fixed codes block%s\n",
inflate.c 24 * - Correct filename to inffixed.h for fixed tables in inflate.c
60 * - Fixed stored blocks bug in inflateBack()
232 fixed code decoding. Normally this returns fixed tables from inffixed.h.
246 static code fixed[544]; local
248 /* build fixed huffman tables if first call (may not be thread safe) */
259 next = fixed;
310 puts(" /* inffixed.h -- table for decoding fixed codes");
827 case 1: /* fixed block */
829 Tracev((stderr, "inflate: fixed codes block%s\n"
    [all...]
  /bionic/libc/kernel/common/linux/
if_hippi.h 51 __be32 fixed; member in struct:hippi_fp_hdr
  /development/ndk/platforms/android-3/include/linux/
if_hippi.h 51 __be32 fixed; member in struct:hippi_fp_hdr
  /external/kernel-headers/original/linux/
if_hippi.h 105 __be32 fixed; member in struct:hippi_fp_hdr
  /external/skia/src/utils/
SkNinePatch.cpp 66 // stretchy areas and scale the fixed areas to fit within the target bounds.
71 delta = SkScalarMul(delta, -stretchFactor); // scale fixed areas
73 // fixed and scale the stretchable areas to fill the target bounds.
167 const SkScalar fixed = SkIntToScalar(bitmap.width() - stretchSize); local
168 if (bounds.width() >= fixed)
169 stretchX = (bounds.width() - fixed) / stretchSize;
171 stretchX = SkScalarDiv(-bounds.width(), fixed);
179 const SkScalar fixed = SkIntToScalar(bitmap.height() - stretchSize); local
180 if (bounds.height() >= fixed)
181 stretchY = (bounds.height() - fixed) / stretchSize
    [all...]
  /external/stlport/src/
ios.cpp 50 const ios_base::fmtflags ios_base::fixed; member in class:ios_base
  /external/zlib/contrib/infback9/
infback9.c 48 Build and output length and distance decoding tables for fixed code
59 code fixed[544]; local
67 next = fixed;
80 puts(" /* inffix9.h -- table for decoding deflate64 fixed codes");
293 case 1: /* fixed block */
298 Tracev((stderr, "inflate: fixed codes block%s\n",
  /frameworks/base/libs/hwui/
Patch.cpp 133 const float fixed = bitmapWidth - stretchSize; local
134 const float xStretch = right - left - fixed;
144 const float fixed = bitmapHeight - stretchSize; local
145 const float yStretch = bottom - top - fixed;
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 50 const ios_base::fmtflags ios_base::fixed; member in class:ios_base
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_hippi.h 105 __be32 fixed; member in struct:hippi_fp_hdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
if_hippi.h 51 __be32 fixed; member in struct:hippi_fp_hdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
if_hippi.h 51 __be32 fixed; member in struct:hippi_fp_hdr

Completed in 982 milliseconds

1 2 3 4