Searched defs:adjustment (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/gtk/
H A DMainFrameScrollbarGtk.cpp40 // as GtkScrolledWindow). The adjustment may also be null, in which case there
45 MainFrameScrollbarGtk::MainFrameScrollbarGtk(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, GtkAdjustment* adjustment) argument
49 attachAdjustment(adjustment);
61 void MainFrameScrollbarGtk::attachAdjustment(GtkAdjustment* adjustment) argument
63 if (m_adjustment.get() == adjustment)
68 m_adjustment = adjustment;
H A DScrollbarThemeGtk2.cpp111 // The adjustment controls the rendering of the scrollbar thumb. If it's not set
113 GtkAdjustment* adjustment = gtk_range_get_adjustment(GTK_RANGE(widget)); local
114 gtk_adjustment_set_value(adjustment, scrollbar->currentPos());
115 gtk_adjustment_set_lower(adjustment, 0);
116 gtk_adjustment_set_upper(adjustment, scrollbar->maximum());
120 gtk_adjustment_set_page_size(adjustment, rect.height());
123 gtk_adjustment_set_page_size(adjustment, rect.width());
H A DGtkVersioning.c32 void gtk_adjustment_configure(GtkAdjustment* adjustment, gdouble value, gdouble lower, gdouble upper, argument
35 g_object_freeze_notify(G_OBJECT(adjustment));
37 g_object_set(adjustment,
45 g_object_thaw_notify(G_OBJECT(adjustment));
47 gtk_adjustment_changed(adjustment);
48 gtk_adjustment_value_changed(adjustment);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebview.c146 GtkAdjustment* adjustment; local
170 adjustment = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(scrolled_window));
171 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), ==, 0.0);
177 action is performed and afterward it is checked if the adjustment
189 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), !=, 0.0);
202 GtkAdjustment* adjustment; local
235 adjustment = gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(scrolled_window));
236 g_assert_cmpfloat(gtk_adjustment_get_value(adjustment), ==, 0.0);
238 lower = gtk_adjustment_get_lower(adjustment);
239 upper = gtk_adjustment_get_upper(adjustment);
[all...]
/external/e2fsprogs/lib/uuid/
H A Dgen_uuid.c308 THREAD_LOCAL int adjustment = 0; local
356 adjustment = a;
373 adjustment = 0;
377 if (adjustment >= MAX_ADJUSTMENT)
379 adjustment++;
381 adjustment = 0;
385 clock_reg = tv.tv_usec*10 + adjustment;
390 adjustment += *num - 1;
391 last.tv_usec += adjustment / 10;
392 adjustment
[all...]
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFullscreenVideoController.cpp513 GtkAdjustment* adjustment = gtk_range_get_adjustment(GTK_RANGE(m_timeHScale)); local
514 gtk_adjustment_set_value(adjustment, value);
548 GtkAdjustment* adjustment = GTK_ADJUSTMENT(gtk_adjustment_new(0.0, 0.0, 100.0, 0.1, 1.0, 1.0)); local
549 m_timeHScale = gtk_hscale_new(adjustment);
/external/harfbuzz/src/
H A Dharfbuzz-shaper.cpp1285 HB_Fixed adjustment = positions[i].x_advance; local
1288 adjustment = HB_FIXED_ROUND(adjustment);
1291 advances[i] = adjustment;
1293 advances[i] += adjustment;
/external/dbus/bus/
H A Dconnection.c134 int adjustment)
141 ": was %d adjustment %d making %d\n",
142 uid, current_count, adjustment, current_count + adjustment);
146 current_count += adjustment;
162 /* only positive adjustment can fail as otherwise
165 _dbus_assert (adjustment > 0 ||
166 (adjustment <= 0 && retval));
132 adjust_connections_for_uid(BusConnections *connections, dbus_uid_t uid, int adjustment) argument
/external/v8/src/
H A Dheap.h1363 void LowerOldGenLimits(intptr_t adjustment) { argument
1364 size_of_old_gen_at_last_old_space_gc_ -= adjustment;
/external/webkit/Source/WebCore/rendering/
H A DRenderBlockLineLayout.cpp1090 int adjustment = 0; local
1091 adjustLinePositionForPagination(lineBox, adjustment);
1092 if (adjustment) {
1094 lineBox->adjustBlockDirectionPosition(adjustment);
1095 if (useRepaintBounds) // This can only be a positive adjustment, so no need to update repaintTop.
1098 if (availableLogicalWidthForLine(oldLogicalHeight + adjustment, firstLine) != oldLineWidth) {
1102 setLogicalHeight(oldLogicalHeight + adjustment);
2405 // of the object. Do this adjustment to make it point to the start
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp425 static void setHorizontalAdjustment(WebKitWebView* webView, GtkAdjustment* adjustment) argument
430 webView->priv->horizontalAdjustment = adjustment;
434 view->setHorizontalAdjustment(adjustment);
437 static void setVerticalAdjustment(WebKitWebView* webView, GtkAdjustment* adjustment) argument
442 webView->priv->verticalAdjustment = adjustment;
446 view->setVerticalAdjustment(adjustment);
/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 ...

Completed in 2013 milliseconds