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

1 2 3 4 5 6 7 8 91011>>

  /device/google/cuttlefish_common/common/vsoc/lib/
audio_data_layout.cpp 17 // Define some of the string constants associated with the region layout.
21 namespace layout { namespace in namespace:vsoc
28 } // namespace layout
gralloc_layout.cpp 17 // Define some of the string constants associated with the region layout.
21 namespace layout { namespace in namespace:vsoc
29 } // layout
input_events_layout.cpp 17 // Define some of the string constants associated with the region layout.
21 namespace layout { namespace in namespace:vsoc
28 } // namespace layout
managed_e2e_test_region_layout.cpp 20 namespace layout { namespace in namespace:vsoc
28 } // namespace layout
screen_layout.cpp 19 namespace layout { namespace in namespace:vsoc
26 } // namespace layout
e2e_test_region_layout.cpp 17 // Define some of the string constants associated with the region layout.
21 namespace layout { namespace in namespace:vsoc
42 } // namespace layout
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
stringquery.cpp 19 QGridLayout *layout = new QGridLayout; local
20 layout->addWidget(new QLabel(label), 0, 0);
21 layout->addWidget(edit, 0, 1);
22 setLayout(layout);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
Resizable.java 39 public void layout(final DisplayDimensions dims); method in interface:Resizable
  /external/skia/src/gpu/
GrShaderVar.cpp 39 SkString layout = fLayoutQualifier; local
41 out->appendf("layout(%s) ", fLayoutQualifier.c_str());
  /device/google/cuttlefish_common/common/vsoc/shm/
audio_data_layout.h 21 // Memory layout for region carrying audio data from audio HAL to client.
24 namespace layout { namespace in namespace:vsoc
37 } // namespace layout
base.h 21 // Base macros for all layout structures.
29 // 'ShmTypeValidator<vsoc::layout::myclass::ClassName>'
46 namespace layout { namespace in namespace:vsoc
73 * Base class for all region layout structures.
81 } // namespace layout
input_events_layout.h 21 // Memory layout for region carrying input events from host to guest
24 namespace layout { namespace in namespace:vsoc
45 } // namespace layout
managed_e2e_test_region_layout.h 23 namespace layout { namespace in namespace:vsoc
45 } // namespace layout
  /external/compiler-rt/test/BlocksRuntime/
nullblockisa.c 24 struct Block_layout layout; member in struct:_custom
  /external/skia/src/gpu/vk/
GrVkPipelineLayout.h 17 GrVkPipelineLayout(VkPipelineLayout layout) : fPipelineLayout(layout) {}
19 VkPipelineLayout layout() const { return fPipelineLayout; } function in class:GrVkPipelineLayout
  /external/skqp/src/gpu/
GrShaderVar.cpp 57 SkString layout = fLayoutQualifier; local
59 out->appendf("layout(%s) ", fLayoutQualifier.c_str());
  /external/skqp/src/gpu/vk/
GrVkPipelineLayout.h 17 GrVkPipelineLayout(VkPipelineLayout layout) : fPipelineLayout(layout) {}
19 VkPipelineLayout layout() const { return fPipelineLayout; } function in class:GrVkPipelineLayout
  /cts/tests/tests/view/src/android/view/cts/
ViewGroupChildDrawingOrderTest.java 46 LinearLayout layout = new LinearLayout(mContext); local
47 layout.addView(new View(mContext));
48 layout.addView(new View(mContext));
49 layout.addView(new View(mContext));
51 assertEquals(0, layout.getChildDrawingOrder(0));
52 assertEquals(1, layout.getChildDrawingOrder(1));
53 assertEquals(2, layout.getChildDrawingOrder(2));
58 LinearLayoutWithDrawingOrder layout = new LinearLayoutWithDrawingOrder(mContext); local
59 layout.addView(new View(mContext));
60 layout.addView(new View(mContext))
    [all...]
FocusFinderCtsActivity.java 26 public ViewGroup layout; field in class:FocusFinderCtsActivity
39 setContentView(R.layout.focus_finder_layout);
40 layout = (ViewGroup) findViewById(R.id.layout);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionFocus.java 46 final LinearLayout layout = new LinearLayout(this); local
47 layout.setOrientation(LinearLayout.HORIZONTAL);
48 layout.setLayoutParams(new ViewGroup.LayoutParams(
58 layout.addView(leftColumn);
63 layout.addView(middleColumn);
68 layout.addView(rightColumn);
70 setContentView(layout);
ScrollView2.java 28 * Demonstrates wrapping a layout in a ScrollView.
35 setContentView(R.layout.scroll_view_2);
37 LinearLayout layout = (LinearLayout) findViewById(R.id.layout); local
45 layout.addView(textView, p);
49 layout.addView(buttonView, p);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowRelativeLayoutTest.java 23 RelativeLayout layout = new RelativeLayout(ApplicationProvider.getApplicationContext()); local
24 layout.addView(imageView, new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
36 RelativeLayout layout = new RelativeLayout(ApplicationProvider.getApplicationContext()); local
37 layout.addView(imageView, new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT));
  /cts/tests/framework/base/windowmanager/app/src/android/server/wm/app/
ShowWhenLockedAttrImeActivity.java 32 final LinearLayout layout = new LinearLayout(this); local
33 layout.setOrientation(LinearLayout.VERTICAL);
34 layout.addView(editText);
35 setContentView(layout);
  /development/samples/ApiDemos/src/com/example/android/apis/inputmethod/
HintLocales.java 70 final LinearLayout layout = new LinearLayout(this); local
71 layout.setOrientation(VERTICAL);
75 layout.addView(createEditTextWithImeHintLocales(null));
80 layout.addView(createEditTextWithImeHintLocales(LocaleList.forLanguageTags("en-US")));
83 layout.addView(createEditTextWithImeHintLocales(
87 layout.addView(createEditTextWithImeHintLocales(LocaleList.forLanguageTags("fil-ph")));
90 layout.addView(createEditTextWithImeHintLocales(LocaleList.forLanguageTags("fr")));
91 layout.addView(createEditTextWithImeHintLocales(LocaleList.forLanguageTags("zh_CN")));
92 layout.addView(createEditTextWithImeHintLocales(LocaleList.forLanguageTags("ja")));
96 layout.addView(createEditTextWithImeHintLocales
    [all...]
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_lock.cpp 22 namespace layout { namespace in namespace:vsoc
48 } // namespace layout

Completed in 964 milliseconds

1 2 3 4 5 6 7 8 91011>>