Searched refs:copy (Results 26 - 50 of 1853) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/URI/URI/
H A D_query.pm68 my @copy = @_;
69 @copy = @{$copy[0]} if @copy == 1 && ref($copy[0]) eq "ARRAY";
70 for (@copy) { s/([;\/?:@&=+,\$\[\]%])/$URI::Escape::escapes{$1}/g; }
71 $self->query(@copy ? join('+', @copy) : undef);
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/ObjC/
H A DDOMTestEventConstructor.h34 @property(readonly, copy) NSString *attr1;
35 @property(readonly, copy) NSString *attr2;
H A DDOMTestException.h34 @property(readonly, copy) NSString *name;
/macosx-10.9.5/libclosure-63/objectTests/
H A Dretainproperty.m24 @property(copy, readonly) int (^getInt)(void);
H A Dsimplemessage.m22 if (*(int *)(void *)blockA == 0x12345) [blockA copy];
H A Dbyrefcopyid.m72 id copy = Block_copy(dummy);
74 callVoidVoid(copy);
76 fail("copy helper of byref id didn't call self", whoami);
79 return copy;
83 id copy = testRoutine(argv[0]);
84 Block_release(copy);
86 fail("copy helper of byref retained the id");
89 fail("copy helper of byref id did release the id");
/macosx-10.9.5/ntp-88/libntp/
H A Demalloc.c51 char * copy; local
53 copy = strdup(str);
55 if (NULL == copy) {
65 return copy;
112 char * copy; local
116 copy = debug_erealloc(NULL, bytes, file, line);
117 memcpy(copy, str, bytes);
119 return copy;
/macosx-10.9.5/WebCore-7537.78.1/bindings/objc/
H A DPublicDOMInterfaces.h34 @property(readonly, copy) NSString *name;
36 @property(copy) NSString *value;
45 @property(copy) NSString *data;
88 @property(copy) NSString *title;
89 @property(readonly, copy) NSString *referrer;
90 @property(readonly, copy) NSString *domain;
91 @property(readonly, copy) NSString *URL;
93 @property(copy) NSString *cookie;
94 @property(readonly, copy) NSString *inputEncoding AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
95 @property(readonly, copy) NSStrin
[all...]
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/
H A D25-copy.t13 plan skip_all => 'No copy magic for this perl';
20 my $wiz = init_watcher 'copy', 'copy';
24 skip 'Tie::Array required to test copy magic on arrays'
32 ok $res, 'copy: cast on tied array succeeded';
34 watch { $a[3] = 13 } { copy => 1 }, 'tied array store';
36 my $s = watch { $a[3] } { copy => 1 }, 'tied array fetch';
37 is $s, 13, 'copy: tied array fetch correctly';
39 $s = watch { exists $a[3] } { copy => 1 }, 'tied array exists';
40 ok $s, 'copy
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/CDBICompat/
H A DCopy.pm11 DBIx::Class::CDBICompat::Copy - Emulates Class::DBI->copy($new_id)
19 Emulates C<<Class::DBI->copy($new_id)>>.
24 # CDBI's copy will take an id in addition to a hash ref.
25 sub copy { subroutine
/macosx-10.9.5/CPANInternal-140/DateTime/t/
H A D23storable.t31 my $copy = Storable::thaw( Storable::nfreeze($dt) );
33 is( $copy->time_zone->name, $dt->time_zone->name,
36 is( ref $copy->locale, ref $dt->locale,
39 is( $copy->year, $dt->year,
42 is( $copy->hour, $dt->hour,
45 is( $copy->nanosecond, $dt->nanosecond,
80 my $copy = Storable::thaw( Storable::nfreeze($dt) );
82 is( $dt->formatter, $copy->formatter,
/macosx-10.9.5/Security-55471.14.18/include/securityd_client/
H A Dxdr_auth.h9 * compliance with the License. Please obtain a copy of the License at
36 bool_t copyin_AuthorizationItemSet(const AuthorizationItemSet *rights, void **copy, mach_msg_size_t *size);
37 bool_t copyout_AuthorizationItemSet(const void *copy, mach_msg_size_t size, AuthorizationItemSet **rights);
/macosx-10.9.5/Security-55471.14.18/libsecurityd/lib/
H A Dxdr_auth.h9 * compliance with the License. Please obtain a copy of the License at
36 bool_t copyin_AuthorizationItemSet(const AuthorizationItemSet *rights, void **copy, mach_msg_size_t *size);
37 bool_t copyout_AuthorizationItemSet(const void *copy, mach_msg_size_t size, AuthorizationItemSet **rights);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/mac/
H A DWKURLRequestNS.mm36 RetainPtr<NSURLRequest> copiedURLRequest = adoptNS([urlRequest copy]);
43 return [toImpl(urlRequest)->platformRequest() copy];
H A DWKURLResponseNS.mm36 RetainPtr<NSURLResponse> copiedURLResponse = adoptNS([urlResponse copy]);
43 return [toImpl(urlResponse)->platformResponse() copy];
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMText.h33 @property(nonatomic, copy) NSString *data;
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libpng/
H A Dautogen.sh10 libtoolize --force --copy --automake
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/test/CPP/
H A DWebDOMTestActiveDOMObject.cpp15 * You should have received a copy of the GNU Library General Public License
55 WebDOMTestActiveDOMObject::WebDOMTestActiveDOMObject(const WebDOMTestActiveDOMObject& copy) argument
58 m_impl = copy.impl() ? new WebDOMTestActiveDOMObjectPrivate(copy.impl()) : 0;
61 WebDOMTestActiveDOMObject& WebDOMTestActiveDOMObject::operator=(const WebDOMTestActiveDOMObject& copy) argument
64 m_impl = copy.impl() ? new WebDOMTestActiveDOMObjectPrivate(copy.impl()) : 0;
H A DWebDOMTestCustomNamedGetter.cpp15 * You should have received a copy of the GNU Library General Public License
53 WebDOMTestCustomNamedGetter::WebDOMTestCustomNamedGetter(const WebDOMTestCustomNamedGetter& copy) argument
56 m_impl = copy.impl() ? new WebDOMTestCustomNamedGetterPrivate(copy.impl()) : 0;
59 WebDOMTestCustomNamedGetter& WebDOMTestCustomNamedGetter::operator=(const WebDOMTestCustomNamedGetter& copy) argument
62 m_impl = copy.impl() ? new WebDOMTestCustomNamedGetterPrivate(copy.impl()) : 0;
H A DWebDOMTestEventConstructor.cpp15 * You should have received a copy of the GNU Library General Public License
53 WebDOMTestEventConstructor::WebDOMTestEventConstructor(const WebDOMTestEventConstructor& copy) argument
56 m_impl = copy.impl() ? new WebDOMTestEventConstructorPrivate(copy.impl()) : 0;
59 WebDOMTestEventConstructor& WebDOMTestEventConstructor::operator=(const WebDOMTestEventConstructor& copy) argument
62 m_impl = copy.impl() ? new WebDOMTestEventConstructorPrivate(copy.impl()) : 0;
H A DWebDOMTestException.cpp15 * You should have received a copy of the GNU Library General Public License
53 WebDOMTestException::WebDOMTestException(const WebDOMTestException& copy) argument
56 m_impl = copy.impl() ? new WebDOMTestExceptionPrivate(copy.impl()) : 0;
59 WebDOMTestException& WebDOMTestException::operator=(const WebDOMTestException& copy) argument
62 m_impl = copy.impl() ? new WebDOMTestExceptionPrivate(copy.impl()) : 0;
H A DWebDOMTestMediaQueryListListener.cpp15 * You should have received a copy of the GNU Library General Public License
52 WebDOMTestMediaQueryListListener::WebDOMTestMediaQueryListListener(const WebDOMTestMediaQueryListListener& copy) argument
55 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
58 WebDOMTestMediaQueryListListener& WebDOMTestMediaQueryListListener::operator=(const WebDOMTestMediaQueryListListener& copy) argument
61 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
/macosx-10.9.5/WebCore-7537.78.1/loader/mac/
H A DDocumentLoaderMac.cpp38 const ResourceLoaderSet copy = loaders; local
39 ResourceLoaderSet::const_iterator end = copy.end();
40 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
47 const ResourceLoaderSet copy = loaders; local
48 ResourceLoaderSet::const_iterator end = copy.end();
49 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DTextCodecASCIIFastPath.h36 static void copy(LChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
41 static void copy(UChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
50 static void copy(LChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
55 static void copy(UChar* destination, const uint8_t* source) function in struct:WebCore::UCharByteFiller
70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
/macosx-10.9.5/bind9-45.100/bind9/win32utils/
H A DBuildSetup.bat6 rem Permission to use, copy, modify, and distribute this software for any
24 copy config.h.win32 config.h
46 copy ..\COPYRIGHT ..\Build\Release
47 copy ..\README ..\Build\Release
48 copy ..\HISTORY ..\Build\Release
49 copy readme1st.txt ..\Build\Release
50 copy index.html ..\Build\Release
51 copy ..\doc\arm\*.html ..\Build\Release
52 copy ..\doc\arm\Bv9ARM.pdf ..\Build\Release
53 copy
[all...]

Completed in 243 milliseconds

1234567891011>>