OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:contentroot
(Results
1 - 10
of
10
) sorted by null
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
FrameworkActionBar.java
71
FrameLayout
contentRoot
= (FrameLayout) decorContent.findViewById(android.R.id.content);
75
if (
contentRoot
== null) {
76
contentRoot
= new FrameLayout(context);
77
setMatchParent(
contentRoot
);
79
mEnclosingLayout.addView(
contentRoot
);
81
setContentRoot(
contentRoot
);
83
setContentRoot(
contentRoot
);
AppCompatActionBar.java
68
FrameLayout
contentRoot
= new FrameLayout(context);
69
setMatchParent(
contentRoot
);
71
mEnclosingLayout.addView(
contentRoot
);
73
setContentRoot(
contentRoot
);
BridgeActionBar.java
98
protected void setContentRoot(@NonNull FrameLayout
contentRoot
) {
99
mContentRoot =
contentRoot
;
/packages/apps/Settings/src/com/android/settings/nfc/
PaymentSettings.java
75
ViewGroup
contentRoot
= (ViewGroup) getListView().getParent();
77
R.layout.nfc_payment_empty,
contentRoot
, false);
78
contentRoot
.addView(emptyView);
/packages/apps/Settings/src/com/android/settings/print/
PrintServiceSettingsFragment.java
194
ViewGroup
contentRoot
= (ViewGroup) getListView().getParent();
198
contentRoot
.removeView(emptyView);
203
R.layout.empty_print_state,
contentRoot
, false);
208
contentRoot
.addView(emptyView);
214
contentRoot
.removeView(emptyView);
219
R.layout.empty_printers_list_service_enabled,
contentRoot
, false);
220
contentRoot
.addView(emptyView);
225
contentRoot
.removeView(emptyView);
230
R.layout.empty_print_state,
contentRoot
, false);
235
contentRoot
.addView(emptyView)
[
all
...]
PrintSettingsFragment.java
139
ViewGroup
contentRoot
= (ViewGroup) getListView().getParent();
141
R.layout.empty_print_state,
contentRoot
, false);
153
contentRoot
.addView(emptyView);
/external/opencv3/samples/winrt/ImageManipulations/
MainPage.xaml
40
<Grid x:Name="
ContentRoot
" Background="{StaticResource ApplicationPageBackgroundThemeBrush}" Margin="100,20,100,20">
144
<ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" Storyboard.TargetName="
ContentRoot
">
MainPage.xaml.cpp
44
ContentRoot
->Children->Append(HiddenFrame);
88
double layoutRootMarginLeft =
ContentRoot
->Margin.Left;
89
double layoutRootMarginRight =
ContentRoot
->Margin.Right;
/sdk/templates/docs/
default.js
32
var buildNav_ = function(queries, $
contentRoot
, $navRoot) {
37
$
contentRoot
.find(queries[0]).each(function() {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Layout.java
168
FrameLayout
contentRoot
= new FrameLayout(getContext());
183
contentRoot
.setLayoutParams(params);
184
return
contentRoot
;
Completed in 148 milliseconds