HomeSort by relevance Sort by last modified time
    Searched refs:Widget (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /external/google-breakpad/src/testing/gtest/xcode/Samples/FrameworkSample/
widget.cc 33 // widget.cc
36 // Widget is a very simple class used for demonstrating the use of gtest
38 #include "widget.h"
40 Widget::Widget(int number, const std::string& name)
44 Widget::~Widget() {}
46 float Widget::GetFloatValue() const {
50 int Widget::GetIntValue() const {
54 std::string Widget::GetStringValue() const
    [all...]
widget.h 33 // widget.h
36 // Widget is a very simple class used for demonstrating the use of gtest. It
42 class Widget {
44 Widget(int number, const std::string& name);
45 ~Widget();
widget_test.cc 36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
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")
    [all...]
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.cc 33 // widget.cc
36 // Widget is a very simple class used for demonstrating the use of gtest
38 #include "widget.h"
40 Widget::Widget(int number, const std::string& name)
44 Widget::~Widget() {}
46 float Widget::GetFloatValue() const {
50 int Widget::GetIntValue() const {
54 std::string Widget::GetStringValue() const
    [all...]
widget.h 33 // widget.h
36 // Widget is a very simple class used for demonstrating the use of gtest. It
42 class Widget {
44 Widget(int number, const std::string& name);
45 ~Widget();
widget_test.cc 36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
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")
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Samples/FrameworkSample/
widget.cc 33 // widget.cc
36 // Widget is a very simple class used for demonstrating the use of gtest
38 #include "widget.h"
40 Widget::Widget(int number, const std::string& name)
44 Widget::~Widget() {}
46 float Widget::GetFloatValue() const {
50 int Widget::GetIntValue() const {
54 std::string Widget::GetStringValue() const
    [all...]
widget.h 33 // widget.h
36 // Widget is a very simple class used for demonstrating the use of gtest. It
42 class Widget {
44 Widget(int number, const std::string& name);
45 ~Widget();
widget_test.cc 36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
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")
    [all...]
  /external/opencv3/modules/viz/include/opencv2/viz/
widget_accessor.hpp 61 class Widget;
67 /** @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
    [all...]
widgets.hpp 60 /// Widget rendering properties
88 /** @brief Base class of all widgets. Widget is implicitly shared. :
90 class CV_EXPORTS Widget
93 Widget();
94 Widget(const Widget& other);
95 Widget& operator=(const Widget& other);
96 ~Widget();
98 /** @brief Creates a widget from ply file
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockWidget.java 3 import com.androidplot.ui.widget.Widget;
7 @MockClass(realClass = Widget.class, inverse = false)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Dialog.py 12 class Dialog(Widget):
16 Widget._setup(self, master, cnf)
23 try: Widget.destroy(self)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Dialog.py 12 class Dialog(Widget):
16 Widget._setup(self, master, cnf)
23 try: Widget.destroy(self)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 12 class Dialog(Widget):
16 Widget._setup(self, master, cnf)
23 try: Widget.destroy(self)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Dialog.py 12 class Dialog(Widget):
16 Widget._setup(self, master, cnf)
23 try: Widget.destroy(self)
  /external/autotest/frontend/client/src/autotest/common/ui/
ElementWidget.java 5 import com.google.gwt.user.client.ui.Widget;
8 * A simple widget that wraps an HTML element. This allows the element to be
11 public class ElementWidget extends Widget {
RealHyperlink.java 5 import com.google.gwt.user.client.ui.Widget;
7 public class RealHyperlink extends Widget {
  /frameworks/base/core/java/android/annotation/
Widget.java 25 * Indicates a class is a widget usable by application developers to create UI.
29 * <li>The widget is not in the package <code>android.widget</code></li>
30 * <li>The widget extends <code>android.view.ViewGroup</code></li>
36 public @interface Widget {
  /external/opencv3/modules/viz/src/
widget.cpp 49 /// widget implementation
51 class cv::viz::Widget::Impl
58 cv::viz::Widget::Widget() : impl_( new Impl() ) { }
60 cv::viz::Widget::Widget(const Widget& other) : impl_( new Impl() )
66 cv::viz::Widget& cv::viz::Widget::operator=(const Widget& other
101 Widget widget; local
302 Widget3D widget; local
324 Widget2D widget; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
PieWidget.java 23 import com.androidplot.ui.widget.Widget;
31 public class PieWidget extends Widget {
  /external/autotest/frontend/client/src/autotest/common/table/
CheckboxFilter.java 9 import com.google.gwt.user.client.ui.Widget;
24 public Widget getWidget() {
Filter.java 6 import com.google.gwt.user.client.ui.Widget;
16 public abstract Widget getWidget();
18 // is this filter controlled by a user-facing widget?
LinkSetFilter.java 6 import com.google.gwt.user.client.ui.Widget;
22 public Widget getWidget() {
SimpleFilter.java 5 import com.google.gwt.user.client.ui.Widget;
35 public Widget getWidget() {

Completed in 745 milliseconds

1 2 3 4 5 6