Searched refs:attributes (Results 1 - 25 of 708) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSimpleAttributeTableGenerator.java13 private final AttributeTable attributes; field in class:SimpleAttributeTableGenerator
16 AttributeTable attributes)
18 this.attributes = attributes;
23 return attributes;
15 SimpleAttributeTableGenerator( AttributeTable attributes) argument
/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java27 * This class can add and delete attributes to and from classes, fields,
28 * methods, and code attributes. Attributes to be added must be filled out
30 * attributes of the same type are always replaced.
43 * Creates a new AttributeAdder that will edit attributes in the given
54 * Creates a new AttributeAdder that will edit attributes in the given
66 * Creates a new AttributeAdder that will edit attributes in the given
92 targetAttribute.attributes,
96 targetAttribute.attributes =
98 targetAttribute.attributes,
109 targetMember.attributes,
177 replaceAttribute(int attributesCount, Attribute[] attributes, Attribute attribute) argument
200 addAttribute(int attributesCount, Attribute[] attributes, Attribute attribute) argument
226 deleteAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
255 findAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceRadialGradient.cpp47 FloatPoint RenderSVGResourceRadialGradient::centerPoint(const RadialGradientAttributes& attributes) const
49 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.cx(), attributes.cy());
52 FloatPoint RenderSVGResourceRadialGradient::focalPoint(const RadialGradientAttributes& attributes) const
54 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.fx(), attributes.fy());
57 float RenderSVGResourceRadialGradient::radius(const RadialGradientAttributes& attributes) const
59 return SVGLengthContext::resolveLength(element(), attributes
[all...]
H A DRenderSVGResourceLinearGradient.cpp46 FloatPoint RenderSVGResourceLinearGradient::startPoint(const LinearGradientAttributes& attributes) const
48 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x1(), attributes.y1());
51 FloatPoint RenderSVGResourceLinearGradient::endPoint(const LinearGradientAttributes& attributes) const
53 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x2(), attributes.y2());
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macgl.c37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ local
48 attributes[i++] = AGL_RGBA;
52 attributes[i++] = AGL_RED_SIZE;
53 attributes[i++] = this->gl_config.red_size;
54 attributes[i++] = AGL_GREEN_SIZE;
55 attributes[i++] = this->gl_config.green_size;
56 attributes[i++] = AGL_BLUE_SIZE;
57 attributes[i++] = this->gl_config.blue_size;
58 attributes[i++] = AGL_ALPHA_SIZE;
59 attributes[
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSFTPv3DirectoryEntry.java29 * attempt to parse the longname field for file attributes; they SHOULD
38 * The attributes of this entry.
40 public SFTPv3FileAttributes attributes; field in class:SFTPv3DirectoryEntry
/external/smack/src/org/jivesoftware/smack/packet/
H A DRegistration.java31 * existing account information. XMPP servers may require a number of attributes to be set
32 * when creating a new account. The standard account attributes are as follows:
54 private Map<String, String> attributes = new HashMap<String,String>(); field in class:Registration
80 * Returns the map of String key/value pairs of account attributes.
82 * @return the account attributes.
85 return attributes;
89 * Sets the account attributes. The map must only contain String key/value pairs.
91 * @param attributes the account attributes.
93 public void setAttributes(Map<String, String> attributes) { argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java12 private ASN1Set attributes; field in class:Attributes
16 attributes = set;
21 attributes = new DLSet(v);
40 Attribute[] rv = new Attribute[attributes.size()];
44 rv[i] = Attribute.getInstance(attributes.getObjectAt(i));
59 return attributes;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DPlatformStatus.java29 NamedNodeMap attributes = anElement.getAttributes();
30 this.id = (String) attributes.getNamedItem("id").getNodeValue();
31 this.name = (String) attributes.getNamedItem("name").getNodeValue();
32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue();
/external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
H A DhtmlMathML.js16 for(var i=0; i < node.attributes.length; i++) {
17 if (node.attributes[i].nodeName == 'displaystyle') {
18 newnode.setAttribute(node.attributes[i].nodeName,node.attributes[i].nodeValue);
62 for(var j=0; j < node.attributes.length; j++) {
63 if (node.attributes[j].nodeValue!="italic" &&
64 node.attributes[j].nodeValue!="" &&
65 node.attributes[j].nodeValue!="inherit" &&
66 node.attributes[j].nodeValue!=undefined) {
67 str += " "+node.attributes[
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dinteract.py8 def __init__(self, attributes=None):
9 super(InteractAction, self).__init__(attributes)
H A Djavascript.py9 def __init__(self, attributes=None):
10 super(JavascriptAction, self).__init__(attributes)
H A Djs_collect_garbage.py7 def __init__(self, attributes=None):
8 super(JsCollectGarbageAction, self).__init__(attributes)
H A Dreload.py8 def __init__(self, attributes=None):
9 super(ReloadAction, self).__init__(attributes)
/external/doclava/src/com/google/doclava/apicheck/
H A DXmlApiFile.java70 public void startElement(String uri, String localName, String qName, Attributes attributes) { argument
73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes
82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source"));
83 String visibility = attributes.getValue("visibility");
88 boolean isStatic = Boolean.valueOf(attributes.getValue("static"));
90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract"));
96 boolean isFinal = Boolean.valueOf(attributes.getValue("final"));
98 String name = attributes.getValue("name");
109 mCurrentClass.setDeprecated("deprecated".equals(attributes
[all...]
/external/jdiff/src/jdiff/
H A DAPIHandler.java73 java.lang.String qName, Attributes attributes) {
78 String apiName = attributes.getValue("name");
79 String version = attributes.getValue("jdversion"); // Not used yet
83 String pkgName = attributes.getValue("name");
87 String className = attributes.getValue("name");
88 String parentName = attributes.getValue("extends");
90 if (attributes.getValue("abstract").compareTo("true") == 0)
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes));
95 String className = attributes.getValue("name");
96 String parentName = attributes
72 startElement(java.lang.String uri, java.lang.String localName, java.lang.String qName, Attributes attributes) argument
274 addStartTagToText(String localName, Attributes attributes) argument
312 getModifiers(Attributes attributes) argument
[all...]
/external/chromium_org/sandbox/win/src/
H A Dwindow.cc16 // Gets the security attributes of a window object referenced by |handle|. The
19 bool GetSecurityAttributes(HANDLE handle, SECURITY_ATTRIBUTES* attributes) { argument
20 attributes->bInheritHandle = FALSE;
21 attributes->nLength = sizeof(SECURITY_ATTRIBUTES);
26 NULL, &attributes->lpSecurityDescriptor);
38 // Get the security attributes from the current window station; we will
39 // use this as the base security attributes for the new window station.
40 SECURITY_ATTRIBUTES attributes = {0}; local
41 if (!GetSecurityAttributes(::GetProcessWindowStation(), &attributes)) {
48 *winsta = ::CreateWindowStationW(NULL, 0, WINSTA_ALL_ACCESS, &attributes);
69 SECURITY_ATTRIBUTES attributes = {0}; local
[all...]
H A Dapp_container_unittest.cc39 scoped_ptr<AppContainerAttributes> attributes(new AppContainerAttributes);
42 attributes->SetAppContainer(L"S-1-foo", capabilities));
45 attributes->SetAppContainer(L"S-1-15-2-12345-234", capabilities));
46 EXPECT_TRUE(attributes->HasAppContainer());
48 attributes.reset(new AppContainerAttributes);
54 attributes->SetAppContainer(L"S-1-15-2-1-2", capabilities));
55 EXPECT_TRUE(attributes->HasAppContainer());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentSharedObjectPool.cpp36 ShareableElementDataCacheKey(const Attribute* attributes, unsigned attributeCount) argument
37 : m_attributes(attributes)
69 PassRefPtr<ShareableElementData> DocumentSharedObjectPool::cachedShareableElementDataWithAttributes(const Vector<Attribute>& attributes) argument
71 ASSERT(!attributes.isEmpty());
73 ShareableElementDataCacheKey cacheKey(attributes.data(), attributes.size());
84 elementData = ShareableElementData::createWithAttributes(attributes);
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadmx_writer.py65 attributes = {
69 self.AddElement(policy_namespaces_elem, 'target', attributes)
70 attributes = {
74 self.AddElement(policy_namespaces_elem, 'using', attributes)
85 same category again with the same attributes is ignored, but adding it
86 again with different attributes is an error.
101 attributes = {
105 category_elem = self.AddElement(parent, 'category', attributes)
107 attributes = {'ref': parent_category_name}
108 self.AddElement(category_elem, 'parentCategory', attributes)
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DTestAttributeSetTest.java21 private HashMap<String, String> attributes; field in class:TestAttributeSetTest
26 attributes = new HashMap<String, String>();
35 attributes.put("android:id", "@android:id/text1");
36 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
42 attributes.put("id", "@id/text1");
43 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
49 attributes.put("id", "@null");
50 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
56 attributes.put("android:id", "@+id/text1");
58 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtracto
[all...]
/external/v8/src/
H A Dproperty-details.h42 // ABSENT can never be stored in or returned from a descriptor's attributes
43 // bitfield. It is only used as a return value meaning the attributes of
76 // PropertyDetails captures type and attributes for a property.
80 PropertyDetails(PropertyAttributes attributes, argument
84 ASSERT(AttributesField::is_valid(attributes));
88 | AttributesField::encode(attributes)
92 ASSERT(attributes == this->attributes());
102 PropertyAttributes attributes() { return AttributesField::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
112 bool IsReadOnly() { return (attributes()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextAttributes.h41 // Create a new attributes object
44 // Create a new attributes object initialized with preexisting attributes
45 static PassRefPtr<WebGLContextAttributes> create(GraphicsContext3D::Attributes attributes);
79 // Fetches a copy of the attributes stored in this object in a
81 GraphicsContext3D::Attributes attributes() const;
85 WebGLContextAttributes(GraphicsContext3D::Attributes attributes);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DTextDocumentParser.cpp59 Vector<Attribute> attributes; local
60 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space: pre-wrap;"));
61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGRadialGradientElement.cpp131 bool SVGRadialGradientElement::collectGradientAttributes(RadialGradientAttributes& attributes) argument
142 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr))
143 attributes.setSpreadMethod(current->spreadMethodCurrentValue());
145 if (!attributes.hasGradientUnits() && current->hasAttribute(SVGNames::gradientUnitsAttr))
146 attributes.setGradientUnits(current->gradientUnitsCurrentValue());
148 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr)) {
151 attributes.setGradientTransform(transform);
154 if (!attributes.hasStops()) {
157 attributes.setStops(stops);
163 if (!attributes
[all...]

Completed in 869 milliseconds

1234567891011>>