Searched refs:tag (Results 201 - 225 of 1611) sorted by relevance

1234567891011>>

/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drecd002.tcl81 set tag [lindex $msg 0]
82 set tail [expr [string length $tag] - 2]
83 set tag [string range $tag $tail $tail]
84 if { [lsearch $select $tag] == -1 } {
H A Drecd004.tcl74 set tag [lindex $msg 0]
75 set tail [expr [string length $tag] - 2]
76 set tag [string range $tag $tail $tail]
77 if { [lsearch $select $tag] == -1 } {
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/test/
H A Dascii_tag.c46 ttag_t tag; member in struct:Tags
84 fprintf (stderr, "Can't set ImageWidth tag.\n");
88 fprintf (stderr, "Can't set ImageLength tag.\n");
92 fprintf (stderr, "Can't set BitsPerSample tag.\n");
96 fprintf (stderr, "Can't set SamplesPerPixel tag.\n");
100 fprintf (stderr, "Can't set PlanarConfiguration tag.\n");
104 fprintf (stderr, "Can't set PhotometricInterpretation tag.\n");
109 if (!TIFFSetField(tif, ascii_tags[i].tag,
111 fprintf(stderr, "Can't set tag %d.\n",
112 (int)ascii_tags[i].tag);
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tktable/tktable/demos/
H A Ddynarows.tcl40 $w tag row {} $row
43 $w tag row unset [incr row]
63 $t tag config unset -fg \#008811
64 $t tag config title -fg red
65 $t tag row unset 1
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/doctools/mpformats/
H A D_html.tcl134 proc url {tag text url} {
142 proc $tag {{what link}} [string map [list %text% $text %url% $url] $body]
145 proc img {tag alt img} {
146 proc $tag {} [list return "\1<img alt=\"$alt\" src=\"$img\"\1>"]
161 proc tag {t} {return [markup <$t>]} procedure
168 proc tag/ {t} {return [markup </$t>]}
171 if {$args == {}} {return "[tag $t]$block[tag/ $t]"}
172 return "[taga $t $args]$block[tag/ $t]"
174 proc tag* {
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/hfs/hfscommon/BTree/
H A DBTreeNodeReserve.c59 void *nr_tag; /* unique tag (per thread) */
66 #define NR_HASH(btvp, tag) \
67 (&nr_hashtbl[((((intptr_t)(btvp)) >> 8) ^ ((intptr_t)(tag) >> 4)) & nr_hashmask])
272 void * tag = NR_GET_TAG(); local
278 nrhead = NR_HASH(btvp, tag);
281 if ((tmp_nrp->nr_tag == tag) && (tmp_nrp->nr_btvp == btvp)) {
292 nrp->nr_tag = tag;
304 void * tag = NR_GET_TAG(); local
308 if ((nrp->nr_tag != tag) || (nrp->nr_btvp != btvp))
329 void* tag local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DOpenTypeUtilities.cpp54 Offset OpenTypeUtilities::getTagOffset(LETag tag, const TagAndOffsetRecord *records, le_int32 recordCount) argument
62 if (SWAPT(records[extra].tag) <= tag) {
69 if (SWAPT(records[index + probe].tag) <= tag) {
74 if (SWAPT(records[index].tag) == tag) {
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebContextMenuClient.mm92 if ([secondToLastItem isSeparatorItem] && [lastItem tag] == WebMenuItemTagInspectElement) {
109 int tag = [item tag];
110 int oldStyleTag = tag;
112 if (tag >= WEBMENUITEMTAG_WEBKIT_3_0_SPI_START) {
118 ASSERT(tag != WebMenuItemTagOther);
123 switch (tag) {
139 if (oldStyleTag != tag)
160 int tag = [item tag];
[all...]
/macosx-10.9.5/bootp-268.1/bootplib/
H A Dbsdp.h86 * - 2 (vendor specific option's tag/len)
87 * - 2 (this option's tag/len)
180 bsdptag_type(bsdptag_t tag) argument
184 switch (tag) {
225 bsdptag_name(bsdptag_t tag) argument
242 if (tag >= bsdptag_first_e && tag <= bsdptag_last_e) {
243 return (names[tag]);
245 switch (tag) {
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/treectrl/
H A Doutlook-newgroup.rb13 t.column_create(:image=>@images['outlook-clip'], :tag=>'clip')
14 t.column_create(:image=>@images['outlook-arrow'], :tag=>'arrow')
15 t.column_create(:image=>@images['outlook-watch'], :tag=>'watch')
16 t.column_create(:text=>'Subject', :width=>250, :tag=>'subject')
17 t.column_create(:text=>'From', :width=>150, :tag=>'from')
18 t.column_create(:text=>'Sent', :width=>150, :tag=>'sent')
19 t.column_create(:text=>'Size', :width=>60, :justify=>:right, :tag=>'size')
21 t.column_configure(0, :image=>@images['outlook-clip'], :tag=>'clip')
22 t.column_configure(1, :image=>@images['outlook-arrow'], :tag=>'arrow')
23 t.column_configure(2, :image=>@images['outlook-watch'], :tag
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/examples/htmlparse/
H A Dwebviewer.tcl49 proc parser {outvar tag end attr text} {
51 set tag [string tolower $tag]
54 if {[string equal "hmstart" $tag]} {
56 } elseif {[regexp {h(\d+)} $tag -> level]} {
58 } elseif {[lsearch -exact {p pre td} $tag] != -1} {
60 } elseif {[lsearch -exact {a span i b} $tag] != -1} {
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/libldap/
H A Dcontrols.c150 ber_tag_t tag; local
168 if(( tag = ber_peek_tag( ber, &len )) != LDAP_TAG_CONTROLS ) {
169 if( tag == LBER_ERROR ) {
188 for( tag = ber_first_element( ber, &len, &opaque );
189 tag != LBER_ERROR;
190 tag = ber_next_element( ber, &len, opaque ) )
220 tag = ber_scanf( ber, "{a" /*}*/, &tctrl->ldctl_oid );
222 if( tag == LBER_ERROR ) {
228 tag = ber_peek_tag( ber, &len );
230 if( tag
[all...]
/macosx-10.9.5/ruby-104/ruby/test/openssl/
H A Dtest_cipher.rb152 tag = cipher.auth_tag
153 assert_equal(16, tag.size)
156 decipher.auth_tag = tag
170 tag = cipher.auth_tag(8)
171 assert_equal(8, tag.size)
174 decipher.auth_tag = tag
187 tag = cipher.auth_tag
190 tag.setbyte(-1, (tag.getbyte(-1) + 1) & 0xff)
191 decipher.auth_tag = tag
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A D24hr_clock.rb26 @tag = TkcTag.new(@c)
30 @oval = TkcOval.new(@c, @circle_coords, :fill=>'white', :tags=>[@tag])
44 @tag.bind('Motion', cmd, '%x %y')
63 :tags=>[@tag, @mark_tag],
66 :tags=>[@tag, @mark_tag],
69 :tags=>[@tag, @mark_tag],
72 :tags=>[@tag, @mark_tag],
96 :tags=>[@tag, @mark_tag],
99 :tags=>[@tag, @mark_tag],
102 :tags=>[@tag,
[all...]
/macosx-10.9.5/vim-53/runtime/autoload/
H A Dxmlcomplete.vim83 " Look like we may have broken tag. Check previous lines. Up to
94 " Normal tag line, no need for completion at all
95 " OR reached first line without tag at all
127 " There is still possibility we may do something - eg. close tag
177 " Generally if context contains > it means we are outside of tag and
188 let tag = ''
190 let tag = split(context)[0]
193 let tag = substitute(tag, '^'.b:xml_namespace.':', '', '')
208 if tag
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Ddst_parse.c80 const char *tag; member in struct:parse_map
134 for (i = 0; map[i].tag != NULL; i++) {
135 if (strcasecmp(s, map[i].tag) == 0 &&
147 if (map[i].tag == NULL)
150 return (map[i].tag);
187 if (priv->elements[j].tag == TAG(DST_ALG_RSAMD5, i))
221 if (priv->elements[j].tag == TAG(DST_ALG_DH, i))
236 if (priv->elements[j].tag == TAG(DST_ALG_DSA, i))
248 if (priv->elements[0].tag != TAG(DST_ALG_ECCGOST, 0))
263 priv->elements[0].tag
438 int tag; local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dwidget91 .t tag configure title -font $widgetFont(title)
92 .t tag configure bold -font $widgetFont(bold)
98 .t tag configure demospace -lmargin1 1c -lmargin2 1c
102 .t tag configure demo -lmargin1 1c -lmargin2 1c \
104 .t tag configure visited -lmargin1 1c -lmargin2 1c \
106 .t tag configure hot -background black -foreground white
108 .t tag configure demo -lmargin1 1c -lmargin2 1c \
110 .t tag configure visited -lmargin1 1c -lmargin2 1c \
112 .t tag configure hot -foreground red -underline 1
114 .t tag bin
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/pds/
H A Dtif_pdsdirwrite.c6 One needs to have a registered public tag which contains some amount of
74 int (*getFieldFn)(TIFF *tif,ttag_t tag,...));
106 #define TIFFWriteRational(tif, type, tag, dir, v) \
107 TIFFWriteRationalArray((tif), (type), (tag), (dir), 1, &(v))
145 int (*getFieldFn)(TIFF *tif, ttag_t tag, ...))
149 ttag_t tag; local
223 /* Deleted "write out extra samples tag" code here. */
258 * other tag construction routines assume that
321 int (*getFieldFn)(TIFF *tif, ttag_t tag, ...))
405 any TIFF_DOUBLE tag, eve
142 TIFFWritePrivateDataSubDirectory(TIFF* tif, uint32 pdir_fieldsset[], int pdir_fields_last, TIFFFieldInfo *field_info, int (*getFieldFn)(TIFF *tif, ttag_t tag, ...)) argument
320 TIFFWriteNormalSubTag(TIFF* tif, TIFFDirEntry* dir, const TIFFFieldInfo* fip, int (*getFieldFn)(TIFF *tif, ttag_t tag, ...)) argument
480 TIFFSetupShortLong(TIFF* tif, ttag_t tag, TIFFDirEntry* dir, uint32 v) argument
500 TIFFWriteRational(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, float v) argument
515 TIFFWritePerSampleShorts(TIFF* tif, ttag_t tag, TIFFDirEntry* dir) argument
538 TIFFWritePerSampleAnys(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir) argument
563 TIFFSetupShortPair(TIFF* tif, ttag_t tag, TIFFDirEntry* dir) argument
577 TIFFWriteShortTable(TIFF* tif, ttag_t tag, TIFFDirEntry* dir, uint32 n, uint16** table) argument
614 TIFFWriteShortArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, uint16* v) argument
640 TIFFWriteLongArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, uint32* v) argument
658 TIFFWriteRationalArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, float* v) argument
697 TIFFWriteFloatArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, float* v) argument
712 TIFFWriteDoubleArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, double* v) argument
732 TIFFWriteAnyArray(TIFF* tif, TIFFDataType type, ttag_t tag, TIFFDirEntry* dir, uint32 n, double* v) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSCJSValueInlines.h161 u.asBits.tag = EmptyValueTag;
167 u.asBits.tag = NullTag;
173 u.asBits.tag = UndefinedTag;
179 u.asBits.tag = BooleanTag;
185 u.asBits.tag = BooleanTag;
191 u.asBits.tag = DeletedValueTag;
198 u.asBits.tag = CellTag;
200 u.asBits.tag = EmptyValueTag;
207 u.asBits.tag = CellTag;
209 u.asBits.tag
274 inline uint32_t JSValue::tag() const function in class:JSC::JSValue
314 JSValue(int32_t tag, int32_t payload) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dthumbnail.c128 #define CopyField(tag, v) \
129 if (TIFFGetField(in, tag, &v)) TIFFSetField(out, tag, v)
130 #define CopyField2(tag, v1, v2) \
131 if (TIFFGetField(in, tag, &v1, &v2)) TIFFSetField(out, tag, v1, v2)
132 #define CopyField3(tag, v1, v2, v3) \
133 if (TIFFGetField(in, tag, &v1, &v2, &v3)) TIFFSetField(out, tag, v1, v2, v3)
134 #define CopyField4(tag, v
138 cpTag(TIFF* in, TIFF* out, uint16 tag, uint16 count, TIFFDataType type) argument
188 tag, type); local
198 uint16 tag; member in struct:cpTag
[all...]
/macosx-10.9.5/curl-78.94.1/curl/src/
H A Dtool_setopt.c214 const char *name, CURLoption tag,
220 ret = curl_easy_setopt(curl, tag, lval);
247 const char *name, CURLoption tag,
253 ret = curl_easy_setopt(curl, tag, lval);
289 const char *name, CURLoption tag,
296 ret = curl_easy_setopt(curl, tag, lval);
332 const char *name, CURLoption tag,
339 ret = curl_easy_setopt(curl, tag, post);
408 const char *name, CURLoption tag,
415 ret = curl_easy_setopt(curl, tag, lis
213 tool_setopt_enum(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) argument
246 tool_setopt_flags(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValue *nvlist, long lval) argument
288 tool_setopt_bitmask(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, const NameValueUnsigned *nvlist, long lval) argument
331 tool_setopt_httppost(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, struct curl_httppost *post) argument
407 tool_setopt_slist(CURL *curl, struct Configurable *config, const char *name, CURLoption tag, struct curl_slist *list) argument
447 tool_setopt(CURL *curl, bool str, struct Configurable *config, const char *name, CURLoption tag, ...) argument
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/letest/
H A Dgendata.cpp66 void dumpLongs(FILE *file, const char *tag, le_int32 *longs, le_int32 count) { argument
70 fprintf(file, " <%s>\n", tag);
86 fprintf(file, " </%s>\n\n", tag);
89 void dumpFloats(FILE *file, const char *tag, float *floats, le_int32 count) { argument
93 fprintf(file, " <%s>\n", tag);
109 fprintf(file, " </%s>\n", tag);
188 UnicodeString tag = element->getTagName(); local
191 if (tag.compare(test_font) == 0) {
225 } else if (tag.compare(test_text) == 0) {
235 // an unknown tag
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmcred.h84 explicit AccessCredentials(const SampleGroup &samples, const char *tag = NULL)
85 { this->samples() = samples; this->tag(tag); }
86 explicit AccessCredentials(const SampleGroup &samples, const std::string &tag) argument
87 { this->samples() = samples; this->tag(tag); }
89 const char *tag() const { return EntryTag[0] ? EntryTag : NULL; } function in class:Security::SampleGroup
91 void tag(const char *tagString);
92 void tag(const std::string &tagString) { return tag(tagStrin function in class:Security::SampleGroup
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmcred.h84 explicit AccessCredentials(const SampleGroup &samples, const char *tag = NULL)
85 { this->samples() = samples; this->tag(tag); }
86 explicit AccessCredentials(const SampleGroup &samples, const std::string &tag) argument
87 { this->samples() = samples; this->tag(tag); }
89 const char *tag() const { return EntryTag[0] ? EntryTag : NULL; } function in class:Security::SampleGroup
91 void tag(const char *tagString);
92 void tag(const std::string &tagString) { return tag(tagStrin function in class:Security::SampleGroup
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Dparse.cpp93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
95 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
278 parseUCARules(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status) argument
298 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
411 result = string_open(state->bundle, tag, pTarget, (int32_t)(target - pTarget), NULL, status);
422 parseTransliterator(ParseState* state, char *tag, uint32_t startline, const struct UString* /*comment*/, UErrorCode *status) argument
439 printf(" %s at line %i \n", (tag == NULL) ? "(null)" : tag, (int)startline);
489 result = string_open(state->bundle, tag, pTarge
500 parseDependency(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
562 parseString(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
597 parseAlias(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1030 parseCollationElements(ParseState* state, char *tag, uint32_t startline, UBool newCollation, UErrorCode *status) argument
1154 realParseTable(ParseState* state, struct SResource *table, char *tag, uint32_t startline, UErrorCode *status) argument
1238 parseTable(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1264 parseArray(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1358 parseIntVector(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1446 parseBinary(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1528 parseInteger(ParseState* state, char *tag, uint32_t startline, const struct UString *comment, UErrorCode *status) argument
1578 parseImport(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1694 parseInclude(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status) argument
1914 parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status) argument
[all...]

Completed in 341 milliseconds

1234567891011>>