/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/ |
H A D | atof.c | 2 Convert a string into a floating-point double value. 19 atof(const char *string) argument 21 return (strtod(string, NULL));
|
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | lowercase.py | 6 import sys,string namespace 20 print ("'\%03o'," % ord(string.lower(the_char))), 22 print ("'\%03o'" % ord(string.lower(the_char))),
|
H A D | debug_opcodes.py | 8 import string; namespace
|
/vbox/src/VBox/GuestHost/OpenGL/packer/ |
H A D | pack_header.py | 10 import string namespace
|
H A D | packer_bbox.py | 10 import string namespace 69 if string.find( arg_type, '*' ) != -1:
|
H A D | opcodes.py | 10 import string; namespace
|
H A D | pack_swap.py | 6 import sys, string namespace 41 args = map( string.strip, line[lparen_index+1:rparen_index].split( "," ) ) 57 args = map( string.strip, line[lparen_index+1:rparen_index].split( "," ) )
|
H A D | packer.py | 8 import sys, string, re namespace 15 """Return a string to write a variable to the packing buffer.""" 254 if string.find( return_type, '*' ) == -1:
|
/vbox/src/VBox/GuestHost/OpenGL/spu_loader/ |
H A D | dispatchheader.py | 8 import sys, string namespace
|
/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/ |
H A D | unpack_header.py | 9 import string; namespace
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/readline/ |
H A D | readline.h | 14 /** Persistent copy of string */ 15 char *string; member in struct:readline_history_entry 16 /** Temporary copy of string
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/ |
H A D | Main.c | 29 #include <string.h> 77 size_t AVsz; /* Size of a single nArgv string */ 80 char *string; local 112 string = gMD->NCmdLine; 114 nArgv[count] = string; 115 AVsz = wcstombs(string, Argv[count], nArgvSize); 116 string[AVsz] = 0; /* NULL terminate the argument */ 118 string += AVsz + 1;
|
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/ |
H A D | state_isenabled.py | 6 import sys, re, string namespace 22 fields = string.split( match.group(3) ) 32 fields = string.split( match.group(4) )
|
H A D | dump_gen.py | 5 import sys, re, string namespace 20 fields = string.split( match.group(3) ) 30 fields = string.split( match.group(4) )
|
H A D | state_get.py | 6 import sys, re, string namespace 23 fields = string.split( match.group(3) ) 35 fields = string.split( match.group(4) ) 212 command = string.split(field, '%')
|
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/ |
H A D | server_dispatch.py | 6 import sys, string, re namespace 53 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:] 58 name = string.lower(m.group(1)[:1] ) + m.group(1)[1:] 63 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:] 76 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:] 81 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:] 86 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:] 93 name = string.lower( m.group(1)[:1] ) + m.group(1)[1:]
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | editbox.h | 17 /** Editable string */ 18 struct edit_string string; member in struct:edit_box 58 return edit_string ( &box->string, key );
|
H A D | editstring.h | 12 /** An editable string */ 14 /** Buffer for string */ 25 /** Start of modified portion of string */ 27 /** End of modified portion of string */ 32 * Initialise editable string 34 * @v string Editable string 35 * @v buf Buffer for string 38 static inline void init_editstring ( struct edit_string *string, char *buf, argument 40 string [all...] |
/vbox/src/libs/libxml2-2.6.31/python/tests/ |
H A D | reader2.py | 7 import string namespace 33 if string.find(file, "t8") != -1:
|
H A D | thread2.py | 2 import string, sys, time namespace
|
/vbox/src/VBox/Devices/PC/ipxe/src/hci/ |
H A D | editstring.c | 22 #include <string.h> 32 static void insert_delete ( struct edit_string *string, size_t delete_len, 35 static void insert_character ( struct edit_string *string, 37 static void delete_character ( struct edit_string *string ) __nonnull; 38 static void backspace ( struct edit_string *string ) __nonnull; 39 static void kill_sol ( struct edit_string *string ) __nonnull; 40 static void kill_eol ( struct edit_string *string ) __nonnull; 43 * Insert and/or delete text within an editable string 45 * @v string Editable string 49 insert_delete( struct edit_string *string, size_t delete_len, const char *insert_text ) argument 85 insert_character( struct edit_string *string, unsigned int character ) argument 138 replace_string( struct edit_string *string, const char *replacement ) argument 160 edit_string( struct edit_string *string, int key ) argument [all...] |
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/ |
H A D | utils.h | 39 const char * string; member in struct:dri_debug_control 49 * Packed string describing the parameter signature and the entry-point 53 * function are packed into a single string. The substrings are 54 * separated by NUL characters. The whole string is terminated by
|
/vbox/src/libs/libxml2-2.6.31/ |
H A D | regressions.py | 2 import glob, os, string, sys, thread, time namespace 31 # Within the two sets of data, lines may begin with a path string. If so, the 42 j = string.find(res[i],base1) 44 col = string.find(res[i],':') 46 start = string.rfind(res[i][:col], '/') 51 j = string.find(exp[i],base2) 53 col = string.find(exp[i],':') 55 start = string.rfind(exp[i][:col], '/') 68 # print string.strip(line) 80 if string [all...] |
H A D | check-xinclude-test-suite.py | 5 import string namespace 34 if string.find(str, "error:") >= 0: 88 output = test.xpathEval('string(output)') 157 content = string.strip(test.content)
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/ |
H A D | Environs.c | 127 /** If string is a null pointer, the system function determines whether the 128 host environment has a command processor. If string is not a null pointer, 129 the system function passes the string pointed to by string to that command 138 by the executed command string. 139 @retval 0 If string is NULL, 0 means a command processor 141 @retval 1 If string is NULL, 1 means a command processor 145 system(const char *string) argument 151 if( string == NULL) { 154 (void)AsciiStrToUnicodeStr( string, gM [all...] |