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 35 public TestAttributeInfo(String name, EnumSet<Format> formats, String definedBy,
40 this.mDefinedBy = definedBy;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttributeInfo.java 136 * @param definedBy the name of the class (fully qualified class name) which
139 public void setDefinedBy(String definedBy) {
140 mDefinedBy = definedBy;
AttrsXmlParser.java 177 String definedBy = info.getFullClassName();
181 attribute.setDefinedBy(definedBy);
206 String definedBy = viewLayoutClass.getFullClassName() + DOT_LAYOUT_PARAMS;
210 attribute.setDefinedBy(definedBy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 503 for (final String definedBy : attributeSources) {
504 String sourceClass = definedBy;
517 if (definedBy.equals(node.getFqcn())) {
523 propertyActionTypes.add(RuleAction.createChoices("def_" + definedBy,
530 addPropertyActions(propertyActions, n, onChange, definedBy, false);
607 IMenuCallback onChange, String definedBy, boolean layoutParamsOnly) {
616 // If we have definedBy information, that is most accurate; all layout
619 if (definedBy != null) {
620 if (!definedBy.endsWith(DOT_LAYOUT_PARAMS)) {
627 if (definedBy != null && !definedBy.equals(property.getDefinedBy()))
    [all...]

Completed in 85 milliseconds