Searched refs:c1 (Results 276 - 300 of 644) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_store.rb122 @s.add_c_enclosure 'cC1', @c1
124 expected = { 'cC1' => @c1 }
255 @s.add_c_enclosure 'cC1', @c1
257 assert_equal @c1, @s.find_c_enclosure('cC1')
290 assert_equal @c1, @store.find_class_named('C1')
298 assert_equal @c1, @store.find_class_named_from('C1', 'C4')
303 assert_equal @c1, @store.find_class_or_module('C1')
306 assert_equal @c1, @store.find_class_or_module('::C1')
/macosx-10.10.1/vim-55/src/proto/
H A Dscreen.pro32 void screen_fill __ARGS((int start_row, int end_row, int start_col, int end_col, int c1, int c2, int attr));
/macosx-10.10.1/bind9-45.101/bind9/contrib/zkt/
H A Dmisc.c623 int c1; local
636 c1 = getc (fp1);
638 } while ( c1 != EOF && c2 != EOF && c1 == c2 );
643 if ( c1 == c2 )
/macosx-10.10.1/efax-38/efax/
H A Defax.c2099 } else if ( c1 && c == CONNECT ) {
2102 } else if ( !c1 && c == OK ) {
2128 if ( c1 && sresponse ( "CONNECT", &x ) ) {
2132 if ( !c1 && sresponse ( "OK", 0 ) ) {
2136 if ( !c1 && ( sresponse ( "CONNECT", &x ) || sresponse ( "+FDM", 0 ) ) ) {
2265 if ( c == DATA ) cmd ( f, c1 ? "O" : 0, TO_A ) ; /* +FAE=1 weirdness */
2309 if ( cmd ( f, c1 ? "+FCLASS=1" :
2359 if ( ! err && ! c1 && !c2 && ! c20 ) {
2365 else if ( strinresp ( "1" ) ) c1 = 1 ;
2368 c1
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Diconv.c183 unsigned char c1;
186 c1 = * (unsigned char *) str1++;
188 if (c1 == 0)
192 if (c1 != c2)
195 return (c1 == c2);
H A Dbig5_2003.h436 unsigned int c1 = i / 157; local
438 buf[0] = c1 + (c1 < 5 ? 0xfa : c1 < 24 ? 0x89 : 0x69);
H A Dgb18030uni.h173 unsigned char c1 = s[0]; local
174 if (c1 >= 0x81 && c1 <= 0x84) {
184 unsigned int i = (((c1 - 0x81) * 10 + (c2 - 0x30)) * 126 + (c3 - 0x81)) * 10 + (c4 - 0x30);
/macosx-10.10.1/uucp-11/uucp/
H A Dsend.c261 long c1, c2;
263 c1 = cmax_size_ever (qsys->uuconf_qcall_local_size);
265 if (c1 > c2)
266 qdaemon->cmax_ever = c1;
1354 size_t c1, c2;
1374 c1 = strlen (z1);
1377 if (*pclen + c1 + c2 + 4 >= *pcalc)
1379 *pcalc += c1 + c2 + 100;
1394 memcpy (znew, z1, c1);
1395 znew += c1;
257 long c1, c2; local
1347 size_t c1, c2; local
[all...]
/macosx-10.10.1/CPANInternal-159.1/Crypt-SSLeay-0.64/certs/
H A Dca-bundle.crt70 db:1b:a1:fe:81:fa:87:f9:d3:90:c1:02:c0:f9:d0:
217 c1:ce:43:df:5d:34:c8:b8:14:ec:d5:2a:70:91:49:
284 87:ca:27:18:66:9e:b5:c1:40:65:7d:fc:61:6f:ad:
309 61:8b:e8:30:45:cb:10:46:c1:73:38:5c:8b:19:d2:2b:f3:40:
313 fc:2a:ad:16:37:7a:93:ac:f7:21:4b:2d:fb:eb:a9:50:cb:c1:
314 d1:40:08:da:03:69:87:a7:37:5e:55:c1:c5:ed:c4:e3:8e:0c:
436 87:fd:46:f1:95:75:b2:09:57:03:30:c1:7a:cd:72:47:71:80:
478 f5:44:6b:ee:36:41:96:f6:64:ce:e1:c1:b2:b9:a4:
479 14:04:98:50:e8:70:f8:8e:35:9a:7d:49:c1:61:1d:
482 da:75:ad:00:f4:2c:c1
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dcookie.c924 struct Cookie *c1 = *(struct Cookie **)p1; local
929 l1 = c1->path ? strlen(c1->path) : 0;
936 l1 = c1->domain ? strlen(c1->domain) : 0;
943 if(c1->name && c2->name)
944 return strcmp(c1->name, c2->name);
/macosx-10.10.1/groff-38/groff/src/libs/libgroff/
H A Dfont.cpp337 font_kern_list::font_kern_list(int c1, int c2, int n, font_kern_list *p) argument
338 : i1(c1), i2(c2), amount(n), next(p)
661 char *c1 = strtok(t.buf, WS); local
662 if (c1 == 0)
666 command = c1;
679 int i1 = name_to_index(c1);
681 t.error("invalid character `%1'", c1);
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_thread.rb141 c1 = c2 = 0
142 t1 = Thread.new { loop { c1 += 1 } }
150 break if c1 > c2
155 assert_operator(c1, :>, c2, "[ruby-dev:33124]") # not guaranteed
534 r << :c1
553 [:immediate, :c1],
554 [:on_blocking, :c1]].each{|(flag, c)|
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_xpath.rb382 c1, c0 = XPath.match( d, "/a/b/c[@id='2']/preceding::node()" )
383 assert_equal '1', c1.attributes['id']
386 c2, c1, c0, b, b2, b0 = XPath.match( start, "preceding::node()" )
389 assert_equal 'c', c1.name
396 assert_equal '1', c1.attributes['id']
771 #doc=Document.new("<a><b><c1/><c2/></b><b><c3/><c4/></b><b><c5/><c6/></b></a>")
815 <c1/>
829 c1 = XPath.match( d, '/a/*/*[1]' )
830 assert_equal( 1, c1.length )
831 assert_equal( 'c1', c
[all...]
/macosx-10.10.1/groff-38/groff/src/preproc/grn/
H A Dmain.cpp206 char *c1 = inputline; /* c1, c2, and c3 will be used to */ variable
321 if (*c1 == '.' && *c2 == 'G' && *c3 == 'S') {
495 done |= (*c1 == '.' && *c2 == 'G' && (*c3 == 'E' || flyback) &&
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A Draw_ostream.cpp242 int c1 = buf[len - 2]; local
244 if (isdigit(c1) && isdigit(c0)) {
246 buf[len - 3] = c1;
/macosx-10.10.1/tcl-105/tk84/tk/macosx/
H A DtkMacOSXColor.c672 unsigned long c1,
676 return TkSetMacColor(c1,&col1) &&
677 TkSetMacColor(c1,&col2) &&
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.str.c343 unsigned char c1, c2, l1 = 0, l2 = 0;
345 ((c1 = (unsigned char)*str1) == *str1 &&
347 (l1 = tolower(c1)) == (l2 = tolower(c2)))); str1++, str2++)
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duidna.cpp95 UChar c1,c2; local
105 c1 = s1[i];
109 if(c1!=c2) {
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/opcode/
H A Dcrx.h67 c0 = MAX_REG, c1, c2, c3, c4, c5, c6, c7, c8, enumerator in enum:__anon7687
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Dknight.c203 chksqr(int r1, int c1) argument
207 if ((c1 < 0) || (c1 > BWIDTH - 1))
209 return ((!board[r1][c1]) ? TRUE : FALSE);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/examples/smtpd/
H A Dtk_smtpd186 checkbutton .c1 -text "Support TLS" -variable ::options(usetls)
189 grid .c1 .c2 .c3 -in .f3 -sticky news
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Drep067.tcl153 foreach c1 $c1to {
155 set elist [list $c0 $c1 $c2]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Dconn.c45 const void *c1,
48 metaconn_t *mc1 = ( metaconn_t * )c1;
72 const void *c1,
75 metaconn_t *mc1 = ( metaconn_t * )c1;
102 const void *c1,
105 metaconn_t *mc1 = ( metaconn_t * )c1;
122 void *c1,
125 metaconn_t *mc1 = ( metaconn_t * )c1;
44 meta_back_conndn_cmp( const void *c1, const void *c2 ) argument
71 meta_back_conndnmc_cmp( const void *c1, const void *c2 ) argument
101 meta_back_conn_cmp( const void *c1, const void *c2 ) argument
121 meta_back_conndn_dup( void *c1, void *c2 ) argument
/macosx-10.10.1/cups-408/cups/vcnet/regex/
H A Dregcomp.ih37 static int samesets(register struct re_guts *g, int c1, int c2);
/macosx-10.10.1/groff-38/groff/src/preproc/refer/
H A Dtoken.cpp314 char c1 = cmupper(p[1]); local
315 init_two_char_letter(p[0], p[1], c0, c1);

Completed in 316 milliseconds

<<11121314151617181920>>