Home
last modified time | relevance | path

Searched refs:descs (Results 1 – 6 of 6) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
DAnimatorDescriptors.java151 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); in addElement() local
153 DescriptorsUtils.appendAttributes(descs, in addElement()
164 DescriptorsUtils.appendAttributes(descs, in addElement()
174 descs.add(extraAttribute); in addElement()
177 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()])); in addElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/
DMenuDescriptors.java159 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); in updateElement() local
163 DescriptorsUtils.appendAttributes(descs, in updateElement()
173 descs.add(extraAttribute); in updateElement()
176 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()])); in updateElement()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/
DOtherXmlDescriptors.java247 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>();
251 DescriptorsUtils.appendAttributes(descs,
261 descs.add(extraAttribute);
264 element.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()]));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
DLayoutDescriptors.java421 ArrayList<AttributeDescriptor> descs = new ArrayList<AttributeDescriptor>(); in createFragment() local
423 descs.add(classAttribute); in createFragment()
424 DescriptorsUtils.appendAttributes(descs, in createFragment()
431 descriptor.setAttributes(descs.toArray(new AttributeDescriptor[descs.size()])); in createFragment()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
DUiTreeBlock.java224 ElementDescriptor[] descs = mDescriptorFilters; in createSectionActions() local
225 if (descs == null && mUiRootNode != null) { in createSectionActions()
226 descs = mUiRootNode.getDescriptor().getChildren(); in createSectionActions()
229 if (descs != null && descs.length > 1) { in createSectionActions()
230 for (ElementDescriptor desc : descs) { in createSectionActions()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
DNodeProxy.java417 AttributeDescriptor[] descs = mNode.getAttributeDescriptors(); in getDeclaredAttributes() local
418 int n = descs.length; in getDeclaredAttributes()
422 infos[i] = descs[i].getAttributeInfo(); in getDeclaredAttributes()