Searched defs:string (Results 51 - 75 of 151) sorted by relevance

1234567

/vbox/src/libs/libxml2-2.6.31/
H A Dcheck-relaxng-test-suite.py5 import string namespace
48 if string.find(URL, '#') != -1:
49 URL = URL[0:string.find(URL, '#')]
207 # resource handling: keep a dictionary of URL->string mappings
265 sections = node.xpathEval('string(section)')
H A Dcheck-relaxng-test-suite2.py5 import string namespace
221 # resource handling: keep a dictionary of URL->string mappings
279 sections = node.xpathEval('string(section)')
H A Dcheck-xml-test-suite.py5 import string namespace
348 content = string.strip(test.content)
366 string.find(profile, "IBM XML Conformance Test Suite - Production") < 0:
H A Dcheck-xsddata-test-suite.py5 import string namespace
219 # resource handling: keep a dictionary of URL->string mappings
277 sections = node.xpathEval('string(section)')
H A DgenUnicode.py13 import string namespace
34 (blockfile, catfile) = string.split(sources)
52 line = string.strip(line)
56 fields = string.split(line, ';')
57 range = string.strip(fields[0])
58 (start, end) = string.split(range, "..")
59 name = string.strip(fields[1])
60 name = string.replace(name, ' ', '')
74 alias = string.split(block,':')
75 alist = string
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcnetdb.cpp47 #include <string.h>
79 PRStatus RCNetAddr::FromString(const char* string) argument
80 { return PR_StringToNetAddr(string, &address); }
126 PRStatus RCNetAddr::ToString(char *string, PRSize size) const argument
127 { return PR_NetAddrToString(&address, string, size); }
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dtpd.cpp47 #include <string.h>
79 char *string; member in class:MyPrivateData
249 (NULL != string) ? string : "NULL");
255 string = NULL;
261 string = data;
267 string = him.string;
/vbox/src/libs/xpcom18a4/python/test/
H A Dtest_misc.py43 import string namespace
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DBuildEngine.py20 import string namespace
34 # @retval string The name of macro
43 # @retval string The name of macro
187 # @retval string
277 File = string.Template(str(File)).safe_substitute(BuildRulePlaceholderDict)
278 File = string.Template(str(File)).safe_substitute(BuildRulePlaceholderDict)
287 CommandString = string.Template(CommandString).safe_substitute(BuildRulePlaceholderDict)
288 CommandString = string.Template(CommandString).safe_substitute(BuildRulePlaceholderDict)
326 # @param Content The string list of build rules in a well defined format
341 EdkLogger.error("build", PARAMETER_MISSING, ExtraData="No rule file or string give
[all...]
H A DGenMake.py18 import string namespace
82 ## Fixed header string for makefile
97 ## Header string for each type of build file
187 ## Return a list of directory creation command string
196 ## Return a list of directory removal command string
419 self.FileBuildTargetList = [] # [(src, target string)]
420 self.BuildTargetList = [] # [target string]
541 # Edk modules need <BaseName>StrDefs.h for string ID
651 # Convert target description object to target string in makefile
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DString.py2 # This file is used to define common string related functions used in parsing process
20 import string namespace
32 # Get a value list from a string with multiple values splited with SplitTag
36 # @param String: The input string to be splitted
40 # @retval list() A list for splitted string
51 # Found a splitter not in a string, split it
77 # Get a value list from a string with multiple values splited with SplitString
81 # @param String: The input string to be splitted
85 # @retval list() A list for splitted string
107 # Parse a string wit
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dexec.c22 #include <string.h>
336 * @ret string Concatenated arguments
338 * The returned string is allocated with malloc(). The caller is
339 * responsible for eventually free()ing this string.
344 char *string; local
347 /* Calculate total string length */
352 /* Allocate string */
353 string = zalloc ( len );
354 if ( ! string )
357 /* Populate string */
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_glsl.c29 void SERVER_DISPATCH_APIENTRY crServerDispatchShaderSource(GLuint shader, GLsizei count, const char ** string, const GLint * length) argument
35 cr_server.head_spu->dispatch_table.ShaderSource(crStateGetShaderHWID(shader), count, string, length); local
H A Dserver_projmatrix.c138 * In this case, look at the Cg program code for a string like
291 crServerDispatchProgramStringARB(GLenum target, GLenum format, GLsizei len, const GLvoid *string) argument
295 /* scan the program string looking for 'vertprog_projection'
304 varPos = crStrstr((const char *) string, cr_server.vpProjectionMatrixVariable);
320 crWarning("Didn't find %s parameter in vertex program string",
327 crStateProgramStringARB(target, format, len, string);
328 cr_server.head_spu->dispatch_table.ProgramStringARB(target, format, len, string);
333 crServerDispatchLoadProgramNV(GLenum target, GLuint id, GLsizei len, const GLubyte *string) argument
337 /* scan the program string looking for 'vertprog_projection'
346 varPos = crStrstr((const char *) string, cr_serve
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/
H A Ddns.c26 #include <string.h>
197 * @v string Name as a NUL-terminated string
203 static char * dns_qualify_name ( const char *string ) {
207 if ( ( ! localdomain ) || ( strchr ( string, '.' ) != 0 ) )
208 return strdup ( string );
211 asprintf ( &fqdn, "%s.%s", string, localdomain );
216 * Convert a standard NUL-terminated string to a DNS name
218 * @v string Name as a NUL-terminated string
224 dns_make_name( const char *string, char *buf ) argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/glapi_parser/
H A Dapiutil.py8 import sys, string, re namespace
66 tokens = string.split(line)
80 record.returnType = string.join(tokens[1:], ' ')
84 type = string.join(tokens[2:], ' ')
385 return "OPENGL_VERSION_" + string.replace(cat, ".", "_")
388 return string.replace(cat, "GL_", "")
520 if string.find(dataType, "*") == -1:
530 t = string.split(pointerType, ' ')
540 return "CR_" + string.upper(funcName) + "_OPCODE"
545 return "CR_" + string
[all...]
/vbox/src/VBox/GuestHost/OpenGL/include/state/
H A Dcr_program.h63 const GLubyte *string; member in struct:__anon16227
/vbox/src/libs/libxml2-2.6.31/python/
H A Dgenerator.py11 import string namespace
63 # <string> entity
746 func = string.lower(func[0:1]) + func[1:]
749 func = string.lower(func[0:1]) + func[1:]
752 func = string.lower(func[0:1]) + func[1:]
755 func = string.lower(func[0:1]) + func[1:]
758 func = string.lower(func[0:1]) + func[1:]
761 func = string.lower(func[0:1]) + func[1:]
764 func = string.lower(func[0:1]) + func[1:]
767 func = string
[all...]
/vbox/src/libs/xpcom18a4/python/
H A Dxpt.py70 import string, sys namespace
254 method_desc = string.join(map(desc, self.params), ', ')
257 i = string.find(return_desc, 'retval ')
321 return string.join(parts)
438 T_CHAR_STR : ("reserved", "string"),
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCRT.cpp43 * Much as I hate to do it, we were using string compares wrong.
49 * In general, if you pass a null into any of these string compare
138 char* nsCRT::strtok(char* string, const char* delims, char* *newStr) argument
140 NS_ASSERTION(string, "Unlike regular strtok, the first argument cannot be null.");
145 char* str = string;
189 * Compare unichar string ptrs, stopping at the 1st null
219 * Compare unichar string ptrs, stopping at the 1st null or nth char.
268 * string being hashed; and (2) the narrow and wide and `buffer' versions here
365 * on an already UTF-8 string.
473 * Determine whether the given string consist
[all...]
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsEscape.cpp206 nsEscapeHTML(const char * string) argument
209 char *rv = (char *) nsMemory::Alloc(strlen(string) * 6 + 1);
214 for(; *string != '\0'; string++)
216 if(*string == '<')
223 else if(*string == '>')
230 else if(*string == '&')
238 else if (*string == '"')
247 else if (*string == '\'')
257 *ptr++ = *string;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A Dc.py17 import string namespace
36 DirString = string.join(skipList, '|')
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_send.c107 #include <string.h>
136 # define Aerror(file, string, error, address) /*empty*/
137 # define Perror(file, string, error) /*empty*/
148 char *string,
157 string,
169 char *string,
177 string, strerror(error));
146 Aerror( FILE *file, char *string, int error, struct sockaddr_in address ) argument
167 Perror( FILE *file, char *string, int error ) argument
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dmultiboot.h134 uint32_t string; member in struct:multiboot_module
/vbox/src/VBox/Main/include/
H A DMatching.h22 #include <VBox/com/string.h>
51 * string if #isValid() is false. Positions are zero-based.
115 * The string format is: "int:(<m>|([<m>]-[<n>]))|(<m>|([<m>]-[<n>]))+"
228 // an empty string (contains only spaces after "int:")
269 * The string format is: "true|false|yes|no|1|0" or an empty string (any match).
352 * The string format is: "rx:<regexp>" or "<string>"
353 * where <regexp> is a valid regexp and <string> is the exact match.
359 * This function is used to get the string representatio
512 const Bstr& string() const { return mString; } function in class:matching::Matchable
[all...]

Completed in 113 milliseconds

1234567