Searched refs:clone (Results 76 - 100 of 524) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DsslDigests.c45 * A convenience wrapper for HashReference.clone, which has the added benefit of
57 return ref->clone(state, newState);
H A Dtls_digest.h66 HashClone clone; member in struct:__anon5006
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_ssl/security_ssl/
H A DsslDigests.c45 * A convenience wrapper for HashReference.clone, which has the added benefit of
57 return ref->clone(state, newState);
H A Dtls_digest.h66 HashClone clone; member in struct:__anon5060
/macosx-10.10.1/WTF-7600.1.24/icu/unicode/
H A Dstrenum.h66 * If a subclass does not implement clone(), or if an error occurs,
68 * The clone functions in all subclasses return a base class pointer
71 * The caller must delete the clone.
73 * @return a clone of this object
78 virtual StringEnumeration *clone() const;
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DPlatformCALayerRemoteCustom.h52 virtual PassRefPtr<WebCore::PlatformCALayer> clone(WebCore::PlatformCALayerClient* owner) const override;
/macosx-10.10.1/ruby-106/ruby/benchmark/
H A Dbm_so_fannkuch.rb23 perml = perm.clone #.dup
/macosx-10.10.1/ruby-106/ruby/ext/digest/sha2/lib/
H A Dsha2.rb100 @sha2 = other.instance_eval { @sha2.clone }
/macosx-10.10.1/ruby-106/ruby/lib/rexml/
H A Dcomment.rb33 def clone method in class:REXML.Comment
H A Dparent.rb150 cl = clone()
155 cl << child.clone
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_delegate.rb27 assert_equal(Myclass,myclass.clone.class,'[ruby-dev:40313]')
34 assert_equal(SimpleDelegator,simple.clone.class)
94 assert_raise(RuntimeError) {d.clone[0] += 1}
96 assert(d.clone.frozen?)
H A Dtest_singleton.rb36 SingletonTest.instance.clone
39 expected = "can't clone instance of singleton TestSingleton::SingletonTest"
97 klass = SingletonTest.clone
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dtextpeer.tcl31 $first insert end "the Make Peer button beside the text widget to clone, and "
42 set b1 [button $w.clone$count -command "makeClone $w $t" \
54 destroy $w.clone$count $w.kill$count
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dncache.c502 dns_rdataset_t clone; local
511 dns_rdataset_init(&clone);
512 dns_rdataset_clone(ncacherdataset, &clone);
513 result = dns_rdataset_first(&clone);
515 dns_rdataset_current(&clone, &rdata);
534 result = dns_rdataset_next(&clone);
537 dns_rdataset_disassociate(&clone);
572 dns_rdataset_t clone; local
587 dns_rdataset_init(&clone);
588 dns_rdataset_clone(ncacherdataset, &clone);
[all...]
H A Ddbtable.c178 dns_db_t *clone; local
183 clone = NULL;
184 dns_db_attach(db, &clone);
187 result = dns_rbt_addname(dbtable->rbt, dns_db_origin(clone), clone);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dreptest.cpp72 virtual Replaceable *clone() const { function in class:TestReplaceable
245 if((p=noop.clone())!=NULL) {
246 errln("Replaceable::clone() does not return NULL");
258 if((p=noop2.clone())!=NULL) {
259 errln("noop2.Replaceable::clone() does not return NULL");
266 if((p=noop3.clone())!=NULL) {
267 errln("noop3.Replaceable::clone() does not return NULL");
289 // test clone()
290 TestReplaceable *tr2 = (TestReplaceable *)tr->clone();
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_digest.rb33 d = @d1.clone
34 assert(d == @d1, "clone")
46 assert_equal(@d1.name, @d1.clone.name, "clone")
47 assert_equal(@d1.digest, @d1.clone.digest, "clone .digest")
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dbrktrans.cpp64 bi = o.bi->clone();
75 Transliterator* BreakTransliterator::clone(void) const { function in class:BreakTransliterator
H A Dquant.cpp35 matcher(o.matcher->clone()),
48 UnicodeFunctor* Quantifier::clone() const { function in class:Quantifier
H A Dethpccal.h142 virtual Calendar* clone() const;
223 * compilers support genuine RTTI. Polymorphic operator==() and clone() methods call
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/
H A DView.pm140 # clone(\%config)
150 sub clone { subroutine
152 my $clone = bless { %$self }, ref $self;
156 $clone->{ map } = {
162 $clone->{ map }->{ default } = $config->{ default }
169 $clone->{ $arg } = $config->{ $arg } if defined $config->{ $arg };
175 my $data = $clone->{ data } = { %{ $self->{ data } } };
178 return $clone;
194 # of this parameter, a clone of the current object is first made, applying
201 # if final config hash is specified then create a clone an
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DStoreConfig.java59 return (StoreConfig) clone();
/macosx-10.10.1/CPANInternal-159.1/Tree-Simple-VisitorFactory-0.10/lib/Tree/Simple/Visitor/
H A DVariableDepthClone.pm31 || die "Insufficient Arguments : you must supply a clone depth";
67 my ($self, $tree, $clone, $depth, $filter) = @_;
75 $clone->addChild($cloned_child);
104 This visitor will clone
116 Based upon the value of C<$boolean>, this will tell the visitor to include the trunk of the tree in the traversal as well. This basically means it will clone the root node as well.
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dparsepos.h111 * The caller must delete the clone.
113 * @return a clone of this object
118 ParsePosition *clone() const;
H A Drep.h188 * If a subclass does not implement clone(), or if an error occurs,
190 * The clone functions in all subclasses return a pointer to a Replaceable
193 * The caller must delete the clone.
195 * @return a clone of this object
200 virtual Replaceable *clone() const;

Completed in 200 milliseconds

1234567891011>>