/development/samples/devbytes/animation/WindowAnimations/src/com/example/android/windowanimations/ |
AnimatedSubActivity.java | 33 setContentView(R.layout.activity_window_anim_sub);
|
SubActivity.java | 33 setContentView(R.layout.activity_sub);
|
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/ |
HeadlinesFragment.java | 38 // We need to use a different list item layout for devices older than Honeycomb 39 int layout = Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ? local 40 android.R.layout.simple_list_item_activated_1 : android.R.layout.simple_list_item_1; 43 setListAdapter(new ArrayAdapter<String>(getActivity(), layout, Ipsum.Headlines)); 50 // When in two-pane layout, set the listview to highlight the selected list item 76 // Set the item as checked to be highlighted when in two-pane layout
|
/development/samples/training/testingfun/app/src/com/example/android/testingfun/lesson2/ |
MyFirstTestActivity.java | 34 setContentView(R.layout.activity_my_first_test);
|
/external/chromium_org/chrome/browser/chromeos/extensions/ |
wallpaper_function_base.h | 14 ash::WallpaperLayout GetLayoutEnum(const std::string& layout);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_delegate_impl.h | 17 // Accesses the hardware keyboard layout and application locale from the 30 const std::string& layout) OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
layout_view.h | 14 // A view that carries its own layout manager. Re-layouts on setFrame:. 20 // Sets a layout manager and takes ownership of it. 21 - (void)setLayoutManager:(scoped_ptr<SimpleGridLayout>)layout; 23 // Return a pointer to layout manager, still owned by the view. 26 // Re-layout subviews according to layout manager. 29 // Query the layout manager for the best height for specified |width|.
|
/external/chromium_org/chromeos/ime/ |
input_method_delegate.h | 28 // Set hardware layout string for testting purpose. 30 const std::string& layout) = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
FixedTableLayout.h | 38 virtual void layout() OVERRIDE;
|
RenderIFrame.h | 41 virtual void layout() OVERRIDE;
|
RenderPagedFlowThread.h | 27 virtual void layout();
|
RenderReplica.h | 46 virtual void layout() OVERRIDE;
|
TableLayout.h | 44 virtual void layout() = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGHiddenContainer.cpp | 32 void RenderSVGHiddenContainer::layout() function in class:blink::RenderSVGHiddenContainer
|
/external/chromium_org/third_party/opus/src/src/ |
opus_multistream_encoder.c | 73 ChannelLayout layout; member in struct:OpusMSEncoder 94 for (s=0;s<st->layout.nb_streams;s++) 96 if (s < st->layout.nb_coupled_streams) 101 return (opus_val32*)(ptr+st->layout.nb_channels*120*sizeof(opus_val32)); 113 for (s=0;s<st->layout.nb_streams;s++) 115 if (s < st->layout.nb_coupled_streams) 123 static int validate_encoder_layout(const ChannelLayout *layout) 126 for (s=0;s<layout->nb_streams;s++) 128 if (s < layout->nb_coupled_streams) 130 if (get_left_channel(layout, s, -1)==-1 [all...] |
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/gen/org/webrtc/voiceengine/test/ |
R.java | 24 public static final class layout {
class in class:R
|
/external/chromium_org/ui/app_list/views/ |
contents_switcher_view.cc | 11 #include "ui/views/layout/box_layout.h" 24 views::BoxLayout* layout = new views::BoxLayout( local 26 layout->set_main_axis_alignment(views::BoxLayout::MAIN_AXIS_ALIGNMENT_CENTER); 27 layout->set_minimum_cross_axis_size(kMinimumHeight); 28 SetLayoutManager(layout);
|
/external/compiler-rt/test/BlocksRuntime/ |
nullblockisa.c | 24 struct Block_layout layout; member in struct:_custom
|
/external/libopus/src/ |
opus_multistream_encoder.c | 73 ChannelLayout layout; member in struct:OpusMSEncoder 94 for (s=0;s<st->layout.nb_streams;s++) 96 if (s < st->layout.nb_coupled_streams) 101 return (opus_val32*)(ptr+st->layout.nb_channels*120*sizeof(opus_val32)); 113 for (s=0;s<st->layout.nb_streams;s++) 115 if (s < st->layout.nb_coupled_streams) 123 static int validate_encoder_layout(const ChannelLayout *layout) 126 for (s=0;s<layout->nb_streams;s++) 128 if (s < layout->nb_coupled_streams) 130 if (get_left_channel(layout, s, -1)==-1 [all...] |
/external/skia/include/core/ |
SkDeviceProperties.h | 10 * layout. If the orientation is horizontal, the layout is interpreted as 11 * left to right. It the orientation is vertical, the layout is 24 /** The layout of the pixel specifies its subpixel geometry. 29 enum Layout { 42 Layout getLayout() { 43 return static_cast<Layout>(fGeometry & kLayoutMask); 62 static Layout fromOldLayout(SkFontLCDConfig::LCDOrder order) { 72 Layout layout = fromOldLayout(SkFontLCDConfig::GetSubpixelOrder()); //kRGB_Layou local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
DialogTitle.java | 21 import android.text.Layout; 52 final Layout layout = getLayout(); local 53 if (layout != null) { 54 final int lineCount = layout.getLineCount(); 56 final int ellipsisCount = layout.getEllipsisCount(lineCount - 1);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
Include.java | 31 setContentView(R.layout.include_tag);
|
Longpress.java | 29 setContentView(R.layout.longpress);
|
RemoteViewsActivity.java | 31 setContentView(R.layout.remote_view_host);
|
ViewAttachTestActivity.java | 29 setContentView(R.layout.attach_view_test);
|