Searched refs:tl (Results 1 - 25 of 111) sorted by relevance

12345

/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_task_lib.rb6 tl = Rake::TaskLib.new
7 assert_equal :ab, tl.paste(:a, :b)
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dstrftime.c54 Tm_t tl;
56 memset(&tl, 0, sizeof(tl));
72 tl.tm_sec = tm->tm_sec;
74 tl.tm_min = tm->tm_min;
76 tl.tm_hour = tm->tm_hour;
78 tl.tm_wday = tm->tm_wday;
80 tl.tm_mday = tm->tm_mday;
82 tl.tm_mon = tm->tm_mon;
84 tl
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_stats.rb10 @tl = @store.add_file 'file.rb'
11 @tl.parser = RDoc::Parser::Ruby
35 c = @tl.add_class RDoc::NormalClass, 'C'
36 c.record_location @tl
37 c.add_comment 'C', @tl
40 a.record_location @tl
60 c = @tl.add_class RDoc::NormalClass, 'C'
61 c.record_location @tl
62 c.add_comment 'C', @tl
65 a.record_location @tl
[all...]
H A Dtest_rdoc_attr.rb46 tl = @store.add_file 'file.rb'
49 @a.record_location tl
51 cm = tl.add_class RDoc::NormalClass, 'Klass'
71 assert_equal tl, loaded.file
77 tl = @store.add_file 'file.rb'
80 @a.record_location tl
82 cm = tl.add_class RDoc::NormalClass, 'Klass'
105 assert_equal tl, loaded.file
111 tl = @store.add_file 'file.rb'
112 cm = tl
[all...]
H A Dtest_rdoc_class_module.rb55 tl = @store.add_file 'file.rb'
60 cm.add_comment '# comment 1', tl
152 tl = @store.add_file 'file.rb'
153 klass = tl.add_class RDoc::NormalModule, 'Klass'
154 klass.add_comment 'really a class', tl
158 assert_equal [['really a class', tl]], klass.comment_location
163 tl = @store.add_file 'file.rb'
165 ns = tl.add_module RDoc::NormalModule, 'Namespace'
168 cm.record_location tl
171 a1.record_location tl
[all...]
H A Dtest_rdoc_top_level.rb219 tl = @store.add_file 'README.ja'
221 assert_equal 'README.ja', tl.page_name
223 tl = @store.add_file 'Rakefile'
225 assert_equal 'Rakefile', tl.page_name
229 tl = @store.add_file 'README.ja.rdoc'
231 assert_equal 'README.ja', tl.page_name
233 tl = @store.add_file 'README.ja.md'
235 assert_equal 'README.ja', tl.page_name
237 tl = @store.add_file 'README.txt'
239 assert_equal 'README', tl
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Drequire.rb39 tl = RDoc::TopLevel.all_files_hash[name + '.rb']
41 if tl.nil? and RDoc::TopLevel.all_files.first.full_name =~ %r(^lib/) then
43 tl = RDoc::TopLevel.all_files_hash['lib/' + name + '.rb']
46 tl
H A Dstore.rb319 tl = @files_hash[file_name]
321 unless tl.text? then
322 tl.modules_hash.clear
323 tl.classes_hash.clear
325 tl.classes_or_modules.each do |cm|
328 tl.classes_hash[name] = cm if @classes_hash[name]
330 tl.modules_hash[name] = cm if @modules_hash[name]
/macosx-10.9.5/text_cmds-87/tail/
H A Dreverse.c195 BF *mark, *tl, *tr; local
207 if (enomem || (tl = malloc(sizeof(BF))) == NULL ||
208 (tl->l = malloc(BSZ)) == NULL) {
211 tl = enomem ? tl->next : mark;
212 enomem += tl->len;
214 tl->next = mark;
215 tl->prev = mark->prev;
216 mark->prev->next = tl;
217 mark->prev = tl;
[all...]
/macosx-10.9.5/dtrace-118.1/libelf/
H A Dnewscn.c40 Elf_Scn * tl; local
78 tl = elf->ed_tlscn;
80 s->sb_scn.s_index = tl->s_index + 1;
81 elf->ed_tlscn = tl->s_next = &s->sb_scn;
84 = (Elf32_Half)(tl->s_index + 2);
86 tl = &s->sb_scn;
89 return (tl);
108 tl = elf->ed_tlscn;
110 s->sb_scn.s_index = tl->s_index + 1;
111 elf->ed_tlscn = tl
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dmktime.c338 check_result (tk, tmk, tl, tml)
341 time_t tl;
344 if (tk != tl || not_equal_tm (&tmk, &tml))
350 printf (") == %ld, should be %ld\n", (long) tl, (long) tk);
364 time_t tk, tl;
379 tl = mktime (&tmk);
380 tml = *localtime (&tl);
381 printf ("mktime returns %ld == ", (long) tl);
384 status = check_result (tl, tmk, tl, tm
363 time_t tk, tl; local
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dmktime.c554 check_result (time_t tk, struct tm tmk, time_t tl, const struct tm *lt)
556 if (tk != tl || !lt || not_equal_tm (&tmk, lt))
562 printf (") == %ld, should be %ld\n", (long int) tk, (long int) tl);
575 time_t tk, tl, tl1;
590 tl = mktime (&tmk);
591 lt = localtime (&tl);
597 printf ("mktime returns %ld == ", (long int) tl);
600 status = check_result (tl, tmk, tl, lt);
609 for (tl
553 check_result(time_t tk, struct tm tmk, time_t tl, const struct tm *lt) argument
574 time_t tk, tl, tl1; local
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dmktime.c458 check_result (tk, tmk, tl, lt)
461 time_t tl;
464 if (tk != tl || !lt || not_equal_tm (&tmk, lt))
470 printf (") == %ld, should be %ld\n", (long) tl, (long) tk);
485 time_t tk, tl;
500 tl = mktime (&tmk);
501 lt = localtime (&tl);
507 printf ("mktime returns %ld == ", (long) tl);
510 status = check_result (tl, tmk, tl, l
484 time_t tk, tl; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_task.c109 mac_task_label_associate_kernel(struct task *t, struct label *tl, struct label *tportl) argument
113 mac_label_journal(tl, MLJ_TASK_OP_CREATE_K);
114 MAC_PERFORM(task_label_associate_kernel, t, tl, tportl);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmxtime.c54 struct tm* tl; local
97 if (!(tl = tmlocaltime(&now)))
99 if (tm->tm_isdst = tl->tm_isdst)
115 if (!(tl = tmlocaltime(&now)))
117 tm->tm_isdst = tl->tm_isdst;
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dgen_template.c276 struct tlist *tl = calloc(1, sizeof(*tl)); local
277 tl->name = strdup(name);
278 ASN1_TAILQ_INIT(&tl->template);
279 return tl;
293 tlist_count(struct tlist *tl) argument
298 ASN1_TAILQ_FOREACH(q, &tl->template, members) {
305 tlist_add(struct tlist *tl) argument
307 ASN1_TAILQ_INSERT_TAIL(&tlistmaster, tl, tmembers);
311 tlist_print(struct tlist *tl) argument
340 struct tlist *tl = tlist_find_by_name(tname); local
350 tlist_cmp(const struct tlist *tl, const struct tlist *ql) argument
384 tlist_find_dup(const struct tlist *tl) argument
861 struct tlist *tl; local
[all...]
/macosx-10.9.5/bash-92/bash-3.2/
H A Dalias.c464 int line_len, tl, real_start, expand_next, expand_this_token; local
498 tl = i - start; /* number of characters just skipped */
499 RESIZE_MALLOCED_BUFFER (line, j, (tl + 1), line_len, (tl + 50));
500 strncpy (line + j, string + start, tl);
501 line[j + tl] = '\0';
513 tl = i - start; /* token length */
515 /* If tl == 0, but we're not at the end of the string, then we have a
517 if (tl == 0 && string[i] != '\0')
519 tl
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/vm/
H A Dvm_compressor_backing_file.c246 u_int32_t vnode_trim_list (vnode_t vp, struct trim_list *tl) argument
258 if (tl == NULL)
272 while (tl) {
279 current_offset = tl->tl_offset;
280 remaining_length = tl->tl_length;
288 while (trimmed < tl->tl_length) {
321 tl = tl->tl_next;
/macosx-10.9.5/Heimdal-323.92.1/lib/kadm5/
H A Dget_s.c43 krb5_tl_data *tl; local
45 tl = calloc(1, sizeof(*tl));
46 if (tl == NULL)
49 tl->tl_data_type = type;
50 tl->tl_data_length = size;
51 tl->tl_data_contents = malloc(size);
52 if (tl->tl_data_contents == NULL && size != 0) {
53 free(tl);
56 memcpy(tl
[all...]
H A Dent_setup.c210 krb5_tl_data *tl; local
212 for (tl = princ->tl_data; tl != NULL; tl = tl->tl_data_next) {
214 ret = perform_tl_data(context->context, context->db, ent, tl);
/macosx-10.9.5/ncurses-42/ncurses/ncurses/widechar/
H A Dlib_box_set.c48 const ARG_CH_T tl, const ARG_CH_T tr,
61 _tracech_t2(5, tl),
75 RENDER_WITH_DEFAULT(tl, WACS_ULCORNER);
45 wborder_set(WINDOW *win, const ARG_CH_T ls, const ARG_CH_T rs, const ARG_CH_T ts, const ARG_CH_T bs, const ARG_CH_T tl, const ARG_CH_T tr, const ARG_CH_T bl, const ARG_CH_T br) argument
/macosx-10.9.5/text_cmds-87/ed/
H A Dundo.c136 line_t *lp, *ep, *tl; local
141 for (lp = ustack[u_p].h; lp != ep; lp = tl) {
143 tl = lp->q_forw;
/macosx-10.9.5/Heimdal-323.92.1/kadmin/
H A Dmod.c40 krb5_tl_data *tl, **ptl; local
42 tl = ecalloc(1, sizeof(*tl));
43 tl->tl_data_next = NULL;
44 tl->tl_data_type = type;
45 tl->tl_data_length = data->length;
46 tl->tl_data_contents = data->data;
52 *ptl = tl;
H A Dget.c250 krb5_tl_data *tl; local
252 for (tl = princ->tl_data; tl != NULL; tl = tl->tl_data_next)
253 if ((unsigned)tl->tl_data_type == subfield)
255 if (tl == NULL) {
263 (int)tl->tl_data_length,
264 (const char *)tl->tl_data_contents);
272 ret = decode_HDB_Ext_PKINIT_acl(tl
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-ldif/
H A Dldif.c744 struct ldif_tool *tl = local
747 if ( tl->ecount >= tl->elen ) {
749 ID elen = tl->elen ? tl->elen * 2 : ENTRY_BUFF_INCREMENT;
750 Entry **entries = (Entry **) SLAP_REALLOC( tl->entries,
758 tl->elen = elen;
759 tl->entries = entries;
761 tl->entries[tl
1715 struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool; local
1724 struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool; local
1740 struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool; local
1768 struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool; local
1792 struct ldif_tool *tl = &((struct ldif_info *) be->be_private)->li_tool; local
[all...]

Completed in 195 milliseconds

12345