Searched refs:to (Results 26 - 50 of 3922) sorted by relevance

1234567891011>>

/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_write_disk_private.h30 #error This header is only to be used internally to libarchive.
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dlink.c39 link(const char* from, const char* to)
42 NoP(to);
H A Drename.c38 mvdir(const char* from, const char* to)
50 argv[2] = to;
65 rename(const char* from, const char* to)
71 while (link(from, to))
77 return mvdir(from, to);
81 if (unlink(to))
87 return mvdir(from, to);
/macosx-10.10/postfix-255/postfix/src/util/
H A Dsane_link.c9 /* int sane_link(from, to)
11 /* const char *to;
41 int sane_link(const char *from, const char *to) argument
51 if (link(from, to) >= 0)
59 if (stat(from, &from_st) >= 0 && stat(to, &to_st) >= 0
63 myname, from, to);
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/diagrams/include/attr/
H A Dslant.inc6 If not specified the system falls back to the value taken from the
7 language variable [var slant], which itself defaults to [const 90],
10 0 degrees is slanting straight east, pointing to the right.
11 90 degrees is slanting to the north, pointing straight up.
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/utilLib/
H A Dcputime.h5 * subject to the Apple Public Source License Version 1.2 (the 'License').
22 * This module uses a highly machine-dependent mechanism to get timestamps
27 * We provide routines to convert a difference between two CPUTimes as a double,
44 * It's crucial to place the CPUTimeDelta*() call OUTSIDE of the critical timed
45 * area. It's really cheap to snag the timestamps, but it's not at all cheap
46 * to convert the difference between two timestamps to a double.
62 * Obtain machine-dependent, high resolution, cheap-to-read timestamp.
68 * Implemented as separate functions to preserve as much precision as possible
71 extern double CPUTimeDeltaSec(CPUTime from, CPUTime to); // second
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_to_table_of_contents.rb10 @to = RDoc::Markup::ToTableOfContents.new
14 assert_equal %w[hi], @to.res
18 assert_empty @to.res
22 assert_equal [@RM::Heading.new(5, 'Hello')], @to.res
26 assert_equal [@RM::Heading.new(1, 'Hello')], @to.res
30 assert_equal [@RM::Heading.new(2, 'Hello')], @to.res
34 assert_equal [@RM::Heading.new(3, 'Hello')], @to.res
38 assert_equal [@RM::Heading.new(4, 'Hello')], @to.res
42 assert_equal [@RM::Heading.new(1, '*Hello*')], @to.res
46 assert_equal [@RM::Heading.new(1, '\\Hello')], @to
[all...]
H A Dtest_rdoc_markup_to_label.rb10 @to = RDoc::Markup::ToLabel.new
14 assert_empty @to.res
18 assert_equal %w[hi], @to.res
74 assert_equal 'bold', @to.convert('<b>bold</b>')
75 assert_equal 'bold', @to.convert('*bold*')
79 assert_equal 'SomeClass', @to.convert('SomeClass')
80 assert_equal 'SomeClass', @to.convert('\\SomeClass')
82 assert_equal 'some_method', @to.convert('some_method')
83 assert_equal 'some_method', @to.convert('\\some_method')
85 assert_equal '%23some_method', @to
[all...]
H A Dtest_rdoc_markup_to_joined_paragraph.rb8 @to = RDoc::Markup::ToJoinedParagraph.new
14 @to.accept_paragraph parsed
24 @to.accept_paragraph parsed
/macosx-10.10/OpenSSL098-52/src/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/rsa/
H A Drsa_none.c5 * subject to the Apple Public Source License Version 1.2 (the 'License').
25 * The implementation was written so as to conform with Netscapes SSL.
28 * the following conditions are aheared to. The following conditions
29 * apply to all code found in this distribution, be it the RC4, RSA,
35 * the code are not to be removed.
83 int RSA_padding_add_none(unsigned char *to, int tlen, unsigned char *from, argument
98 memcpy(to,from,(unsigned int)flen);
102 int RSA_padding_check_none(unsigned char *to, int tlen, unsigned char *from, argument
112 memset(to,0,tlen-flen);
113 memcpy(to
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSUnicodeRangeValue.h36 static PassRef<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) argument
38 return adoptRef(*new CSSUnicodeRangeValue(from, to));
42 UChar32 to() const { return m_to; } function in class:WebCore::CSSUnicodeRangeValue
49 CSSUnicodeRangeValue(UChar32 from, UChar32 to) argument
52 , m_to(to)
/macosx-10.10/emacs-93/emacs/lisp/erc/
H A Derc-replace.el22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
28 ;; This module allows you to systematically replace text in incoming
30 ;; Then add to your ~/.emacs:
44 "Alist describing text to be replaced in incoming messages.
49 function to call, or any sexp. If a function, it will be called with
50 one argument, the string to be replaced, and it should return a
64 "Function to run from `erc-insert-modify-hook'.
65 It replaces text according to `erc-replace-alist'."
69 (to (cdr elt)))
73 (cond ((stringp to)
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/tests/data/
H A Dslapd-acl.conf29 access to dn.exact="" attrs=objectClass
31 access to *
54 #access to attrs=objectclass dn.subtree="dc=example,dc=com"
55 access to attrs=objectclass
59 #access to filter="(objectclass=person)" attrs=userpassword dn.subtree="dc=example,dc=com"
60 access to filter="(objectclass=person)" attrs=userpassword
64 access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
69 access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
74 access to dn.exact="cn=Mark Elliot,ou=Alumni Association,ou=People,dc=example,dc=com"
78 access to d
[all...]
H A Dslapd-valregex.conf29 access to dn.exact="" attrs=objectClass
31 access to *
55 access to attrs=userPassword
59 access to attrs=sn val.regex="^(.*)$"
63 access to attrs=sn val.regex="."
66 access to attrs=sn
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Drename.c20 along with Bash; see the file COPYING. If not, write to the Free
42 rename (from, to)
43 const char *from, *to;
50 if (stat (to, &tb) < 0)
59 if (unlink (to) < 0 && errno != ENOENT)
63 if (link (from, to) < 0)
69 unlink (to);
/macosx-10.10/ruby-106/ruby/test/uri/
H A Dtest_mailto.rb27 ok[-1] << {:to => "chris@example.com"}
32 ok[-1] << {:to => "infobot@example.com",
38 ok[-1] << {:to => "infobot@example.com",
45 ok[-1] << {:to => "infobot@example.com",
52 ok[-1] << {:to => "foobar@example.com",
58 ok[-1] << {:to => "majordomo@example.com",
64 ok[-1] << {:to => "joe@example.com",
67 # mailto:?to=joe@example.com&cc=bob@example.com&body=hello
68 ok << ["mailto:?to=joe@example.com&cc=bob@example.com&body=hello"]
70 ["to
[all...]
/macosx-10.10/BerkeleyDB-21/db/cxx/
H A Dcxx_dbt.cpp44 DBT *to = this; local
45 memcpy(to, from, sizeof(DBT));
52 DBT *to = this; local
53 memcpy(to, from, sizeof(DBT));
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGDominators.h47 bool dominates(BlockIndex from, BlockIndex to) const
50 return m_results[to].get(from);
53 bool dominates(BasicBlock* from, BasicBlock* to) const
55 return dominates(from->index, to->index);
64 FastBitVector m_scratch; // A temporary bitvector with bit for each block. We recycle this to save new/deletes.
/macosx-10.10/network_cmds-457/natd.tproj/
H A Dnatd.test10 ipfw add divert 32000 ip from any to any via $1
11 ipfw add pass ip from any to any
/macosx-10.10/ppp-786.1.1/Drivers/PPTP/PPTP-extension/
H A Dpptp_ip.h7 * as defined in and that are subject to the Apple Public Source License
31 int pptp_ip_output(mbuf_t m, u_int32_t from, u_int32_t to);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/include/
H A Dconcept.inc3 their relate to each other. This is useful to understand the
33 In addition to a type each reference has a descriptive label as
43 Manpage references are intended to be used for references to the
49 Url references are intended on the othre hand are inteded to be used
50 for links to anything else, like websites. Their target is an url.
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/include/
H A Dconcept.inc3 their relate to each other. This is useful to understand the
44 labels for all nodes on the unique path from the root of the tree to
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/
H A Dconcept.inc3 grammars and how their relate to each other. This is useful
4 to understand the chosen serialization.
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dalloc_ttype.c4 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
24 * holders shall not be used in advertising or otherwise to promote the *
51 * so we do not have to worry about order dependencies.
95 realign_data(TERMTYPE *to, cha argument
340 adjust_cancels(TERMTYPE *to, TERMTYPE *from) argument
387 _nc_align_termtype(TERMTYPE *to, TERMTYPE *from) argument
[all...]

Completed in 586 milliseconds

1234567891011>>