Searched +defs:val +defs:output (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/RDP/client-1.8.3/
H A Dlspci.c48 static void lspci_send(const char *output);
51 /* Handle one line of output from the lspci subprocess */
55 const char *val; local
60 val = line + sizeof("Class:");
62 val += strspn(val, " \t") + sizeof("Class");
63 current_device.klass = strtol(val, NULL, 16);
67 val = line + sizeof("Vendor:");
68 current_device.vendor = strtol(val, NULL, 16);
72 val
170 lspci_send(const char *output) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dstack.c83 PRFileDesc *output; variable
128 output = PR_GetSpecialFD(PR_StandardOutput);
149 PR_fprintf(output,"%s: thread_cnt = %d data_cnt = %d\n", argv[0],
178 PR_fprintf(output,"%s: created thread = 0x%x\n", argv[0],
227 PR_fprintf(output, "%s successful\n", argv[0]);
228 PR_fprintf(output, "\t\tsum = 0x%x, expected = 0x%x\n", sum,
232 PR_fprintf(output, "%s failed: sum = 0x%x, expected = 0x%x\n",
241 PRInt32 val, cnt, index, loops; local
247 val = arg->initial_data_value;
261 PR_fprintf(output,
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dzbin.c138 static int alloc_output_file ( size_t max_len, struct output_file *output ) {
139 output->len = 0;
140 output->max_len = ( max_len );
141 output->buf = malloc ( max_len );
142 if ( ! output->buf ) {
143 fprintf ( stderr, "Could not allocate %zd bytes for output\n",
148 memset ( output->buf, 0xff, sizeof ( output->buf ) );
150 memset ( output->buf, 0xff, max_len );
156 struct output_file *output,
155 process_zinfo_copy( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
185 process_zinfo_pack( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
226 process_zinfo_payl( struct input_file *input __attribute__ (( unused )), struct output_file *output, union zinfo_record *zinfo ) argument
241 process_zinfo_add( struct input_file *input __attribute__ (( unused )), struct output_file *output, size_t len, struct zinfo_add *add, size_t datasize ) argument
251 signed long val; local
323 process_zinfo_addb( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
330 process_zinfo_addw( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
337 process_zinfo_addl( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
344 process_zinfo_adhb( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
351 process_zinfo_adhw( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
358 process_zinfo_adhl( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
384 process_zinfo( struct input_file *input, struct output_file *output, union zinfo_record *zinfo ) argument
415 struct output_file output; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_debug.c573 unsigned long val; local
579 val = mantissa * poweroften[exponent];
581 (void) sprintf(retbuf, "%ld.%.2ld", val/100, val%100);
977 static char output[15]; /* YYYYMMDDHHMMSS and null */ local
984 sprintf(output, "%04d%02d%02d%02d%02d%02d",
987 return (output);
/vbox/src/libs/libxml2-2.6.31/
H A Dnanoftp.c534 int val = 0; local
538 val = val * 10 + (*buf - '0');
543 val = val * 10 + (*buf - '0');
548 val = val * 10 + (*buf - '0');
553 return(-val);
554 return(val);
2067 FILE *output; local
[all...]
H A Dencoding.c93 xmlEncodingErr(xmlParserErrors error, const char *msg, const char *val) argument
97 NULL, 0, val, NULL, NULL, 0, 0, msg, val);
1250 * @output: the xmlCharEncodingOutputFunc to write that encoding
1259 xmlCharEncodingOutputFunc output) {
1303 handler->output = output;
1632 enc->output = NULL;
1686 * -3 if there the last byte can't form a single output char.
1742 * @out: an xmlBuffer for the output
1257 xmlNewCharEncodingHandler(const char *name, xmlCharEncodingInputFunc input, xmlCharEncodingOutputFunc output) argument
1948 int output = 0; local
[all...]
H A Dxmlregexp.c933 xmlRegPrintAtomType(FILE *output, xmlRegAtomType type) { argument
936 fprintf(output, "epsilon "); break;
938 fprintf(output, "charval "); break;
940 fprintf(output, "ranges "); break;
942 fprintf(output, "subexpr "); break;
944 fprintf(output, "string "); break;
946 fprintf(output, "anychar "); break;
948 fprintf(output, "anyspace "); break;
950 fprintf(output, "notspace "); break;
952 fprintf(output, "initnam
1045 xmlRegPrintQuantType(FILE *output, xmlRegQuantType type) argument
1066 xmlRegPrintRange(FILE *output, xmlRegRangePtr range) argument
1075 xmlRegPrintAtom(FILE *output, xmlRegAtomPtr atom) argument
1104 xmlRegPrintTrans(FILE *output, xmlRegTransPtr trans) argument
1138 xmlRegPrintState(FILE *output, xmlRegStatePtr state) argument
1159 xmlRegPrintCtxt(FILE *output, xmlRegParserCtxtPtr ctxt) argument
5389 xmlRegexpPrint(FILE *output, xmlRegexpPtr regexp) argument
7842 const xmlChar *val; local
[all...]
H A Drelaxng.c602 * @val: the facet value
612 const xmlChar * val,
2463 * @val: the facet value
2474 const xmlChar * val, const xmlChar * strval,
2521 facet->value = val;
3553 void *val = NULL; local
3556 lib->check(lib->data, def->name, def->value, &val, node);
3562 if (val != NULL)
3563 def->attrs = val;
5161 xmlChar *val; local
2472 xmlRelaxNGSchemaFacetCheck(void *data ATTRIBUTE_UNUSED, const xmlChar * type, const xmlChar * facetname, const xmlChar * val, const xmlChar * strval, void *value) argument
6137 xmlRelaxNGContentType ret, tmp, val = XML_RELAXNG_CONTENT_EMPTY; local
6823 xmlChar *val; local
7555 xmlRelaxNGDumpDefines(FILE * output, xmlRelaxNGDefinePtr defines) argument
7571 xmlRelaxNGDumpDefine(FILE * output, xmlRelaxNGDefinePtr define) argument
7688 xmlRelaxNGDumpGrammar(FILE * output, xmlRelaxNGGrammarPtr grammar, int top) argument
7728 xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema) argument
7759 xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema) argument
8680 xmlChar *oldvalue, *oldend, *val, *cur; local
[all...]
H A Dxpath.c80 * If defined, this will optimize expressions like "key('foo', 'val')[b][1]"
140 * @val: a double value
149 xmlXPathIsNaN(double val) { argument
150 return(trio_isnan(val));
155 * @val: a double value
164 xmlXPathIsInf(double val) { argument
165 return(trio_isinf(val));
172 * @val: a double value
181 xmlXPathGetSign(double val) { argument
182 return(trio_signbit(val));
875 xmlXPathDebugDumpNode(FILE *output, xmlNodePtr cur, int depth) argument
899 xmlXPathDebugDumpNodeList(FILE *output, xmlNodePtr cur, int depth) argument
922 xmlXPathDebugDumpNodeSet(FILE *output, xmlNodeSetPtr cur, int depth) argument
948 xmlXPathDebugDumpValueTree(FILE *output, xmlNodeSetPtr cur, int depth) argument
969 xmlXPathDebugDumpLocationSet(FILE *output, xmlLocationSetPtr cur, int depth) argument
1001 xmlXPathDebugDumpObject(FILE *output, xmlXPathObjectPtr cur, int depth) argument
1106 xmlXPathDebugDumpStepOp(FILE *output, xmlXPathCompExprPtr comp, xmlXPathStepOpPtr op, int depth) argument
1291 xmlXPathDebugDumpCompExpr(FILE *output, xmlXPathCompExprPtr comp, int depth) argument
1922 xmlXPathCacheWrapNodeSet(xmlXPathContextPtr ctxt, xmlNodeSetPtr val) argument
1959 xmlXPathCacheWrapString(xmlXPathContextPtr ctxt, xmlChar *val) argument
2011 xmlXPathCacheNewNodeSet(xmlXPathContextPtr ctxt, xmlNodePtr val) argument
2075 xmlXPathCacheNewCString(xmlXPathContextPtr ctxt, const char *val) argument
2124 xmlXPathCacheNewString(xmlXPathContextPtr ctxt, const xmlChar *val) argument
2178 xmlXPathCacheNewBoolean(xmlXPathContextPtr ctxt, int val) argument
2226 xmlXPathCacheNewFloat(xmlXPathContextPtr ctxt, double val) argument
2276 xmlXPathCacheConvertString(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2324 xmlXPathCacheObjectCopy(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2359 xmlXPathCacheConvertBoolean(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
2383 xmlXPathCacheConvertNumber(xmlXPathContextPtr ctxt, xmlXPathObjectPtr val) argument
3424 xmlXPathNodeSetCreate(xmlNodePtr val) argument
3496 xmlXPathNodeSetContains(xmlNodeSetPtr cur, xmlNodePtr val) argument
3589 xmlXPathNodeSetAdd(xmlNodeSetPtr cur, xmlNodePtr val) argument
3649 xmlXPathNodeSetAddUnique(xmlNodeSetPtr cur, xmlNodePtr val) argument
4054 xmlXPathNodeSetDel(xmlNodeSetPtr cur, xmlNodePtr val) argument
4091 xmlXPathNodeSetRemove(xmlNodeSetPtr cur, int val) argument
4217 xmlGenericErrorContextNodeSet(FILE *output, xmlNodeSetPtr obj) argument
4259 xmlXPathNewNodeSet(xmlNodePtr val) argument
4288 xmlXPathNewValueTree(xmlNodePtr val) argument
4317 xmlXPathNewNodeSetList(xmlNodeSetPtr val) argument
4344 xmlXPathWrapNodeSet(xmlNodeSetPtr val) argument
5127 xmlXPathNewFloat(double val) argument
5153 xmlXPathNewBoolean(int val) argument
5179 xmlXPathNewString(const xmlChar *val) argument
5208 xmlXPathWrapString(xmlChar *val) argument
5234 xmlXPathNewCString(const char *val) argument
5260 xmlXPathWrapCString(char * val) argument
5273 xmlXPathWrapExternal(void *val) argument
5299 xmlXPathObjectCopy(xmlXPathObjectPtr val) argument
5579 xmlXPathCastBooleanToString(int val) argument
5597 xmlXPathCastNumberToString(double val) argument
5666 xmlXPathCastToString(xmlXPathObjectPtr val) argument
5712 xmlXPathConvertString(xmlXPathObjectPtr val) argument
5758 xmlXPathCastBooleanToNumber(int val) argument
5773 xmlXPathCastStringToNumber(const xmlChar * val) argument
5831 xmlXPathCastToNumber(xmlXPathObjectPtr val) argument
5877 xmlXPathConvertNumber(xmlXPathObjectPtr val) argument
5898 xmlXPathCastNumberToBoolean(double val) argument
5913 xmlXPathCastStringToBoolean(const xmlChar *val) argument
5943 xmlXPathCastToBoolean(xmlXPathObjectPtr val) argument
5990 xmlXPathConvertBoolean(xmlXPathObjectPtr val) argument
6591 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict, xmlXPathObjectPtr arg, xmlXPathObjectPtr val) argument
6695 xmlXPathObjectPtr val; local
7382 double val; local
7405 double val; local
7428 double val; local
7451 double val; local
9435 xmlXPathObjectPtr val = NULL; local
9674 unsigned int val; local
13354 xmlXPathObjectPtr val; local
13502 xmlXPathObjectPtr val; local
[all...]
H A Dxmlschemas.c772 xmlSchemaValPtr val; member in struct:_xmlSchemaPSVIIDCKey
886 xmlSchemaValPtr val; /* the pre-computed value if any */ member in struct:_xmlSchemaNodeInfo
945 xmlSchemaValPtr val; /* the pre-computed value if any */ member in struct:_xmlSchemaAttrInfo
1465 * @val: the precomputed value
1476 xmlSchemaGetCanonValueWhtspExt(xmlSchemaValPtr val, argument
1485 if ((retValue == NULL) || (val == NULL))
1487 list = xmlSchemaValueGetNext(val) ? 1 : 0;
1491 valType = xmlSchemaGetValType(val);
1496 value = xmlSchemaValueGetAsString(val);
1507 if (xmlSchemaGetCanonValue(val,
4156 xmlSchemaElementDump(xmlSchemaElementPtr elem, FILE * output, const xmlChar * name ATTRIBUTE_UNUSED, const xmlChar * namespace ATTRIBUTE_UNUSED, const xmlChar * context ATTRIBUTE_UNUSED) argument
4241 xmlSchemaAnnotDump(FILE * output, xmlSchemaAnnotPtr annot) argument
4265 xmlSchemaContentModelDump(xmlSchemaParticlePtr particle, FILE * output, int depth) argument
4338 xmlSchemaAttrUsesDump(xmlSchemaItemListPtr uses, FILE * output) argument
4382 xmlSchemaTypeDump(xmlSchemaTypePtr type, FILE * output) argument
4483 xmlSchemaDump(FILE * output, xmlSchemaPtr schema) argument
4517 xmlSchemaDebugDumpIDCTable(FILE * output, const xmlChar *namespaceName, const xmlChar *localName, xmlSchemaPSVIIDCBindingPtr bind) argument
4652 xmlChar *val; local
4683 xmlChar *val; local
5999 const xmlChar *val, *cur; local
6064 const xmlChar *val, *cur; local
6166 const xmlChar *val; local
6324 const xmlChar *val; local
9617 const xmlChar *val; local
13932 xmlSchemaGetEffectiveValueConstraint(xmlSchemaAttributeUsePtr attruse, int *fixed, const xmlChar **value, xmlSchemaValPtr *val) argument
15705 xmlSchemaParseCheckCOSValidDefault(xmlSchemaParserCtxtPtr pctxt, xmlNodePtr node, xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val) argument
21771 xmlSchemaValidateNotation(xmlSchemaValidCtxtPtr vctxt, xmlSchemaPtr schema, xmlNodePtr node, const xmlChar *value, xmlSchemaValPtr *val, int valNeeded) argument
24048 xmlSchemaValidateFacets(xmlSchemaAbstractCtxtPtr actxt, xmlNodePtr node, xmlSchemaTypePtr type, xmlSchemaValType valType, const xmlChar * value, xmlSchemaValPtr val, unsigned long length, int fireErrors) argument
24297 xmlSchemaValidateQName(xmlSchemaValidCtxtPtr vctxt, const xmlChar *value, xmlSchemaValPtr *val, int valNeeded) argument
24373 xmlSchemaValPtr val = NULL; local
25778 xmlSchemaCheckCOSValidDefault(xmlSchemaValidCtxtPtr vctxt, const xmlChar *value, xmlSchemaValPtr *val) argument
[all...]
H A Dtestapi.c223 static void des_void_ptr(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
233 static void des_const_void_ptr(int no ATTRIBUTE_UNUSED, const void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
244 static void des_userdata(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
258 static void des_int(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
271 static void des_parseroptions(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
285 static void des_long(int no ATTRIBUTE_UNUSED, long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
298 static void des_xmlChar(int no ATTRIBUTE_UNUSED, xmlChar val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
310 static void des_unsigned_int(int no ATTRIBUTE_UNUSED, unsigned int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
322 static void des_unsigned_long(int no ATTRIBUTE_UNUSED, unsigned long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
336 static void des_double(int no ATTRIBUTE_UNUSED, double val ATTRIBUTE_UNUSE
385 des_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) argument
393 des_debug_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) argument
452 des_xmlParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlParserCtxtPtr val, int nr ATTRIBUTE_UNUSED) argument
474 des_xmlValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlValidCtxtPtr val, int nr ATTRIBUTE_UNUSED) argument
493 des_xmlParserInputBufferPtr(int no ATTRIBUTE_UNUSED, xmlParserInputBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
503 des_xmlDocPtr(int no ATTRIBUTE_UNUSED, xmlDocPtr val, int nr ATTRIBUTE_UNUSED) argument
522 des_xmlDictPtr(int no ATTRIBUTE_UNUSED, xmlDictPtr val, int nr ATTRIBUTE_UNUSED) argument
534 des_xmlNodePtr(int no, xmlNodePtr val, int nr ATTRIBUTE_UNUSED) argument
550 des_xmlDtdPtr(int no, xmlDtdPtr val, int nr ATTRIBUTE_UNUSED) argument
582 des_xmlTextWriterPtr(int no ATTRIBUTE_UNUSED, xmlTextWriterPtr val, int nr ATTRIBUTE_UNUSED) argument
595 des_xmlTextReaderPtr(int no ATTRIBUTE_UNUSED, xmlTextReaderPtr val, int nr ATTRIBUTE_UNUSED) argument
606 des_xmlBufferPtr(int no ATTRIBUTE_UNUSED, xmlBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
617 des_xmlListPtr(int no ATTRIBUTE_UNUSED, xmlListPtr val, int nr ATTRIBUTE_UNUSED) argument
628 des_xmlHashTablePtr(int no ATTRIBUTE_UNUSED, xmlHashTablePtr val, int nr ATTRIBUTE_UNUSED) argument
645 des_xmlXPathObjectPtr(int no ATTRIBUTE_UNUSED, xmlXPathObjectPtr val, int nr ATTRIBUTE_UNUSED) argument
658 des_xmlOutputBufferPtr(int no ATTRIBUTE_UNUSED, xmlOutputBufferPtr val, int nr ATTRIBUTE_UNUSED) argument
673 des_xmlNanoFTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) argument
688 des_xmlNanoHTTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) argument
758 desret_xmlChar_ptr(xmlChar *val) argument
762 desret_xmlDocPtr(xmlDocPtr val) argument
766 desret_xmlDictPtr(xmlDictPtr val) argument
770 desret_xmlOutputBufferPtr(xmlOutputBufferPtr val) argument
775 desret_xmlTextReaderPtr(xmlTextReaderPtr val) argument
779 desret_xmlNodePtr(xmlNodePtr val) argument
785 desret_xmlAttrPtr(xmlAttrPtr val) argument
791 desret_xmlEntityPtr(xmlEntityPtr val) argument
797 desret_xmlElementPtr(xmlElementPtr val) argument
802 desret_xmlAttributePtr(xmlAttributePtr val) argument
809 desret_xmlDtdPtr(xmlDtdPtr val) argument
813 desret_xmlXPathObjectPtr(xmlXPathObjectPtr val) argument
816 desret_xmlNodeSetPtr(xmlNodeSetPtr val) argument
820 desret_xmlParserCtxtPtr(xmlParserCtxtPtr val) argument
823 desret_xmlParserInputBufferPtr(xmlParserInputBufferPtr val) argument
826 desret_xmlParserInputPtr(xmlParserInputPtr val) argument
830 desret_xmlTextWriterPtr(xmlTextWriterPtr val) argument
834 desret_xmlBufferPtr(xmlBufferPtr val) argument
838 desret_xmlSchemaParserCtxtPtr(xmlSchemaParserCtxtPtr val) argument
843 desret_xmlRelaxNGParserCtxtPtr(xmlRelaxNGParserCtxtPtr val) argument
852 desret_xmlNanoHTTPCtxtPtr(void *val) argument
857 desret_xmlNanoFTPCtxtPtr(void *val) argument
903 desret_htmlDocPtr(htmlDocPtr val) argument
917 desret_htmlParserCtxtPtr(htmlParserCtxtPtr val) argument
956 des_xmlElementContentPtr(int no ATTRIBUTE_UNUSED, xmlElementContentPtr val, int nr ATTRIBUTE_UNUSED) argument
960 desret_xmlElementContentPtr(xmlElementContentPtr val) argument
2029 int val; /* int 0 or 1 */ local
6595 unsigned int val; /* character to be validated */ local
6944 FILE * output; /* the FILE * for the output */ local
6984 FILE * output; /* the FILE * for the output */ local
7030 FILE * output; /* the FILE * for the output */ local
7076 FILE * output; /* the FILE * for the output */ local
7115 FILE * output; /* the FILE * for the output */ local
7154 FILE * output; /* the FILE * for the output */ local
7193 FILE * output; /* the FILE * for the output */ local
7232 FILE * output; /* the FILE * for the output */ local
7278 FILE * output; /* the FILE * for the output */ local
7324 FILE * output; /* the FILE * for the output */ local
7370 FILE * output; /* the FILE * for the output */ local
7443 FILE * output; /* the FILE * for the output */ local
13275 int val; /* int 0 or 1 */ local
13307 int val; /* int 0 or 1 */ local
14358 int val; /* int 0 or 1 */ local
15292 int val; /* int 0 or 1 */ local
15712 int val; /* the char value */ local
15756 int val; /* the char value */ local
17204 FILE * output; /* the file output */ local
17243 FILE * output; /* the file output */ local
22471 int val; /* the xml:space value ("0": default, 1: "preserve") */ local
33288 FILE * output; /* the file for the output debug */ local
33592 FILE * output; /* the file output */ local
34638 xmlSchemaValPtr val; /* the precomputed value */ local
34679 xmlSchemaValPtr val; /* the precomputed value */ local
34802 xmlSchemaValPtr val; /* a schemas value */ local
34948 xmlSchemaValPtr * val; /* the return computed value */ local
35003 xmlSchemaValPtr * val; /* the return computed value */ local
35060 xmlSchemaValPtr val; /* the precomputed value */ local
35117 xmlSchemaValPtr val; /* the precomputed value */ local
35184 xmlSchemaValPtr val; /* the precomputed value */ local
35246 xmlSchemaValPtr val; /* the precomputed value */ local
35368 xmlSchemaValPtr * val; /* the return computed value */ local
35453 xmlSchemaValPtr val; /* the value */ local
35487 xmlSchemaValPtr val; /* the value */ local
35894 xmlChar * val; /* the xmlChar to search (needle) */ local
35933 xmlChar val; /* the xmlChar to search */ local
36252 xmlChar * val; /* the xmlChar to search (needle) */ local
45156 int val; /* a boolean */ local
45190 int val; /* a boolean */ local
45394 double val; /* a number */ local
45428 double val; /* a number */ local
45462 xmlChar * val; /* a string */ local
45496 xmlChar * val; /* a string */ local
45530 xmlXPathObjectPtr val; /* an XPath object */ local
45564 xmlXPathObjectPtr val; /* an XPath object */ local
45598 xmlXPathObjectPtr val; /* an XPath object */ local
45840 xmlXPathObjectPtr val; /* an XPath object */ local
45875 xmlXPathObjectPtr val; /* an XPath object */ local
45910 xmlXPathObjectPtr val; /* an XPath object */ local
46103 double val; /* a double value */ local
46137 double val; /* a double value */ local
46181 xmlNodePtr val; /* an initial xmlNodePtr, or NULL */ local
46215 xmlXPathObjectPtr val; /* the original object */ local
46685 FILE * output; /* the FILE * for the output */ local
46731 FILE * output; /* the FILE * to dump the output */ local
47620 int val; /* the boolean value */ local
47654 char * val; /* the char * value */ local
47688 double val; /* the double value */ local
47722 xmlNodePtr val; /* the NodePtr value */ local
47756 xmlNodeSetPtr val; /* an existing NodeSet */ local
47800 xmlChar * val; /* the xmlChar * value */ local
48450 xmlNodePtr val; /* a new xmlNodePtr */ local
48535 xmlNodePtr val; /* a new xmlNodePtr */ local
48575 xmlNodePtr val; /* the node */ local
48615 xmlNodePtr val; /* an xmlNodePtr */ local
48695 int val; /* the index to remove */ local
50326 char * val; /* the char * value */ local
50360 void * val; /* the user data */ local
50394 xmlNodeSetPtr val; /* the NodePtr value */ local
50722 xmlXPathObjectPtr val; /* a new xmlXPathObjectPtr */ local
50771 xmlXPathObjectPtr val; /* an xmlXPathObjectPtr */ local
50820 int val; /* the index to remove */ local
51276 xmlLocationSetPtr val; /* the LocationSet value */ local
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-api.jar ... Object implements java.security.PrivilegedAction { final synthetic Class val$c void " href="/source/s?defs= ...
H A Djaxb-impl.jar ... xml/bind/v2/runtime/ com/sun/xml/bind/v2/runtime/output/ com/sun/xml/bind/v2/runtime/property/ com/sun/xml
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...
H A Djaxws-tools.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/istack/ ...
H A Djaxb-xjc.jar ... .CharsetEncoder encoder final synthetic java.io.OutputStreamWriter val$bw final synthetic com.sun.codemodel. ...
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c67 xmlChar * val; local
69 if (!PyArg_ParseTuple(args, (char *)"zz:xmlStrstr", &str, &val))
72 c_retval = xmlStrstr(str, val);
146 FILE * output; local
154 output = (FILE *) PyFile_Get(pyobj_output);
157 xmlDebugDumpNodeList(output, node, depth);
550 int val; local
552 if (!PyArg_ParseTuple(args, (char *)"izi:xmlCopyChar", &len, &out, &val))
555 c_retval = xmlCopyChar(len, out, val);
1347 int val; local
1559 int val; local
1691 xmlNodePtr val; local
2631 FILE * output; local
2718 FILE * output; local
2758 xmlChar * val; local
3146 double val; local
3300 FILE * output; local
3417 double val; local
3763 xmlChar val; local
3793 double val; local
3983 FILE * output; local
4002 FILE * output; local
4885 int val; local
5288 xmlChar * val; local
5304 char * val; local
5724 int val; local
6459 FILE * output; local
6770 FILE * output; local
7068 FILE * output; local
7483 double val; local
7499 xmlChar * val; local
7558 FILE * output; local
7600 double val; local
7906 FILE * output; local
8288 xmlNodePtr val; local
8575 FILE * output; local
8900 xmlChar * val; local
9764 int val; local
9812 int val; local
10301 int val; local
11029 FILE * output; local
11602 int val; local
12010 FILE * output; local
12204 FILE * output; local
13394 FILE * output; local
14128 int val; local
14254 int val; local
[all...]

Completed in 279 milliseconds