Searched refs:in (Results 26 - 50 of 6925) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebResourceLoadDelegate.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier);
88 @param redirectResponse If the request is being made in response to a redirect we received,
95 HRESULT willSendRequest([in] IWebView* webView, [in] unsigne
[all...]
H A DIWebHistoryDelegate.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
44 HRESULT didNavigateWithNavigationData([in] IWebView* webView, [in] IWebNavigationData* navigationData, [in] IWebFrame* webFrame);
45 HRESULT didPerformClientRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFram
[all...]
H A DIWebFrameLoadDelegatePrivate2.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
46 HRESULT didDisplayInsecureContent([in] IWebView* sender);
48 HRESULT didRunInsecureContent([in] IWebView* sender, [in] IWebSecurityOrigin* origin);
50 HRESULT didClearWindowObjectForFrameInScriptWorld([in] IWebView* webView, [in] IWebFrame* frame, [in] IWebScriptWorld*);
52 HRESULT didPushStateWithinPageForFrame([in] IWebVie
[all...]
H A DIWebResourceLoadDelegatePrivate.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
59 HRESULT didLoadResourceFromMemoryCache([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebURLResponse* response, [in] UINT length, [in] IWebDataSource* dataSource);
61 HRESULT shouldUseCredentialStorage([in] IWebView* webView, [in] unsigne
[all...]
H A DIWebFormDelegate.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
64 analogous to similar methods in AppKit/NSControl.h.
65 These methods are forwarded from widgets used in forms to the WebFormDelegate.
76 HRESULT textFieldDidBeginEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame);
79 HRESULT textFieldDidEndEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame);
82 HRESULT textDidChangeInTextField([in] IDOMHTMLInputElemen
[all...]
H A DIWebMutableURLRequest.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
46 HRESULT addValue([in] BSTR value, [in] BSTR field);
51 HRESULT setAllHTTPHeaderFields([in] IPropertyBag* headerFields);
56 HRESULT setCachePolicy([in] WebURLRequestCachePolicy policy);
61 HRESULT setHTTPBody([in] IStream* data);
66 HRESULT setHTTPBodyStream([in] IStream* data);
71 HRESULT setHTTPMethod([in] BST
[all...]
H A DIWebViewPrivate.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
66 HRESULT setInViewSourceMode([in] BOOL flag);
70 @abstract Whether or not the WebView is in source-view mode for HTML.
79 HRESULT setFormDelegate([in] IWebFormDelegate* formDelegate);
84 HRESULT setFrameLoadDelegatePrivate([in] IWebFrameLoadDelegatePrivate* frameLoadDelegatePrivate);
88 HRESULT scrollBy([in] LPPOINT offset);
95 HRESULT markAllMatchesForText([in] BSTR search, [in] BOO
[all...]
H A DIWebGeolocationPosition.idl4 * Redistribution and use in source and binary forms, with or without
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
38 HRESULT initWithTimestamp([in] double timestamp, [in] double latitude, [in] double longitude, [in] double accuracy);
/macosx-10.10/mDNSResponder-561.1.1/Clients/FirefoxExtension/
H A DIDNSSDService.idl6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
27 onBrowse( in IDNSSDService service, in boolean add, in long interfaceIndex, in long error, in AString serviceName, in AString regtype, in AString domain );
35 onResolve( in IDNSSDServic
[all...]
/macosx-10.10/OpenSSL098-52/src/tools/
H A Dc_hash5 for i in $*
7 h=`openssl x509 -hash -noout -in $i`
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Disnum.bash16 case $1 in
27 case $1 in
38 case $1 in
47 case $1 in
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/
H A Dautogen.sh3 for pdir in `find . -name configure.in`
/macosx-10.10/postfix-255/postfix/mantools/
H A Dfind-fluff3 for i in $*
/macosx-10.10/ksh-23/ksh/src/cmd/INIT/
H A Dignore.sh23 case $-:$BASH_VERSION in
28 do case $# in
31 case $1 in
32 *=*) case $RANDOM in
H A Dsilent.sh23 case $-:$BASH_VERSION in
28 do case $# in
31 case $1 in
32 *=*) case $RANDOM in
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dmemmove.c36 register char* in = (char*)from;
40 else if (in + n <= out || out + n <= in)
42 else if (out < in)
43 do *out++ = *in++; while (--n > 0);
47 in += n;
48 do *--out = *--in; while(--n > 0);
/macosx-10.10/mDNSResponder-561.1.1/mDNSMacOSX/
H A DDNSServiceDiscoveryReply.defs6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
33 in resultType: int;
34 in replyDomain: DNSCString;
35 in flags: int;
40 in resultType: int;
41 in replyName: DNSCString;
42 in replyType: DNSCString;
43 in replyDomain: DNSCString;
44 in flag
[all...]
H A DDNSServiceDiscoveryRequest.defs6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
35 in client: mach_port_t;
36 in regtype: DNSCString;
37 in domain: DNSCString);
42 in client: mach_port_t;
43 in registrationDomains: int);
47 in client: mach_port_t;
48 in name: DNSCString;
49 in regtyp
[all...]
/macosx-10.10/autofs-246/mig/
H A Dautofs_prot.defs6 * (the "License"). You may not use this file except in compliance
14 * When distributing Covered Code, include this CDDL HEADER in each
55 * 'path/subdir/name' in 'map' given 'opts' options.
59 in map : autofs_pathname; /* context or map name */
60 in path : autofs_pathname; /* mountpoint */
61 in name : autofs_component; /* entry we're looking for */
62 in subdir : autofs_pathname; /* subdir within map */
63 in opts : autofs_opts;
64 in isdirect : boolean_t; /* direct mountpoint? */
65 in issubtrigge
[all...]
/macosx-10.10/dcerpc-61/dcerpc/perf/
H A Dperf.idl6 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
40 * copyright notices and this notice appears in all source code copies,
43 * in advertising or publicity pertaining to distribution of the software
50 * Redistribution and use in source and binary forms, with or without
56 * 2. Redistributions in binary form must reproduce the above copyright
57 * notice, this list of conditions and the following disclaimer in the
122 [in] handle_t handle
127 [in] handle_
[all...]
/macosx-10.10/zlib-55/zlib/examples/
H A Dgzjoin.c16 in a product, an acknowledgment in the product documentation would be
38 decompress all of the input data in order to find the bits in the compressed
47 compressed data in order to connect the streams. The output gzip file
64 /* exit with an error (return a value to allow use in an expression) */
74 #define CHUNK 32768 /* must be a power of two and fit in unsigned */
86 local void bclose(bin *in) argument
88 if (in != NULL) {
89 if (in
101 bin *in; local
120 bload(bin *in) argument
144 bget4(bin *in) argument
156 bskip(bin *in, unsigned skip) argument
203 gzhead(bin *in) argument
253 zpull(z_streamp strm, bin *in) argument
284 bin *in; /* buffered input file */ local
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/seed/
H A Dseed_ecb.c5 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
28 * nor may "OpenSSL" appear in their names without prior written
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
54 void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc) argument
57 SEED_encrypt(in, out, ks);
59 SEED_decrypt(in, out, ks);
/macosx-10.10/dcerpc-61/dcerpc/ncklib/
H A Dpickle.idl6 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
40 * copyright notices and this notice appears in all source code copies,
43 * in advertising or publicity pertaining to distribution of the software
50 * Redistribution and use in source and binary forms, with or without
56 * 2. Redistributions in binary form must reproduce the above copyright
57 * notice, this list of conditions and the following disclaimer in the
96 void sec__id_pac_format_v1_pickle([in] handle_t handle, [in] sec_id_pac_format_v1_
[all...]
/macosx-10.10/vim-55/src/testdir/
H A DMake_amiga.mak32 .SUFFIXES: .in .out
40 .in.out:
42 $(VIMPROG) -u amiga.vim -U NONE --noplugin -s dotest.in $*.in
53 test1.out: test1.in
54 test2.out: test2.in
55 test3.out: test3.in
56 test4.out: test4.in
57 test5.out: test5.in
58 test6.out: test6.in
[all...]
/macosx-10.10/misc_cmds-33/calendar/calendars/de_DE.ISO8859-1/
H A Dcalendar.musik13 02/23 Georg Friedrich H�ndel in Halle an der Saale geboren, 1685
14 03/14 Georg Philipp Telemann in Magdeburg geboren, 1681
15 03/21 Johann Sebastian Bach in Eisenach geboren, 1685
16 04/14 Georg Friedrich H�ndel in London gestorben, 1759
17 06/25 Georg Philipp Telemann in Hamburg gestorben, 1767
18 07/17 Diderich Buxtehude in L�beck gestorben, 1707
19 07/28 Johann Sebastian Bach in Leipzig gestorben, 1750
22 01/27 Wolfgang Amadeus Mozart in Salzburg geboren, 1756
23 01/31 Franz Schubert in Lichtenthal bei Wien geboren, 1797
24 02/03 Felix Mendelssohn Bartholdy in Hambur
[all...]

Completed in 284 milliseconds

1234567891011>>