Searched refs:widget (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/external/google-breakpad/src/testing/gtest/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc41 #include <Widget/widget.h>
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name");
55 EXPECT_EQ(1, widget.GetIntValue());
59 widget.GetCharPtrValue(buffer, max_size);
/external/protobuf/gtest/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc41 #include <Widget/widget.h>
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name");
55 EXPECT_EQ(1, widget.GetIntValue());
59 widget.GetCharPtrValue(buffer, max_size);
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc41 #include <Widget/widget.h>
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name");
55 EXPECT_EQ(1, widget.GetIntValue());
59 widget.GetCharPtrValue(buffer, max_size);
/external/autotest/frontend/client/src/autotest/common/table/
H A DTableClickWidget.java11 private FocusWidget widget; field in class:TableClickWidget
17 public void onClick(TableClickWidget widget); argument
20 public TableClickWidget(FocusWidget widget, TableWidgetClickListener listener, argument
22 this.widget = widget;
27 initWidget(widget);
28 widget.addClickHandler(this);
44 return widget;
/external/opencv3/modules/viz/include/opencv2/viz/
H A Dwidget_accessor.hpp67 /** @brief Returns vtkProp of a given widget.
69 @param widget Widget whose vtkProp is to be returned.
73 vtkActor * actor = vtkActor::SafeDownCast(viz::WidgetAccessor::getProp(widget));
76 static vtkSmartPointer<vtkProp> getProp(const Widget &widget);
77 /** @brief Sets vtkProp of a given widget.
79 @param widget Widget whose vtkProp is to be set. @param prop A vtkProp.
81 static void setProp(Widget &widget, vtkSmartPointer<vtkProp> prop);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowButton.java3 import android.widget.Button;
4 import android.widget.TextView;
H A DShadowAbsSeekBar.java3 import android.widget.AbsSeekBar;
H A DShadowAbsoluteLayout.java3 import android.widget.AbsoluteLayout;
H A DShadowFilter.java3 import android.widget.Filter;
H A DShadowLinearLayout.java3 import android.widget.LinearLayout;
H A DShadowGridView.java3 import android.widget.GridView;
4 import android.widget.ListAdapter;
H A DShadowAutoCompleteTextView.java6 import android.widget.AdapterView;
7 import android.widget.AdapterView.OnItemClickListener;
8 import android.widget.AutoCompleteTextView;
9 import android.widget.Filterable;
10 import android.widget.ListAdapter;
H A DShadowListFragment.java6 import android.widget.AdapterView;
7 import android.widget.ListAdapter;
8 import android.widget.ListView;
H A DShadowRadioButton.java4 import android.widget.RadioButton;
5 import android.widget.RadioGroup;
10 * Shadows the {@code android.widget.RadioButton} class.
H A DShadowTabActivity.java4 import android.widget.TabHost;
5 import android.widget.TabWidget;
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/widgets/
H A DResizableWidgetCollection.java30 /** A collection of {@link ResizableWidget} that periodically checks the outer dimensions of a widget and redraws it as necessary.
39 private ResizableWidget widget; field in class:ResizableWidgetCollection.ResizableWidgetInfo
47 * @param widget the widget that will be monitored */
48 public ResizableWidgetInfo (ResizableWidget widget) { argument
49 this.widget = widget;
73 int offsetWidth = widget.getElement().getOffsetWidth();
74 int offsetHeight = widget.getElement().getOffsetHeight();
75 int clientWidth = widget
175 add(ResizableWidget widget) argument
218 remove(ResizableWidget widget) argument
254 updateWidgetSize(ResizableWidget widget) argument
[all...]
/external/opencv3/modules/highgui/src/
H A Dwindow_gtk.cpp69 // in totem/src/backend/bacon-video-widget-xine.c
78 GtkWidget widget; member in struct:_CvImageWidget
90 /** Allocate new image viewer widget */
93 /** Set the image to display in the widget */
94 void cvImageWidgetSetImage(CvImageWidget * widget, const CvArr *arr);
111 void cvImageWidgetSetImage(CvImageWidget * widget, const CvArr *arr){ argument
122 if(widget->original_image && !CV_ARE_SIZES_EQ(mat, widget->original_image)){
123 cvReleaseMat( &widget->original_image );
125 if(!widget
153 cvImageWidget_realize(GtkWidget *widget) argument
209 widget local
242 cvImageWidget_get_preferred_width(GtkWidget *widget, gint *minimal_width, gint *natural_width) argument
266 cvImageWidget_get_preferred_height(GtkWidget *widget, gint *minimal_height, gint *natural_height) argument
291 cvImageWidget_size_request(GtkWidget *widget, GtkRequisition *requisition) argument
322 cvImageWidget_set_size(GtkWidget * widget, int max_width, int max_height) argument
349 cvImageWidget_size_allocate(GtkWidget *widget, GtkAllocation *allocation) argument
504 GtkWidget* widget; member in struct:CvTrackbar
521 GtkWidget* widget; member in struct:CvWindow
896 cvImageWidget_draw(GtkWidget* widget, cairo_t *cr, gpointer data) argument
1627 void* widget = 0; local
1685 icvShowSaveAsDialog(GtkWidget* widget, CvWindow* window) argument
1758 icvOnKeyPress(GtkWidget* widget, GdkEventKey* event, gpointer user_data) argument
1810 icvOnTrackbar( GtkWidget* widget, gpointer user_data ) argument
1828 icvOnClose( GtkWidget* widget, GdkEvent* , gpointer user_data ) argument
1840 icvOnMouse( GtkWidget *widget, GdkEvent *event, gpointer user_data ) argument
[all...]
/external/droiddriver/src/io/appium/droiddriver/validators/
H A DExemptedClassesValidator.java30 private static final Class<?>[] EXEMPTED_CLASSES = {android.widget.Spinner.class,
31 android.widget.EditText.class, android.widget.SeekBar.class,
32 android.widget.AbsListView.class, android.widget.TabWidget.class};
/external/fio/
H A Dgcompat.c52 void gtk_widget_set_can_focus(GtkWidget *widget, gboolean can_focus) argument
55 GTK_WIDGET_SET_FLAGS(widget, GTK_CAN_FOCUS);
57 GTK_WIDGET_UNSET_FLAGS(widget, GTK_CAN_FOCUS);
/external/autotest/client/cros/chameleon/
H A Daudio_widget_link.py31 an output widget.
33 input widget.
45 widget, and it will remains the same until the sink widget is connected
46 to a different link. This is to make sure sink widget knows the channel
72 # Sets channel map of link to the sink widget so
73 # sink widget knows the channel map of recorded data.
124 occupied: True if this widget is occupied by a widget binder.
135 def _check_widget_id(self, port_id, widget)
[all...]
/external/ImageMagick/MagickCore/
H A Dwidget.c58 #include "MagickCore/widget.h"
59 #include "MagickCore/widget-private.h"
187 % DestroyXWidget() destroys resources associated with the X widget.
985 % XDrawWidgetText() first clears the widget and draws a text string justifed
1220 % o text: A string of characters associated with the widget.
1228 Initialize widget info.
1286 Draw the widget highlighting rectangle.
1312 % associated with the widget window.
1347 if (event->xany.window == windows->widget.id)
1350 windows->widget
[all...]
/external/autotest/frontend/client/src/autotest/tko/
H A DWidgetList.java44 public void addWidget(T widget) { argument
45 widgets.add(widget);
46 widgetPanel.add(widget);
49 public void deleteWidget(T widget) { argument
50 widgets.remove(widget);
51 widgetPanel.remove(widget);
58 T widget = factory.getNewWidget(addLink.getText());
59 addWidget(widget);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCountingAdapter.java5 import android.widget.BaseAdapter;
6 import android.widget.TextView;
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DCustomizeWindow.java22 import android.widget.ProgressBar;
23 import android.widget.TextView;
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
H A DMockWidget.java3 import com.androidplot.ui.widget.Widget;

Completed in 999 milliseconds

1234567891011>>