Searched refs:attributeName (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/IAS/
H A DIrIASService.h178 TIASAttribute* FindAttribute(const UChar* attributeName);
198 IrDAErr AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue);
199 IrDAErr AddStringEntry(const UChar* className, const UChar* attributeName, const UChar* stringValue, UChar charSet, ULong length);
200 IrDAErr AddNBytesEntry(const UChar* className, const UChar* attributeName, const UChar* aFewBytes, ULong length);
203 TIASAttribute* FindAttribute(const UChar* className, const UChar* attributeName);
204 IrDAErr RemoveAttribute(const UChar* className, const UChar* attributeName, ULong flags = kIASDeleteClass | kIASDeleteAttribute);
210 TIASAttribute* AddAttribute(const UChar* className, const UChar* attributeName, ULong& flags);
211 IrDAErr AddAttributeEntry(const UChar* className, const UChar* attributeName, TIASElement* theEntry);
H A DIrIASService.cpp96 IrDAErr TIASService::AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue) argument
105 return AddAttributeEntry(className, attributeName, theEntry);
116 IrDAErr TIASService::AddStringEntry(const UChar* className, const UChar* attributeName, argument
126 return AddAttributeEntry(className, attributeName, theEntry);
137 IrDAErr TIASService::AddNBytesEntry(const UChar* className, const UChar* attributeName, const UChar* aFewBytes, ULong length) argument
146 return AddAttributeEntry(className, attributeName, theEntry);
157 IrDAErr TIASService::AddAttributeEntry(const UChar* className, const UChar* attributeName, TIASElement* theEntry) argument
164 theAttr = AddAttribute(className, attributeName, flags);
174 RemoveAttribute(className, attributeName, flags);
187 TIASAttribute* TIASService::AddAttribute(const UChar* className, const UChar* attributeName, ULon argument
288 RemoveAttribute(const UChar* className, const UChar* attributeName, ULong flags) argument
323 FindAttribute(const UChar* className, const UChar* attributeName) argument
398 FindAttribute(const UChar* attributeName) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A DGroupTransform.h15 virtual bool validConnectionPoint(CFStringRef attributeName);
H A DGroupTransform.cpp49 bool GroupTransform::validConnectionPoint(CFStringRef attributeName) argument
52 return NULL != this->getAH(attributeName, false);
H A DTransform.h130 virtual bool validConnectionPoint(CFStringRef attributeName);
H A DTransform.cpp376 CFStringRef attributeName = CFStringCreateWithCStringNoCopy(NULL, name, 0, kCFAllocatorMalloc); local
377 SetAttributeNoCallback(kSecTransformTransformName, attributeName);
378 CFRelease(attributeName);
812 bool Transform::validConnectionPoint(CFStringRef attributeName) argument
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Streams/
H A DCIrLSAP.h48 Boolean Init(TIrGlue *irda, UInt32 desiredLSAPId, UInt8 * className, UInt8 * attributeName, ULong hints=0);
57 IrDAErr LSAPLookup ( UInt8 * className, UInt8 * attributeName, UInt32 remoteAddr );
H A DCIrLSAP.cpp177 Boolean CIrLSAP::Init(TIrGlue *irda, UInt32 desiredLSAPId, UInt8 * className, UInt8 * attributeName, ULong hints) argument
226 if (attributeName)
227 strlcpy((char * )&fAttrName[0], (char *)attributeName, sizeof(fAttrName));
294 IrDAErr CIrLSAP::LSAPLookup(UInt8 * className, UInt8 * attributeName, UInt32 remoteAddr) argument
310 strlcpy( ( char * )&fAttributeName, ( const char * )attributeName, sizeof(fAttributeName));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDOMTreeElement.js651 _triggerEditAttribute: function(attributeName)
655 if (attributeElements[i].textContent === attributeName) {
676 var attributeName = attributeNameElement.textContent;
695 var config = new WebInspector.EditingConfig(this._attributeEditingCommitted.bind(this), this._editingCancelled.bind(this), attributeName);
815 _attributeEditingCommitted: function(element, newText, oldText, attributeName, moveDirection)
823 this._editingCancelled(element, attributeName);
833 if (attributes[i].name !== attributeName)
869 this.representedObject.setAttribute(attributeName, newText, moveToNextAttributeIfNeeded.bind(this));
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldaptcl/
H A DneoXldap.c192 char *attributeName; local
216 /* Note that attributeName below is allocated for OL2+ libldap, so it
220 for (attributeName = ldap_first_attribute (ldap, entry, &ber);
221 attributeName != NULL;
222 attributeName = ldap_next_attribute(ldap, entry, ber)) {
224 bvals = ldap_get_values_len(ldap, entry, attributeName);
229 retains the attributeName. Even though this is documented
234 Tcl_SetStringObj(attributeNameObj, attributeName, -1);
236 ldap_memfree(attributeName); /* free if newer API */
/macosx-10.10.1/tcl-105/tcl_ext/tdom/tdom/generic/
H A Ddom.h738 domAttrNode * domSetAttribute (domNode *node, const char *attributeName,
741 domAttrNode * domSetAttributeNS (domNode *node, const char *attributeName,
748 int domRemoveAttribute (domNode *node, const char *attributeName);
H A Ddom.c2780 const char *attributeName,
2796 while (attr && strcmp(attr->nodeName, attributeName)) {
2821 attributeName, &hnew);
2851 const char *attributeName,
2865 DBG(fprintf (stderr, "domSetAttributeNS: attributeName %s, attributeValue %s, uri %s\n", attributeName, attributeValue, uri);)
2870 domSplitQName (attributeName, prefix, &localName);
2909 if (strcmp (attributeName, attr->nodeName)==0) {
2953 attributeName, &hnew);
3035 const char *attributeName
2776 domSetAttribute( domNode *node, const char *attributeName, const char *attributeValue ) argument
2847 domSetAttributeNS( domNode *node, const char *attributeName, const char *attributeValue, const char *uri, int createNSIfNeeded ) argument
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DDOMNodeStyles.js322 attributeDidChange: function(node, attributeName)
325 if (this._ignoreNextStyleAttributeDidChangeEvent && node === this._node && attributeName === "style") {
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/src/
H A Dtcldompro.c1179 char *option, *attributeName, *tagname, *name, *value;
1243 attributeName = Tcl_GetStringFromObj(objv[3], NULL);
1245 while (attributeNodePtr && strcmp(attributeName,
1168 char *option, *attributeName, *tagname, *name, *value; local
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclIOUtil.c2491 const char *attributeName, /* The attribute being looked for. */
2511 Tcl_Obj *tmpObj = Tcl_NewStringObj(attributeName, -1);
2534 if (!strcmp(attributeName, TclGetString(objv[i]))) {
2447 TclFSFileAttrIndex( Tcl_Obj *pathPtr, const char *attributeName, int *indexPtr) argument
H A DtclInt.h2573 const char *attributeName, int *indexPtr);
/macosx-10.10.1/objc4-646/runtime/
H A Druntime.h1089 * @param attributeName C string representing the attribute name.
1091 * @return The value string of the attribute \e attributeName if it exists in
1094 OBJC_EXPORT char *property_copyAttributeValue(objc_property_t property, const char *attributeName)
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLView.mm4619 - (id)accessibilityAttributeValue:(NSString*)attributeName
4621 if ([attributeName isEqualToString: NSAccessibilityChildrenAttribute]) {
4627 return [super accessibilityAttributeValue:attributeName];

Completed in 488 milliseconds