HomeSort by relevance Sort by last modified time
    Searched refs:definedBy (Results 1 - 4 of 4) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestAttributeInfo.java 33 public TestAttributeInfo(String name, Format[] formats, String definedBy,
38 this.mDefinedBy = definedBy;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 127 * @param definedBy the name of the class (fully qualified class name) which
130 public void setDefinedBy(String definedBy) {
131 mDefinedBy = definedBy;
AttrsXmlParser.java 167 String definedBy = info.getFullClassName();
171 attribute.setDefinedBy(definedBy);
196 String definedBy = viewLayoutClass.getFullClassName() + DOT_LAYOUT_PARAMS;
200 attribute.setDefinedBy(definedBy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 497 for (final String definedBy : attributeSources) {
498 String sourceClass = definedBy;
511 if (definedBy.equals(node.getFqcn())) {
517 propertyActionTypes.add(RuleAction.createChoices("def_" + definedBy,
523 addPropertyActions(propertyActions, n, onChange, definedBy, false);
600 IMenuCallback onChange, String definedBy, boolean layoutParamsOnly) {
609 // If we have definedBy information, that is most accurate; all layout
612 if (definedBy != null) {
613 if (!definedBy.endsWith(DOT_LAYOUT_PARAMS)) {
620 if (definedBy != null && !definedBy.equals(property.getDefinedBy()))
    [all...]

Completed in 43 milliseconds