Searched refs:tag (Results 1 - 25 of 1611) sorted by relevance

1234567891011>>

/macosx-10.9.5/dtrace-118.1/libdtrace/
H A Ddt_errtags.c125 "D_DECL_ENCONST", /* enum tag requires const size expr */
227 dt_errtag(dt_errtag_t tag) argument
229 return (_dt_errtags[(tag > 0 && tag < _dt_ntag) ? tag : 0]);
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/controlwidget/
H A DbindDown.tcl38 proc bindDown {top tag} {
41 lappend wtags $tag
42 bindtags $widget [lappend wtags $tag]
43 bindDown $widget $tag
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/
H A Dcoder.rb9 attr_accessor :tag, :style, :implicit, :object
12 def initialize tag
17 @tag = tag
26 @tag, @scalar, _ = args
33 def map tag = @tag, style = @style
34 @tag = tag
40 # Emit a scalar with +value+ and +tag
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dradiobox.rb61 def add(tag=nil, keys={})
62 if tag.kind_of?(Hash)
63 keys = tag
64 tag = nil
66 if tag
67 tag = Tk::Itk::Component.new(self, tagid(tag))
69 tag = Tk::Itk::Component.new(self)
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
72 tag
[all...]
H A Dbuttonbox.rb61 def add(tag=nil, keys={})
62 if tag.kind_of?(Hash)
63 keys = tag
64 tag = nil
66 if tag
67 tag = Tk::Itk::Component.new(self, tagid(tag))
69 tag = Tk::Itk::Component.new(self)
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
72 tag
[all...]
H A Dcheckbox.rb61 def add(tag=nil, keys={})
62 if tag.kind_of?(Hash)
63 keys = tag
64 tag = nil
66 if tag
67 tag = Tk::Itk::Component.new(self, tagid(tag))
69 tag = Tk::Itk::Component.new(self)
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
72 tag
[all...]
H A Ddialogshell.rb61 def add(tag=nil, keys={})
62 if tag.kind_of?(Hash)
63 keys = tag
64 tag = nil
66 if tag
67 tag = Tk::Itk::Component.new(self, tagid(tag))
69 tag = Tk::Itk::Component.new(self)
71 tk_call(@path, 'add', tagid(tag), *hash_kv(keys))
72 tag
[all...]
H A Dpanedwindow.rb61 def add(tag=nil, keys={})
62 if tag.kind_of?(Hash)
63 keys = tag
64 tag = nil
66 if tag
67 tag = Tk::Itk::Component.new(self, tagid(tag))
69 tag = Tk::Itk::Component.new(self)
71 window(tk_call(@path, 'add', tagid(tag), *hash_kv(keys)))
72 tag
[all...]
H A Dtoolbar.rb71 def add(type, tag=nil, keys={})
72 if tag.kind_of?(Hash)
73 keys = tag
74 tag = nil
76 if tag
77 tag = Tk::Itk::Component.new(self, tagid(tag))
79 tag = Tk::Itk::Component.new(self)
81 window(tk_call(@path, 'add', type, tagid(tag), *hash_kv(keys)))
82 tag
[all...]
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/lib/Variable/Magic/
H A DTestDestroyRequired.pm5 my $tag = Variable::Magic::wizard();
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmail_task.c53 const char *tag; local
60 if ((tag = safe_getenv(CONF_ENV_LOGTAG)) == 0)
62 tag = var_syslog_name ? var_syslog_name :
64 vstring_sprintf(canon_name, "%s/%s", tag, argv0);
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/psych/nodes/
H A Dmapping.rb27 # The optional tag for this mapping
28 attr_accessor :tag
40 # +tag+ is the tag associated with the map or +nil+.
47 def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
50 @tag = tag
H A Dsequence.rb23 # A YAML sequence may also have a tag like this:
29 # "has a tag"
53 # The tag name for this sequence (if any)
54 attr_accessor :tag
66 # +tag+ is the tag associated with the sequence or nil.
72 def initialize anchor = nil, tag = nil, implicit = true, style = BLOCK
75 @tag = tag
H A Dscalar.rb32 # The tag value (if there is one)
33 attr_accessor :tag
49 # +tag+ is an associated tag or nil
57 def initialize value, anchor = nil, tag = nil, plain = true, quoted = false, style = ANY
60 @tag = tag
/macosx-10.9.5/xnu-2422.115.4/bsd/net/
H A Dif_vlan_var.h72 #define EVL_VLANOFTAG(tag) ((tag) & EVL_VLID_MASK)
73 #define EVL_PRIOFTAG(tag) (((tag) >> 13) & 7)
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dname_mask.h46 #define name_mask_opt(tag, table, str, flags) \
47 name_mask_delim_opt((tag), (table), (str), \
49 #define name_mask(tag, table, str) \
50 name_mask_opt((tag), (table), (str), NAME_MASK_DEFAULT)
51 #define str_name_mask(tag, table, mask) \
52 str_name_mask_opt(((VSTRING *) 0), (tag), (table), (mask), NAME_MASK_DEFAULT)
65 #define long_name_mask_opt(tag, table, str, flags) \
66 long_name_mask_delim_opt((tag), (table), (str), NAME_MASK_DEFAULT_DELIM, (flags))
67 #define long_name_mask(tag, table, str) \
68 long_name_mask_opt((tag), (tabl
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dstctrl.c46 ber_tag_t tag; local
110 tag = ber_printf( ber, "{OOOO}", &ip, &name, &oid, &id );
111 if ( tag == LBER_ERROR ) {
171 ber_tag_t tag; local
203 tag = ber_skip_tag( ber, &len );
204 if ( tag != LBER_SEQUENCE ) {
205 tag = LBER_ERROR;
210 tag = ber_peek_tag( ber, &len );
211 if ( tag == LBER_DEFAULT ) {
212 tag
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dcheckbox.itk5 # selecting, and deselecting of checkbuttons by tag and index.
63 method add {tag args}
64 method insert {index tag args}
77 method gettag {index} ;# Get the tag of the checkbutton associated
113 foreach tag $_buttons {
114 pack $itk_component($tag) -side left -anchor nw -padx 4 -expand 1
117 foreach tag $_buttons {
118 pack $itk_component($tag) -side top -anchor w -padx 4 -expand 0
135 # requested tag, numerical index, or keyword "end". Returns the
165 # METHOD: add tag
[all...]
/macosx-10.9.5/CommonCrypto-60049/test/CommonCrypto/
H A DCommonCryptoSymGCM.c52 char *tag;
67 tag = "58e2fccefa7e3061367f1d57a4e7455a";
69 retval = CCCryptorGCMTestCase(keyStr, iv, adata, tag, alg, cipherText, plainText);
74 retval = CCCryptorGCMDiscreetTestCase(keyStr, iv, adata, tag, alg, cipherText, plainText);
86 tag = "ab6e47d42cec13bdf53a67b21257bddf";
88 retval = CCCryptorGCMTestCase(keyStr, iv, adata, tag, alg, cipherText, plainText);
91 retval = CCCryptorGCMDiscreetTestCase(keyStr, iv, adata, tag, alg, cipherText, plainText);
102 tag = "4d5c2af327cd64a62cf35abd2ba6fab4";
104 retval = CCCryptorGCMTestCase(keyStr, iv, adata, tag, alg, cipherText, plainText);
107 retval = CCCryptorGCMDiscreetTestCase(keyStr, iv, adata, tag, al
[all...]
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Doutline.pl14 my ( $self, $tag, $text ) = @_;
15 $self->{print} = 1 if $tag =~ /^h\d/;
17 $self->{print} = 0 if $tag eq 'body';
23 my ( $self, $tag, $text ) = @_;
24 $self->{print} = 1 if $tag eq 'body';
26 $self->{print} = 0 if $tag =~ /^h\d/;
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Doutline.pl14 my ( $self, $tag, $text ) = @_;
15 $self->{print} = 1 if $tag =~ /^h\d/;
17 $self->{print} = 0 if $tag eq 'body';
23 my ( $self, $tag, $text ) = @_;
24 $self->{print} = 1 if $tag eq 'body';
26 $self->{print} = 0 if $tag =~ /^h\d/;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DFontFeatureValue.h36 static PassRefPtr<FontFeatureValue> create(const String& tag, int value) argument
38 return adoptRef(new FontFeatureValue(tag, value));
41 const String& tag() const { return m_tag; } function in class:WebCore::FontFeatureValue
/macosx-10.9.5/vim-53/runtime/doc/
H A Dmaketags.awk23 nf=split($0,tag," ");
24 tagkey[t]=tag[1];tagref[t]=tag[2];tagnum[t]=NR;
/macosx-10.9.5/tcl-102/tk/tk/tests/ttk/
H A Dtreetags.test9 ### treeview tag invariants:
20 # $tag in [$tv item $item -tags] <==> [$tv tag has $tag $item]
21 foreach tag [$tv item $item -tags] {
22 assert {[in $item [$tv tag has $tag]]}
30 # $item in [$tv tag has $tag] <==> [$tv tag ha
[all...]
/macosx-10.9.5/libarchive-29/libarchive/libarchive/test/
H A Dtest_compat_solaris_tar_acl.c41 int type, permset, tag, qual; local
60 &type, &permset, &tag, &qual, &name));
63 assertEqualInt(ARCHIVE_ENTRY_ACL_USER_OBJ, tag);
69 &type, &permset, &tag, &qual, &name));
72 assertEqualInt(ARCHIVE_ENTRY_ACL_GROUP_OBJ, tag);
78 &type, &permset, &tag, &qual, &name));
81 assertEqualInt(ARCHIVE_ENTRY_ACL_OTHER, tag);
87 &type, &permset, &tag, &qual, &name));
90 assertEqualInt(ARCHIVE_ENTRY_ACL_USER, tag);
96 &type, &permset, &tag,
[all...]

Completed in 280 milliseconds

1234567891011>>