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

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ManifestElementDescriptor.java 36 * @param xml_name The XML element node name. Case sensitive.
44 public ManifestElementDescriptor(String xml_name,
51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
57 * @param xml_name The XML element node name. Case sensitive.
65 public ManifestElementDescriptor(String xml_name,
72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
78 * @param xml_name The XML element node name. Case sensitive.
85 public ManifestElementDescriptor(String xml_name,
91 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, false);
96 * ManifestElementDescriptor(xml_name, xml_name.capitalize(), null, null, null, children)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DocumentDescriptor.java 43 * @param xml_name The XML element node name. Case sensitive.
46 public DocumentDescriptor(String xml_name, ElementDescriptor[] children) {
47 super(xml_name, children, Mandatory.MANDATORY);
ElementDescriptor.java 71 * @param xml_name The XML element node name. Case sensitive.
82 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
87 mXmlName = xml_name;
99 * @param xml_name The XML element node name. Case sensitive.
110 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
115 mXmlName = xml_name;
128 * @param xml_name The XML element node name. Case sensitive.
135 public ElementDescriptor(String xml_name, ElementDescriptor[] children, Mandatory mandatory) {
136 this(xml_name, prettyName(xml_name), null, null, null, children, mandatory)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ItemElementDescriptor.java 34 * @param xml_name The XML element node name. Case sensitive.
45 public ItemElementDescriptor(String xml_name, String ui_name,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
  /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Functions/
tFunction_Export_Import_Domains.py 564 xml_name="Uncompliant_OutboundParameter.xml"
565 log.I("Import %s with initial settings"%(xml_name))
566 out, err = self.pfw.sendCmd("importDomainsWithSettingsXML",xml_path+xml_name, "", expectSuccess=False)
567 assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(xml_path+xml_name,err))
568 assert out != "Done", log.F("Error not detected when imported %s]"%(xml_path+xml_name))
569 log.I("Test OK : %s is not imported"%(xml_name))
571 xml_name="Uncompliant_UndeclaredConfigurableElement.xml"
572 log.I("Import %s with initial settings"%(xml_name))
573 out, err = self.pfw.sendCmd("importDomainsWithSettingsXML",xml_path+xml_name, "", expectSuccess=False)
574 assert err == None, log.E("Command [importDomainsWithSettingsXML %s] : %s"%(xml_path+xml_name,err)
    [all...]
  /system/media/camera/docs/
CameraMetadataEnums.mako 51 <%def name="single_kind_keys(xml_name, target_class)">\
54 % if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
55 any_visible(section, xml_name, ('public','hidden', 'ndk_public', 'java_public') ):
56 % for inner_namespace in get_children_by_filtering_kind(section, xml_name, 'namespaces'):
68 get_children_by_filtering_kind(section, xml_name, 'entries'), \
CameraMetadataKeys.mako 74 <%def name="single_kind_keys(java_name, xml_name)">\
77 % if section.find_first(lambda x: isinstance(x, metadata_model.Entry) and x.kind == xml_name) and \
78 any_visible(section, xml_name, ('public','hidden','ndk_public','java_public') ):
79 % for inner_namespace in get_children_by_filtering_kind(section, xml_name, 'namespaces'):
87 get_children_by_filtering_kind(section, xml_name, 'merged_entries'), \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
ViewElementDescriptor.java 79 * @param xml_name The XML element node name. Case sensitive.
93 public ViewElementDescriptor(String xml_name, String ui_name,
98 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
109 * @param xml_name The XML element node name. Case sensitive.
113 public ViewElementDescriptor(String xml_name, String fullClassName) {
114 super(xml_name);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/
OtherXmlDescriptors.java 335 String xml_name = info.getShortClassName();
363 return new ViewElementDescriptor(xml_name,
364 xml_name, // ui_name

Completed in 427 milliseconds