Lines Matching refs:result
48 store the retrieved value in the result object. If `locator` is
51 result node found by _schema.resultListLocator_ containing the
58 assignment as the result field value. This object follows the same
147 result, res, value = null;
150 result = SchemaXML._getXPathResult(locator, context, xmldoc);
151 while ((res = result.iterateNext())) {
171 * Fetches the XPath-specified result for a given location in an XML node
254 var result = this.values[this.index];
256 return result;
265 * Schema-parsed result field.
269 * @param result {Object} Required. Schema parsed data object.
274 _parseField: function(field, result, context) {
282 result[key] = parsed.results;
284 result[key] = SchemaXML._getLocationValue(field, context);
313 * Schema-parsed result to add to results list.
323 var result = {}, j;
327 SchemaXML._parseField(fields[j], result, context);
330 return result;
354 // loop through each result node
371 data_out.error = new Error("XML schema result nodes retrieval failure");