Searched refs:tb (Results 1 - 25 of 109) sorted by relevance

12345

/macosx-10.10.1/ruby-106/ruby/test/rinda/
H A Dtest_tuplebag.rb7 @tb = Rinda::TupleBag.new
12 val = @tb.delete tup(:val, 1)
17 @tb.push t
19 val = @tb.delete t
23 assert_equal [], @tb.find_all(tem(:val, 1))
27 @tb.push t1
28 @tb.push t2
30 val = @tb.delete t1
34 assert_equal [t2], @tb.find_all(tem(:val, 1))
38 assert_equal [], @tb
[all...]
/macosx-10.10.1/CPANInternal-159.1/Class-Trigger-0.14/inc/Test/
H A DMore.pm44 my $tb = Test::More->builder;
46 return $tb->plan(@_);
78 my $tb = Test::More->builder;
79 $tb->done_testing(@_);
86 my $tb = Test::More->builder;
88 return $tb->ok( $test, $name );
94 my $tb = Test::More->builder;
96 return $tb->is_eq(@_);
100 my $tb = Test::More->builder;
102 return $tb
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Drename.c45 struct stat fb, tb; local
50 if (stat (to, &tb) < 0)
57 if (fb.st_dev == tb.st_dev && fb.st_ino == tb.st_ino)
/macosx-10.10.1/dcerpc-61/dcerpc/idl_compiler/
H A Dnamdump.c261 NAMETABLE_temp_name_t * tb; local
270 for (tb = NAMETABLE_temp_chain; tb; tb = tb->next) {
272 tb, tb->node, tb->node->id );
/macosx-10.10.1/emacs-93/emacs/etc/
H A Demacs.py34 (type, value, tb) = sys.exc_info ()
36 tb = tb.tb_next
37 if tb is None: # print_exception won't do it
39 traceback.print_exception (type, value, tb)
104 (type, value, tb) = sys.exc_info ()
106 traceback.print_exception (type, value, tb.tb_next)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dtoolbar.rb101 tb = Tk::Iwidgets::Toolbar.new(:helpvariable=>status_var)
105 tb.add(:button, :helpstr=>'Copy It', :image=>editcopy22,
108 tb.add(:button, :helpstr=>'Cut It', :image=>editcut22,
111 tb.add(:button, :helpstr=>'Paste It', :image=>editpaste22,
114 tb.add(:button, :helpstr=>'Delete It', :image=>editdelete22,
119 tb.add(:frame, :borderwidth=>1, :width=>10, :height=>10)
123 tb.add(:radiobutton, :variable=>radio_var, :value=>'Box',
128 tb.add(:radiobutton, :variable=>radio_var, :value=>'Line',
133 tb.add(:radiobutton, :variable=>radio_var, :value=>'Oval',
140 tb
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isccc/
H A Dbase64.c52 isc_buffer_t tb; local
57 isc_buffer_init(&tb, target->rstart, target->rend - target->rstart);
59 result = isc_base64_totext(&sr, wordlength, wordbreak, &tb);
63 target->rstart = isc_buffer_used(&tb);
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dselect-base.c60 struct timeval tb, *timeout; local
66 tb.tv_sec = 0;
67 tb.tv_usec = 10000;
68 timeout = &tb;
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Diconv.c260 _win_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
281 memcpy(*tb, *fb, fz);
294 if ((tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, *tn)) && tz <= *tn)
311 while (!(tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)fz, (LPWSTR)*tb, 0)))
340 else if (!(un = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, 0)))
351 if (tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, un, *tb, *tn, 0, 0))
368 if (!(tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, fz, *tb, 0, 0, 0)))
386 if (!(tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, fz, *tb, tz, 0, 0)))
401 *tb += tz;
531 utf2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_ argument
605 bin2utf(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
715 ume2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
791 bin2ume(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
865 ucs2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
910 bin2ucs(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
956 scu2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1001 bin2scu(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1235 _ast_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1345 char* tb; local
1441 char* tb; local
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dbase64.c51 base64encode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
71 if (tp = (unsigned char*)tb)
99 n = tp - (unsigned char*)tb + 1;
128 n = tp - (unsigned char*)tb + 1;
144 if (tp > (unsigned char*)tb && *(tp - 1) == '\n')
148 n = tp - (unsigned char*)tb;
162 base64decode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
186 if (tp = (unsigned char*)tb)
217 n = tp - (unsigned char*)tb + 4;
259 n = tp - (unsigned char*)tb
[all...]
/macosx-10.10.1/CPANInternal-159.1/Log-Dispatch-2.34/t/lib/Log/Dispatch/
H A DTestUtil.pm15 my $tb = Test::Builder->new();
16 $tb->is_eq( dump_one_line($ref1), dump_one_line($ref2), $name );
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Drename.c104 struct utimbuf tb; local
106 tb.actime = statbuf->st_atime;
107 tb.modtime = statbuf->st_mtime;
108 result = utime (destination, &tb);
111 long tb[2]; local
113 tb[0] = statbuf->st_atime;
114 tb[1] = statbuf->st_mtime;
115 result = utime (destination, tb);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D__init__.py66 def __exit__(self, type, value, tb):
73 def __exit__(self, type, value, tb):
/macosx-10.10.1/libresolv-57/
H A Dns_samedomain.c203 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
206 ns_makecanon(b, tb, sizeof tb) < 0)
208 if (strcasecmp(ta, tb) == 0)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/Foundation/
H A D_functiondefines.py50 def __exit__(self, type, value, tb):
57 def __exit__(self, type, value, tb):
83 def __exit__(self, type, value, tb):
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A DEAPSIMAKAUtil.h69 TLVBufferUsed(TLVBufferRef tb);
72 TLVBufferErrorString(TLVBufferRef tb);
75 TLVBufferMaxSize(TLVBufferRef tb);
78 TLVBufferStorage(TLVBufferRef tb);
81 TLVBufferInit(TLVBufferRef tb, uint8_t * storage, int size);
84 TLVBufferAllocateTLV(TLVBufferRef tb,
/macosx-10.10.1/misc_cmds-33/leave/
H A Dleave.c144 char tb[80]; local
150 strftime(tb, sizeof(tb), "%+", localtime(&daytime));
151 printf("Alarm set for %s. (pid %d)\n", tb, pid);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dconfigure10777 tb=
10788 a_out_adobe_vec) tb="$tb aout-adobe.lo aout32.lo" ;;
10789 aix5coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
10790 aout0_big_vec) tb="$tb aout0.lo aout32.lo" ;;
10791 aout_arm_big_vec) tb="$tb aout-arm.lo aout32.lo" ;;
10792 aout_arm_little_vec) tb
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/unix/
H A DtclUnixTime.c209 static mach_timebase_info_data_t tb;
212 if (!tb.denom) {
213 mach_timebase_info(&tb);
214 maxClicksForUInt64 = UINT64_MAX / tb.numer;
217 nsec = ((uint64_t) clicks) * tb.numer / tb.denom;
219 nsec = ((long double) (uint64_t) clicks) * tb.numer / tb.denom;
205 static mach_timebase_info_data_t tb; local
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_div.c23 mp_int ta, tb, tq, q; local
45 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
53 ((res = mp_abs(b, &tb)) != MP_OKAY) ||
54 ((res = mp_mul_2d(&tb, n, &tb)) != MP_OKAY) ||
60 if (mp_cmp(&tb, &ta) != MP_GT) {
61 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
66 if (((res = mp_div_2d(&tb, 1, &tb, NULL)) != MP_OKAY) ||
84 mp_clear_multi(&ta, &tb,
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/libtommath/
H A Dbn_mp_div.c23 mp_int ta, tb, tq, q; local
45 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
53 ((res = mp_abs(b, &tb)) != MP_OKAY) ||
54 ((res = mp_mul_2d(&tb, n, &tb)) != MP_OKAY) ||
60 if (mp_cmp(&tb, &ta) != MP_GT) {
61 if (((res = mp_sub(&ta, &tb, &ta)) != MP_OKAY) ||
66 if (((res = mp_div_2d(&tb, 1, &tb, NULL)) != MP_OKAY) ||
84 mp_clear_multi(&ta, &tb,
[all...]
/macosx-10.10.1/rsync-45/rsync/testhelp/
H A Dmaketree.py131 tb = TreeBuilder() variable
132 tb.build_tree('/tmp/foo', 3)
133 tb.print_summary()
/macosx-10.10.1/libunwind-35.3/src/
H A DUnwindLevel1-gcc-ext.c230 EXPORT void __register_frame_info_bases(const void* fde, void* ob, void* tb, void* db) argument
232 DEBUG_PRINT_API("__register_frame_info_bases(%p,%p, %p, %p)\n", fde, ob, tb, db);
243 EXPORT void __register_frame_info_table_bases(const void* fde, void* ob, void* tb, void* db) argument
245 DEBUG_PRINT_API("__register_frame_info_table_bases(%p,%p, %p, %p)\n", fde, ob, tb, db);
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Dtoolbar.tcl32 set tb [widget::toolbar .f.tb]
33 pack $tb -fill both -expand 1
34 $tb add button foo -text Foo
35 $tb add button bar -text Bar -separator 1
36 $tb add button baz -text Baz
37 set b [ttk::button $tb.zippy -text Zippy -state disabled]
38 $tb add $b
/macosx-10.10.1/adv_cmds-158/ps/
H A Dtasks.c206 (thread_info_t)&ki->thval[j].tb,
215 ki->thval[j].tb.policy, &ki->thval[j].schedinfo);
222 ki->cpu_usage += ki->thval[j].tb.cpu_usage;
223 tstate = mach_state_order(ki->thval[j].tb.run_state,
224 ki->thval[j].tb.sleep_time);
227 if ((ki->thval[j].tb.flags & TH_FLAGS_SWAPPED ) == 0)

Completed in 413 milliseconds

12345