Searched refs:Attr (Results 1 - 25 of 94) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DAttr.cpp24 #include "Attr.h"
40 Attr::Attr(Element* element, const QualifiedName& name) function in class:WebCore::Attr
49 Attr::Attr(Document* document, const QualifiedName& name, const AtomicString& standaloneValue) function in class:WebCore::Attr
59 PassRefPtr<Attr> Attr::create(Element* element, const QualifiedName& name)
61 RefPtr<Attr> attr = adoptRef(new Attr(element, name));
66 PassRefPtr<Attr> Att
[all...]
H A DAttr.h36 // Attr can have Text and EntityReference children
42 class Attr FINAL : public ContainerNode {
44 static PassRefPtr<Attr> create(Element*, const QualifiedName&);
45 static PassRefPtr<Attr> create(Document*, const QualifiedName&, const AtomicString& value);
46 virtual ~Attr();
68 Attr(Element*, const QualifiedName&);
69 Attr(Document*, const QualifiedName&, const AtomicString& value);
93 // Attr wraps either an element/name, or a name/value pair (when it's a standalone Node.)
H A DAttr.idl24 ] interface Attr : Node {
H A DElement.idl34 Attr getAttributeNode([Default=Undefined] optional DOMString name);
35 [RaisesException] Attr setAttributeNode([Default=Undefined] optional Attr newAttr);
36 [RaisesException] Attr removeAttributeNode([Default=Undefined] optional Attr oldAttr);
56 [ObjCLegacyUnnamedParameters] Attr getAttributeNodeNS([TreatNullAs=NullString,Default=Undefined] optional DOMString namespaceURI,
58 [RaisesException] Attr setAttributeNodeNS([Default=Undefined] optional Attr newAttr);
H A DElement.h37 class Attr;
82 unsigned getAttributeItemIndexForAttributeNode(const Attr*) const;
340 PassRefPtr<Attr> detachAttribute(unsigned index);
342 PassRefPtr<Attr> getAttributeNode(const AtomicString& name);
343 PassRefPtr<Attr> getAttributeNodeNS(const AtomicString& namespaceURI, const AtomicString& localName);
344 PassRefPtr<Attr> setAttributeNode(Attr*, ExceptionCode&);
345 PassRefPtr<Attr> setAttributeNodeNS(Attr*, ExceptionCode&);
346 PassRefPtr<Attr> removeAttributeNod
[all...]
/macosx-10.9.5/CPANInternal-140/Pod-WSDL/t/
H A D04Attr01basic.t3 BEGIN {use_ok('Pod::WSDL::Attr')}
8 my $a1 = new Pod::WSDL::Attr();
14 my $a1 = new Pod::WSDL::Attr('myAttr $string _NEEDED blah blah ...');
20 my $a1 = new Pod::WSDL::Attr('_ATTR myAttr string _NEEDED blah blah ...');
25 my $a1 = new Pod::WSDL::Attr('_ATTR myAttr $string _NEEDED blah blah ...');
35 $a1 = new Pod::WSDL::Attr(' _ATTR myAttr $string _NEEDED blah blah ...');
38 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string _NEEDED blah blah ...');
41 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string blah blah etc ...');
44 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string _NEEDED');
/macosx-10.9.5/CPANInternal-140/Pod-WSDL-0.061/t/
H A D04Attr01basic.t3 BEGIN {use_ok('Pod::WSDL::Attr')}
8 my $a1 = new Pod::WSDL::Attr();
14 my $a1 = new Pod::WSDL::Attr('myAttr $string _NEEDED blah blah ...');
20 my $a1 = new Pod::WSDL::Attr('_ATTR myAttr string _NEEDED blah blah ...');
25 my $a1 = new Pod::WSDL::Attr('_ATTR myAttr $string _NEEDED blah blah ...');
35 $a1 = new Pod::WSDL::Attr(' _ATTR myAttr $string _NEEDED blah blah ...');
38 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string _NEEDED blah blah ...');
41 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string blah blah etc ...');
44 $a1 = new Pod::WSDL::Attr('_ATTR myAttr @string _NEEDED');
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcontext.h66 class Attr : public PodWrapper<Attr, CSSM_CONTEXT_ATTRIBUTE> { class in class:Security::Context
68 Attr() { } function in class:Security::Context::Attr
69 Attr(const CSSM_CONTEXT_ATTRIBUTE &attr) { (CSSM_CONTEXT_ATTRIBUTE &)*this = attr; } function in class:Security::Context::Attr
72 Attr(CSSM_ATTRIBUTE_TYPE typ, T &value, size_t size = 0) function in class:Security::Context::Attr
80 Attr(CSSM_ATTRIBUTE_TYPE typ, uint32 value) function in class:Security::Context::Attr
121 IFDUMP(void dump() const;) // debug dump this Attr to stdout (one line)
125 Attr *attributes() const { return Attr::overlay(ContextAttributes); }
126 Attr
[all...]
H A Dcontext.cpp94 Context::Attr *Context::find(CSSM_ATTRIBUTE_TYPE theType,
99 return (Attr *)&attrs[n];
128 attributes = reinterpret_cast<Attr *>(allocator.malloc(totalSize));
156 void Context::Attr::dump() const
158 Debug::dump(" Attr{type=%x, size=%d, value=", int(AttributeType), int(AttributeLength));
185 Attr::overlay(attrs[n]).dump();
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcontext.h66 class Attr : public PodWrapper<Attr, CSSM_CONTEXT_ATTRIBUTE> { class in class:Security::Context
68 Attr() { } function in class:Security::Context::Attr
69 Attr(const CSSM_CONTEXT_ATTRIBUTE &attr) { (CSSM_CONTEXT_ATTRIBUTE &)*this = attr; } function in class:Security::Context::Attr
72 Attr(CSSM_ATTRIBUTE_TYPE typ, T &value, size_t size = 0) function in class:Security::Context::Attr
80 Attr(CSSM_ATTRIBUTE_TYPE typ, uint32 value) function in class:Security::Context::Attr
121 IFDUMP(void dump() const;) // debug dump this Attr to stdout (one line)
125 Attr *attributes() const { return Attr::overlay(ContextAttributes); }
126 Attr
[all...]
H A Dcontext.cpp94 Context::Attr *Context::find(CSSM_ATTRIBUTE_TYPE theType,
99 return (Attr *)&attrs[n];
128 attributes = reinterpret_cast<Attr *>(allocator.malloc(totalSize));
156 void Context::Attr::dump() const
158 Debug::dump(" Attr{type=%x, size=%d, value=", int(AttributeType), int(AttributeLength));
185 Attr::overlay(attrs[n]).dump();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DThreading.cpp82 pthread_attr_t Attr; local
86 if (::pthread_attr_init(&Attr) != 0)
91 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
96 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
103 ::pthread_attr_destroy(&Attr);
/macosx-10.9.5/securityd-55199.3/tests/
H A Dtestutils.cpp100 ContextAttributes = new Attr[count];
111 while (va_arg(args, Attr *))
117 ContextAttributes = new Attr[count];
122 (*this)[n] = *va_arg(args, Attr *);
178 &::Context::Attr(CSSM_ATTRIBUTE_KEY, keyForm),
179 &::Context::Attr(CSSM_ATTRIBUTE_INIT_VECTOR, iv),
180 &::Context::Attr(CSSM_ATTRIBUTE_MODE, CSSM_ALGMODE_CBC_IV8),
181 &::Context::Attr(CSSM_ATTRIBUTE_PADDING, CSSM_PADDING_PKCS1),
182 &::Context::Attr(CSSM_ATTRIBUTE_ACCESS_CREDENTIALS, *cred),
187 &::Context::Attr(CSSM_ATTRIBUTE_KE
[all...]
H A Dtestcrypto.cpp54 &::Context::Attr(CSSM_ATTRIBUTE_KEY_LENGTH, 512),
55 &::Context::Attr(CSSM_ATTRIBUTE_SEED, seed),
83 &::Context::Attr(CSSM_ATTRIBUTE_KEY, dummyKey),
168 &::Context::Attr(CSSM_ATTRIBUTE_KEY, keyForm),
169 &::Context::Attr(CSSM_ATTRIBUTE_INIT_VECTOR, iv),
170 &::Context::Attr(CSSM_ATTRIBUTE_MODE, CSSM_ALGMODE_CBC_IV8),
171 &::Context::Attr(CSSM_ATTRIBUTE_PADDING, CSSM_PADDING_PKCS1),
H A Dtestblobs.cpp225 &::Context::Attr(CSSM_ATTRIBUTE_KEY_LENGTH, 64),
226 &::Context::Attr(CSSM_ATTRIBUTE_SEED, seed),
240 &::Context::Attr(CSSM_ATTRIBUTE_KEY, nullKey),
241 &::Context::Attr(CSSM_ATTRIBUTE_INIT_VECTOR, iv),
242 &::Context::Attr(CSSM_ATTRIBUTE_MODE, CSSM_ALGMODE_CBC_IV8),
243 &::Context::Attr(CSSM_ATTRIBUTE_PADDING, CSSM_PADDING_PKCS1),
244 &::Context::Attr(CSSM_ATTRIBUTE_ACCESS_CREDENTIALS, cred),
/macosx-10.9.5/Security-55471.14.18/libsecurity_cssm/lib/
H A Dcssmcontext.cpp71 if (Attr *attr = find(attributes[0].AttributeType)) {
74 Attr oldAttr = *attr;
86 Attr oldAttr = *attr;
103 if (Attr *slot = find(CSSM_ATTRIBUTE_NONE)) {
104 const Attr *attr = static_cast<const Attr *>(&attributes[0]);
106 Attr oldSlot = *slot;
117 Attr oldSlot = *slot;
/macosx-10.9.5/CPANInternal-140/Pod-WSDL/lib/Pod/WSDL/
H A DAttr.pm1 package Pod::WSDL::Attr;
50 Pod::WSDL::Attr - Represents the WSDL pod for an attribute of a class (internal use only)
54 use Pod::WSDL::Attr;
55 my $attr = new Pod::WSDL::Attr('_ATTR $string _NEEDED This attribute is for blah ...');
65 Instantiates a new Pod::WSDL::Attr. The method needs one parameter, the attribute string from the pod. Please see SYNOPSIS or the section "Pod Syntax" in the description of Pod::WSDL.
/macosx-10.9.5/CPANInternal-140/Pod-WSDL-0.061/lib/Pod/WSDL/
H A DAttr.pm1 package Pod::WSDL::Attr;
50 Pod::WSDL::Attr - Represents the WSDL pod for an attribute of a class (internal use only)
54 use Pod::WSDL::Attr;
55 my $attr = new Pod::WSDL::Attr('_ATTR $string _NEEDED This attribute is for blah ...');
65 Instantiates a new Pod::WSDL::Attr. The method needs one parameter, the attribute string from the pod. Please see SYNOPSIS or the section "Pod Syntax" in the description of Pod::WSDL.
/macosx-10.9.5/CPANInternal-140/Apache-DBI/lib/Apache/
H A DAuthDBI.pm77 my $Attr = {};
240 $Attr->{$key} = $val;
245 my @data_sources = split /~/, $Attr->{data_source};
246 my @usernames = split /~/, $Attr->{username};
247 my @passwords = split /~/, $Attr->{password};
253 my $data_src = $Attr->{data_source};
257 $user_sent, $data_src, $Attr->{pwd_table}, $Attr->{uid_field};
260 unless ($Attr->{pwd_table} && $Attr
[all...]
/macosx-10.9.5/CPANInternal-140/Apache-DBI-1.11/lib/Apache/
H A DAuthDBI.pm78 my $Attr = {};
241 $Attr->{$key} = $val;
246 my @data_sources = split /~/, $Attr->{data_source};
247 my @usernames = split /~/, $Attr->{username};
248 my @passwords = split /~/, $Attr->{password};
254 my $data_src = $Attr->{data_source};
258 $user_sent, $data_src, $Attr->{pwd_table}, $Attr->{uid_field};
261 unless ($Attr->{pwd_table} && $Attr
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DDH_keys.h101 Context::Attr * &attrs);
119 Context::Attr *mGenAttrs;
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DFilter.pm59 my $Attr = '[-;.:\d\w]*[-;\d\w]';
201 elsif ($filter =~ s/^\(\s*($Attr)=\*\)\s*//o) {
209 ($Attr)\s*
/macosx-10.9.5/Security-55471.14.18/include/securityd_client/
H A Dss_types.h62 typedef Context::Attr *ContextAttributesPointer;
/macosx-10.9.5/Security-55471.14.18/libsecurityd/lib/
H A Dss_types.h62 typedef Context::Attr *ContextAttributesPointer;
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathNodeSet.cpp29 #include "Attr.h"
99 if (n->isAttributeNode() && static_cast<Attr*>(n)->ownerElement() == commonAncestor)
162 n = static_cast<Attr*>(n)->ownerElement();
183 node = static_cast<Attr*>(node)->ownerElement();
223 RefPtr<Attr> attr = element->attrIfExists(element->attributeItem(i)->name());

Completed in 336 milliseconds

1234