Searched defs:results (Results 1 - 5 of 5) sorted by relevance

/yui3/src/dataschema/js/
H A Ddataschema-xml.js36 results in the `results` property. Additional information can be parsed out
62 `response.results` will contain an array of objects with key:value pairs.
98 // response.results[0] is { name: "Banana", color: "YELLOW" }
104 XML nodes that contain the data to flatten into `response.results`
111 @return {Object} An Object with properties `results` and `meta`
116 data_out = { results: [], meta: {} };
119 // Parse results data
277 parsed = { results: [], meta: {} };
280 result[key] = parsed.results;
[all...]
/yui3/src/node-focusmanager/docs/assets/
H A Dnews.php28 $results = $rsp_obj["query"]["results"]["item"]; variable
32 $nResults = count($results);
40 $result = $results[$i];
/yui3/src/parallel/js/
H A Dparallel.js36 this.results = [];
44 * An Array of results from all the callbacks in the stack
45 * @property results
49 results: null,
72 self.results.push(fn && fn.apply(self.context, arguments));
83 self.callback.call(self.context, self.results, self.data);
90 * @param {Mixed} callback.results The results of all the callbacks in the stack
/yui3/src/collection/js/
H A Darray-extras.js69 results = [],
75 // This loop iterates over the results array in reverse order and stops
78 // current item is pushed onto the results array.
79 for (j = results.length; j > -1; --j) {
80 if (item === results[j]) {
86 results.push(item);
97 if (L.isNumber(results[0])) {
98 results.sort(A.numericSort);
100 results.sort();
104 return results;
[all...]
/yui3/src/autocomplete/js/
H A Dautocomplete-base.js83 RESULTS = 'results',
124 be used to request completion results. It may or may not be the same
134 Fires after query results are received from the source. If no source has
137 @event results
139 @param {String} query Query that generated these results.
140 @param {Object[]} results Array of filtered, formatted, and highlighted
141 results. Each item in the array is an object with the following
144 @param {Node|HTMLElement|String} results.display Formatted result
148 @param {String} [results.highlighted] Highlighted (but not
151 @param {Any} results
418 query : query, property
[all...]

Completed in 488 milliseconds