Searched refs:attr (Results 151 - 175 of 1316) sorted by relevance

1234567891011>>

/macosx-10.9.5/cups-372.4/cups/scheduler/
H A Dcolorman.c252 ppd_attr_t *attr; /* Profile attribute */ local
296 if ((attr = _ppdLocalizedAttr(ppd, "cupsICCProfile", name,
298 attr = _ppdLocalizedAttr(ppd, "APTiogaProfile", name, language);
301 attr = _ppdLocalizedAttr(ppd, "ColorModel", name, language);
303 if (attr && attr->text[0])
307 cftext = CFStringCreateWithCString(kCFAllocatorDefault, attr->text,
360 ppd_attr_t *attr, /* Profile attributes */ local
405 for (num_profiles = 0, attr = ppdFindAttr(ppd, "cupsICCProfile", NULL);
406 attr;
1345 ppd_attr_t *attr; /* Profile attributes */ local
1399 ppd_attr_t *attr; /* Profile attributes */ local
[all...]
/macosx-10.9.5/curl-78.94.1/curl/docs/examples/
H A Dhtmltidy.c55 TidyAttr attr; local
58 for ( attr=tidyAttrFirst(child); attr; attr=tidyAttrNext(attr) ) {
59 printf(tidyAttrName(attr));
60 tidyAttrValue(attr)?printf("=\"%s\" ",
61 tidyAttrValue(attr)):printf(" ");
/macosx-10.9.5/libxml2-26/libxml2/
H A Dsave.h23 xmlAttrPtr attr, const xmlChar * string);
26 void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
/macosx-10.9.5/vim-53/src/proto/
H A Dif_perl.pro4 void msg_split __ARGS((char_u *s, int attr));
/macosx-10.9.5/cups-372.4/cups/test/
H A Dipptool.c175 static char *get_string(ipp_attribute_t *attr, int element, int flags,
182 static void print_attr(ipp_attribute_t *attr, ipp_tag_t *group);
184 static void print_csv(ipp_attribute_t *attr, int num_displayed,
188 static void print_line(ipp_attribute_t *attr, int num_displayed,
200 static int validate_attr(cups_array_t *errors, ipp_attribute_t *attr);
202 ipp_attribute_t *attr, char *matchbuf,
782 char attr[128]; /* Attribute name */ local
871 if (get_token(fp, attr, sizeof(attr), &linenum) &&
875 set_variable(vars, attr, toke
3465 attr[128]; /* Attribute name */ local
3725 get_string(ipp_attribute_t *attr, int element, int flags, char *buffer, size_t bufsize) argument
3953 print_attr(ipp_attribute_t *attr, ipp_tag_t *group) argument
4169 ipp_attribute_t *attr; /* Current attribute in collection */ local
4253 print_csv( ipp_attribute_t *attr, int num_displayed, char **displayed, size_t *widths) argument
4375 print_line( ipp_attribute_t *attr, int num_displayed, char **displayed, size_t *widths) argument
4747 validate_attr(cups_array_t *errors, ipp_attribute_t *attr) argument
5408 with_value(cups_array_t *errors, char *value, int flags, ipp_attribute_t *attr, char *matchbuf, size_t matchlen) argument
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/xml/
H A Dapr_xml.c127 apr_xml_attr *attr; local
144 attr = apr_palloc(parser->p, sizeof(*attr));
145 attr->name = apr_pstrdup(parser->p, *attrs++);
146 attr->value = apr_pstrdup(parser->p, *attrs++);
147 attr->next = elem->attr;
148 elem->attr = attr;
176 for (prev = NULL, attr
650 const apr_xml_attr *attr; local
762 const apr_xml_attr *attr; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/xml/
H A Dapr_xml.c127 apr_xml_attr *attr; local
144 attr = apr_palloc(parser->p, sizeof(*attr));
145 attr->name = apr_pstrdup(parser->p, *attrs++);
146 attr->value = apr_pstrdup(parser->p, *attrs++);
147 attr->next = elem->attr;
148 elem->attr = attr;
176 for (prev = NULL, attr
650 const apr_xml_attr *attr; local
762 const apr_xml_attr *attr; local
[all...]
/macosx-10.9.5/less-23/less/
H A Dline.c22 static char *attr = NULL; /* Extension of linebuf to hold attributes */ variable
23 public int size_linebuf = 0; /* Size of line buffer (and attr buffer) */
86 attr = (char *) ecalloc(LINEBUF_SIZE, sizeof(char));
102 char *new_attr = (char *) realloc(attr, new_size);
128 memcpy(new_attr, attr, size_linebuf * sizeof(char));
129 free(attr);
133 attr = new_attr;
201 attr[curr] = AT_NORMAL|AT_HILITE;
203 attr[curr] = AT_NORMAL;
223 attr[cur
[all...]
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dattributes.c89 xmlNodePtr attr; /* the xsl:attribute definition */ member in struct:_xsltAttrElem
102 * @attr: the new xsl:attribute node
109 xsltNewAttrElem(xmlNodePtr attr) { argument
119 cur->attr = attr;
125 * @attr: an XSLT AttrElem
127 * Free up the memory allocated by @attr
130 xsltFreeAttrElem(xsltAttrElemPtr attr) { argument
131 xmlFree(attr);
159 * @attr
166 xsltAddAttrElemList(xsltAttrElemPtr list, xmlNodePtr attr) argument
657 xmlAttrPtr attr; local
[all...]
/macosx-10.9.5/CPANInternal-140/Graph/lib/Graph/
H A DTraversal.pm56 my ($self, %attr) = @_;
57 $self->{ pre } = $attr{ pre } if exists $attr{ pre };
58 $self->{ post } = $attr{ post } if exists $attr{ post };
59 $self->{ pre_vertex } = $attr{ pre_vertex } if exists $attr{ pre_vertex };
60 $self->{ post_vertex } = $attr{ post_vertex } if exists $attr{ post_vertex };
61 $self->{ pre_edge } = $attr{ pre_edg
[all...]
/macosx-10.9.5/CPANInternal-140/Graph-0.94/lib/Graph/
H A DTraversal.pm56 my ($self, %attr) = @_;
57 $self->{ pre } = $attr{ pre } if exists $attr{ pre };
58 $self->{ post } = $attr{ post } if exists $attr{ post };
59 $self->{ pre_vertex } = $attr{ pre_vertex } if exists $attr{ pre_vertex };
60 $self->{ post_vertex } = $attr{ post_vertex } if exists $attr{ post_vertex };
61 $self->{ pre_edge } = $attr{ pre_edg
[all...]
/macosx-10.9.5/Heimdal-323.92.1/base/
H A Dqueue.c39 heim_queue_create(const char *name, heim_queue_attr_t attr) argument
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPModification.h18 LDAPModification(const LDAPAttribute& attr, mod_op op);
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/overlays/
H A Doverlayutils.h16 void dump_slap_attr(Attribute *attr);
/macosx-10.9.5/bind9-45.100/bind9/contrib/zkt/
H A Dtcap.h28 extern int tc_attr (FILE *fp, tc_att_t attr, int on);
/macosx-10.9.5/expat-12/expat/examples/
H A Doutline.c49 start(void *data, const char *el, const char **attr) argument
58 for (i = 0; attr[i]; i += 2) {
59 printf(" %s='%s'", attr[i], attr[i + 1]);
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmsg_stats_print.c40 #include <attr.h>
/macosx-10.9.5/postfix-252/postfix/src/tls/
H A Dtls_proxy.h18 #include <attr.h>
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dattr_clnt.h17 #include <attr.h>
/macosx-10.9.5/ppp-727.90.1/Authenticators/DSAuthentication/
H A DDSUser.h34 char *attr, tAttributeValueEntryPtr *attr_value);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/page/
H A Dgen_tree_text.tcl42 array set attr [$t getall $n]
44 if {[array size attr] == 0} {
51 foreach k [array names attr] {
54 lappend d [list $k [Quote $attr($k)] $l]
58 puts $chan "$k = $attr($k) >"
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/support/devel/sak/registry/
H A Dregistry.tcl41 set attr [lindex $args 0]
42 set pattern [list A $n $attr *]
88 set attr [lindex $args 0]
89 set idx [list A $n $attr M]
91 return -code error "Unknown attribute \"$attr\" in key \"$key\""
108 set attr [lindex $args 0]
109 set idx [list A $n $attr V]
113 method get {key attr} {
115 set idx [list A $n $attr V]
117 return -code error "Unknown attribute \"$attr\" i
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/support/devel/sak/registry/
H A Dregistry.tcl41 set attr [lindex $args 0]
42 set pattern [list A $n $attr *]
88 set attr [lindex $args 0]
89 set idx [list A $n $attr M]
91 return -code error "Unknown attribute \"$attr\" in key \"$key\""
108 set attr [lindex $args 0]
109 set idx [list A $n $attr V]
113 method get {key attr} {
115 set idx [list A $n $attr V]
117 return -code error "Unknown attribute \"$attr\" i
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dvm_pressure.h35 void vm_pressure_init(lck_grp_t *grp, lck_attr_t *attr);
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Ddom.c876 domAttrNode *attr;
881 attr = (domAttrNode*)node;
882 if (attr->nodeFlags & IS_NS_NODE) return NULL;
883 ns = attr->parentNode->ownerDocument->namespaces[attr->namespace-1];
903 domAttrNode *attr;
908 attr = (domAttrNode*)node;
909 ns = attr->parentNode->ownerDocument->namespaces[attr->namespace-1];
963 domAttrNode *attr;
875 domAttrNode *attr; local
902 domAttrNode *attr; local
962 domAttrNode *attr; local
1026 domAttrNode *attr, *attr1; local
2220 domAttrNode *attr; local
2435 domAttrNode *atemp, *attr, *aprev; local
2782 domAttrNode *attr, *lastAttr; local
2855 domAttrNode *attr, *lastAttr; local
3036 domAttrNode *attr, *previous = NULL; local
3083 domAttrNode *attr, *previous = NULL; local
3149 domAttrNode *attr; local
4209 domAttrNode *attr, *lastNSAttr; local
4455 domAttrNode *attr, *nattr; local
4538 domAttrNode *attr, *attr1; local
4588 domAttrNode *attr, *nattr; local
4696 domAttrNode *attr; local
4775 domAttrNode *attr; local
4870 domAttrNode *attr; local
4962 domAttrNode *attr; local
[all...]

Completed in 228 milliseconds

1234567891011>>