OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VALUE_FILL_PARENT
(Results
1 - 10
of
10
) sorted by null
/sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java
45
private static final String
VALUE_FILL_PARENT
= "fill_parent";
126
return attribute.equals(
VALUE_FILL_PARENT
) || attribute.equals(VALUE_MATCH_PARENT);
141
return attribute.equals(
VALUE_FILL_PARENT
) || attribute.equals(VALUE_MATCH_PARENT);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ContextPullParser.java
21
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
112
return
VALUE_FILL_PARENT
;
UiElementPullParser.java
22
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
373
return
VALUE_FILL_PARENT
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java
30
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
137
if (canMatchParent &&
VALUE_FILL_PARENT
.equals(currentWidth)) {
140
currentWidth =
VALUE_FILL_PARENT
;
148
if (canMatchParent &&
VALUE_FILL_PARENT
.equals(currentHeight)) {
151
currentHeight =
VALUE_FILL_PARENT
;
383
widthChoices.add(Pair.of(
VALUE_FILL_PARENT
, "Fill Parent"));
404
heightChoices.add(Pair.of(
VALUE_FILL_PARENT
, "Fill Parent"));
[
all
...]
LayoutConstants.java
122
public static final String
VALUE_FILL_PARENT
= "fill_parent"; //$NON-NLS-1$
BaseLayoutRule.java
53
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
213
value =
VALUE_FILL_PARENT
;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java
24
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
285
if (VALUE_MATCH_PARENT.equals(oldWidth) ||
VALUE_FILL_PARENT
.equals(oldWidth)) {
288
if (VALUE_MATCH_PARENT.equals(oldHeight) ||
VALUE_FILL_PARENT
.equals(oldHeight)) {
GridLayoutConverter.java
47
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
396
VALUE_FILL_PARENT
.equals(width.getValue()))) {
401
VALUE_FILL_PARENT
.equals(height.getValue()))) {
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DescriptorsUtils.java
36
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
703
fill ?
VALUE_FILL_PARENT
: VALUE_WRAP_CONTENT,
708
fill ?
VALUE_FILL_PARENT
: VALUE_WRAP_CONTENT,
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java
24
import static com.android.ide.common.layout.LayoutConstants.
VALUE_FILL_PARENT
;
282
String fill =
VALUE_FILL_PARENT
;
[
all
...]
Completed in 159 milliseconds