HomeSort by relevance Sort by last modified time
    Searched refs:attribute (Results 251 - 275 of 3364) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/obfuscate/
SourceFileRenamer.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
67 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
72 // Fix the source file attribute.
80 // Fix the source file attribute.
  /external/proguard/src/proguard/optimize/info/
CatchExceptionMarker.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
39 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
  /external/selinux/python/sepolicy/sepolicy/
booleans.py 26 def expand_attribute(attribute):
28 return sepolicy.info(sepolicy.ATTRIBUTE, attribute)[0]["types"]
30 return [attribute]
communicate.py 35 def expand_attribute(attribute):
37 return list(next(sepolicy.info(sepolicy.ATTRIBUTE, attribute))["types"])
39 return [attribute]
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 22 m_pAttrSet = new AttributeSet(16, pConfig.attribute().predefined());
24 pConfig.attribute().predefined(),
25 pConfig.attribute().constraint());
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementhasattribute03.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
36 * Create an element Node and an attribute Node. Invoke hasAttribute method
37 * to verify that there is no attribute. Append the attribute node to the element node.
69 Attr attribute; local
73 attribute = doc.createAttribute("domestic");
76 newAttribute = element.setAttributeNode(attribute);
elementhasattribute04.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
36 * Create an element Node and an attribute Node and add the attribute node to the element.
68 Attr attribute; local
72 attribute = doc.createAttribute("domestic");
73 newAttribute = element.setAttributeNode(attribute);
getAttributeNodeNS01.java 35 * attribute node by local name and NamespaceURI.
40 * proper attribute node was retrieved. This attribute
41 * value should be null since there is no such attribute.
73 Attr attribute; local
78 attribute = testAddr.getAttributeNodeNS(namespaceURI, localName);
79 assertNull("throw_Null", attribute);
nodesetprefix07.java 34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the specified
37 * Create a new attribute node whose namespaceURI is different form "http://www.w3.org/2000/xmlns/"
67 Attr attribute; local
69 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Test/L2", "abc:elem");
74 attribute.setPrefix("xmlns");
nodesetprefix08.java 34 * The method setPrefix raises a NAMESPACE_ERR if this node is an attribute and the qualifiedName
36 * Retreive an attribute node whose qualifiedName is xmlns. Try setting a prefix on this node.
67 Attr attribute; local
71 attribute = element.getAttributeNode("xmlns");
76 attribute.setPrefix("xml");
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementRemoveAttributeNS.java 10 * The method removeAttributeNS removes an attribute by local name and namespace
11 * URI. Create a new element and add a new attribute node to it. Remove the
12 * attribute node using the removeAttributeNodeNS method. Check if the attribute
54 Attr attribute; local
58 attribute = doc.createAttributeNS(
60 element.setAttributeNodeNS(attribute);
ElementHasAttributeNS.java 32 * The method hasAttributeNS returns true when an attribute with a given local
37 * check if it has the xmlns attribute that belongs to the namespace
90 Attr attribute; local
94 attribute = doc.createAttributeNS("http://www.w3.org/DOM", "domestic");
95 element.setAttributeNode(attribute);
103 Attr attribute; local
110 attribute = doc.createAttributeNS(nullNS, "domestic");
111 element.setAttributeNode(attribute);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Bastion.py 52 get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute
    [all...]
  /external/autotest/server/
site_host_attributes.py 16 A legal attribute has the pattern:
42 attribute strings defined above. Illegal strings are ignored.
73 """Host attribute class for site specific attributes."""
94 logging.info('Host attribute: %s => %s', key, value)
97 for attribute in attributes:
98 splitnames = attribute.split(',')
100 if 'netbook_' in attribute:
103 attribute.split('netbook_')[1]).hexdigest()[:8], 'True']
105 splitnames = attribute.split(':')
117 logging.info('Non-attribute string "%s" is ignored', attribute
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeLayoutParamsMapAttributes.java 26 * An implementation of the {@link AttributeSet} interface on top of a map of attribute in the form
79 public int getAttributeListValue(String namespace, String attribute,
85 public boolean getAttributeBooleanValue(String namespace, String attribute,
91 public int getAttributeResourceValue(String namespace, String attribute,
97 public int getAttributeIntValue(String namespace, String attribute,
103 public int getAttributeUnsignedIntValue(String namespace, String attribute,
109 public float getAttributeFloatValue(String namespace, String attribute,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Bastion.py 52 get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
Bastion.py 52 get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Bastion.py 52 get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Bastion.py 52 get - a function that gets the attribute value (by name)
71 """Get an as-yet undefined attribute value.
75 that the next time the same attribute is requested,
82 attribute = self._get_(name)
83 self.__dict__[name] = attribute
84 return attribute
107 # It is clear that the real work (getting the attribute
120 attribute = getattr(object, name)
121 if type(attribute) == MethodType:
122 return attribute
    [all...]
  /external/autotest/client/deps/glbench/src/
yuv2rgb_34.glslv 32 attribute vec4 c;
  /external/deqp/executor/
xeTestLogParser.cpp 89 const char* attribute = m_containerParser.getSessionInfoAttribute(); local
92 if (deStringEqual(attribute, "releaseName"))
94 else if (deStringEqual(attribute, "releaseId"))
96 else if (deStringEqual(attribute, "targetName"))
98 else if (deStringEqual(attribute, "candyTargetName"))
100 else if (deStringEqual(attribute, "configName"))
102 else if (deStringEqual(attribute, "resultName"))
104 else if (deStringEqual(attribute, "timestamp"))
  /external/proguard/src/proguard/classfile/attribute/
DeprecatedAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
27 * This Attribute represents a deprecated attribute.
31 public class DeprecatedAttribute extends Attribute
50 // Implementations for Attribute.
ExceptionsAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.AttributeVisitor;
28 * This Attribute represents an exceptions attribute.
32 public class ExceptionsAttribute extends Attribute
60 // Implementations for Attribute.
InnerClassesAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents an inner classes attribute.
31 public class InnerClassesAttribute extends Attribute
60 // Implementations for Attribute.
MethodParametersAttribute.java 21 package proguard.classfile.attribute;
24 import proguard.classfile.attribute.visitor.*;
27 * This Attribute represents a method parameters attribute.
31 public class MethodParametersAttribute extends Attribute
59 // Implementations for Attribute.

Completed in 2960 milliseconds

<<11121314151617181920>>