Searched refs:input (Results 1 - 25 of 1492) sorted by relevance

1234567891011>>

/macosx-10.10.1/dcerpc-61/dcerpc/dcelib/darwin/
H A Dwc16str.h49 char *awc16stombs(const wchar16_t * input);
50 wchar16_t *ambstowc16s(const char * input);
/macosx-10.10.1/bash-94.1.2/bash-3.2/tests/
H A Dinput-line.sh1 echo before calling input-line.sub
2 ${THIS_SH} ./input-line.sub
3 this line for input-line.sub
4 echo finished with input-line.sub
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DKeyLocation.java12 * Holder for the input and format of a key. Used when copying secondary keys.
19 RecordInput input; field in class:KeyLocation
22 KeyLocation(RecordInput input, Format format) { argument
23 this.input = input;
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Ddotdot.h24 char *Curl_dedotdotify(const char *input);
H A Dcurl_md4.h30 void Curl_md4it(unsigned char *output, const unsigned char *input, size_t len);
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A Dxxd.pl36 open($input, '<', $fname) or die "Can't open file for read: $fname $!";
38 $text = <$input>;
39 close($input);
/macosx-10.10.1/swig-12/Lib/ocaml/
H A Dtypecheck.i11 if( !Is_block($input) ) $1 = 0;
13 switch( SWIG_Tag_val($input) ) {
21 if( !Is_block($input) ) $1 = 0;
23 switch( SWIG_Tag_val($input) ) {
31 if( !Is_block($input) ) $1 = 0;
33 switch( SWIG_Tag_val($input) ) {
41 if( !Is_block($input) ) $1 = 0;
43 switch( SWIG_Tag_val($input) ) {
54 if( !Is_block($input) ) $1 = 0;
56 switch( SWIG_Tag_val($input) ) {
[all...]
H A Dstd_complex.i18 if (PyComplex_Check($input)) {
19 $1 = std::complex<T>(PyComplex_RealAsDouble($input),
20 PyComplex_ImagAsDouble($input));
21 } else if (PyFloat_Check($input)) {
22 $1 = std::complex<T>(PyFloat_AsDouble($input), 0);
23 } else if (PyInt_Check($input)) {
24 $1 = std::complex<T>(PyInt_AsLong($input), 0);
33 if (PyComplex_Check($input)) {
34 temp = std::complex<T>(PyComplex_RealAsDouble($input),
35 PyComplex_ImagAsDouble($input));
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Dpydict-to-objcdict.py8 input = { 'a' : [1, 2, 3, 4], 'b' : 'c', 'd' : 3, 'e' : None, 'f' : [1, {'2' : 3, 'a' : 'b'}, [3, 4]], 'g' : {'h' : 'i'}, 'j' : (1, 2, 3, 'k', 'l')} variable
11 pprint.pprint(input)
13 convertedCollection = propertyListFromPythonCollection(input)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A Dpydict-to-objcdict.py8 input = { 'a' : [1, 2, 3, 4], 'b' : 'c', 'd' : 3, 'e' : None, 'f' : [1, {'2' : 3, 'a' : 'b'}, [3, 4]], 'g' : {'h' : 'i'}, 'j' : (1, 2, 3, 'k', 'l')} variable
11 pprint.pprint(input)
13 convertedCollection = propertyListFromPythonCollection(input)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Examples/Foundation/Scripts/
H A Dpydict-to-objcdict.py8 input = { 'a' : [1, 2, 3, 4], 'b' : 'c', 'd' : 3, 'e' : None, 'f' : [1, {'2' : 3, 'a' : 'b'}, [3, 4]], 'g' : {'h' : 'i'}, 'j' : (1, 2, 3, 'k', 'l')} variable
11 pprint.pprint(input)
13 convertedCollection = propertyListFromPythonCollection(input)
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DRegExp_input.js24 Description: 'Tests RegExps input property'
33 var TITLE = 'RegExp: input';
41 RegExp.input = "abcd12357efg";
43 // RegExp.input = "abcd12357efg"; RegExp.input
44 RegExp.input = "abcd12357efg";
45 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; RegExp.input",
46 "abcd12357efg", RegExp.input);
48 // RegExp.input
[all...]
/macosx-10.10.1/swig-12/Lib/guile/
H A Dports.i29 if (SWIG_ConvertPtr($input, (void**) &($1), $1_descriptor, 0) == 0) {
32 else if(!(SCM_FPORTP($input)))
33 scm_wrong_type_arg("$name", $argnum, $input);
36 if (SCM_OUTPUT_PORT_P($input))
37 scm_force_output($input);
38 fd=dup(SCM_FPORT_FDES($input));
42 SCM_OUTPUT_PORT_P($input)
43 ? (SCM_INPUT_PORT_P($input)
/macosx-10.10.1/xar-254/xar/lib/
H A Db64.h10 unsigned char* xar_from_base64(const unsigned char* input, size_t inputLength, size_t *outputLength);
/macosx-10.10.1/ruby-106/ruby/lib/rexml/dtd/
H A Ddtd.rb11 def Parser.parse( input )
12 case input
14 parse_helper input
16 parse_helper input.read
21 def Parser.parse_helper( input )
23 while input.size > 0
24 case input
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A DDSAclean.py17 input = open(sys.argv[1], 'r') variable
21 buffer = input.readline()
25 buffer = input.readline()
30 buffer = input.readline()
31 input.close()
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DCharBuffer.cpp31 : input(input_) function in namespace:antlr
33 // input.exceptions(ANTLR_USE_NAMESPACE(std)ios_base::badbit|
43 return input.get();
/macosx-10.10.1/swig-12/Lib/php/
H A Dstd_string.i30 $1 = ( Z_TYPE_PP($input) == IS_STRING ) ? 1 : 0;
34 convert_to_string_ex($input);
35 $1.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
39 convert_to_string_ex($input);
40 $result.assign(Z_STRVAL_PP($input), Z_STRLEN_PP($input));
44 $1 = ( Z_TYPE_PP($input) == IS_STRING ) ? 1 : 0;
52 ZVAL_STRINGL($input, const_cast<char*>($1_name.data()), $1_name.size(), 1);
70 convert_to_string_ex($input);
[all...]
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Duuxconv46 input=`egrep "^I" $file | cut -c3-`
47 (uux - -r -z $site!$control < $input) && (rm $file $input)
48 echo "$site!$control < $input"
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DReduceWhitespace.cpp34 CString reduceWhitespace(const CString& input) argument
38 const char* data = input.data();
40 for (unsigned i = 0; i < input.length();) {
42 while (i < input.length() && isASCIISpace(data[i]))
/macosx-10.10.1/python-89/2.6/fix/
H A Dbyte2utf16.py9 input = open(sys.argv[1], 'r') variable
12 out.write(input.read())
14 input.close()
H A Dutf162byte.py9 input = codecs.open(sys.argv[1], 'r', 'utf-16'); variable
12 out.write(input.read())
14 input.close()
/macosx-10.10.1/python-89/2.7/fix/
H A Dbyte2utf16.py9 input = open(sys.argv[1], 'r') variable
12 out.write(input.read())
14 input.close()
H A Dutf162byte.py9 input = codecs.open(sys.argv[1], 'r', 'utf-16'); variable
12 out.write(input.read())
14 input.close()
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Dreader_test.cpp122 const char* input = local
138 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
144 const char* input = local
168 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
174 const char* input = local
246 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
252 const char* input = local
336 do_parser_test< tps_reader >(input, exp_calls, exp_errors);
342 const char* input = local
392 do_parser_test< tps_reader >(input, exp_call
398 const char* input = local
459 const char* input = local
480 const char* input = local
501 const char* input = local
522 const char* input = local
545 const char* input = local
591 const char* input = local
642 const char* input = local
688 const char* input = local
714 const char* input = local
742 const char* input = local
763 const char* input = local
784 const char* input = local
805 const char* input = local
827 const char* input = local
849 const char* input = local
872 const char* input = local
895 const char* input = local
[all...]

Completed in 373 milliseconds

1234567891011>>