Lines Matching defs:oParsedResponse

918  * fnCallback(oRequest, oParsedResponse)
920 * where the oParsedResponse object literal with the following properties:
939 var oParsedResponse = null;
950 oParsedResponse = this.parseArrayData(oRequest, oRawResponse);
956 oParsedResponse = this.parseJSONData(oRequest, oRawResponse);
962 oParsedResponse = this.parseHTMLTableData(oRequest, oRawResponse);
968 oParsedResponse = this.parseXMLData(oRequest, oRawResponse);
974 oParsedResponse = this.parseTextData(oRequest, oRawResponse);
984 if(oParsedResponse) {
986 oParsedResponse.tId = tId;
987 oParsedResponse = this.doBeforeCallback(oRequest, oRawResponse, oParsedResponse);
989 response:oParsedResponse, callback:oCallback, caller:oCaller});
991 this.addToCache(oRequest, oParsedResponse);
999 oParsedResponse = {error:true};
1003 oCallback.call(oCaller, oRequest, oParsedResponse);
1030 * @param oParsedResponse {Object} The parsed response to return to calling object.
1033 YAHOO.util.DataSource.prototype.doBeforeCallback = function(oRequest, oRawResponse, oParsedResponse) {
1034 return oParsedResponse;
1047 var oParsedResponse = {results:[]};
1070 oParsedResponse.results.unshift(oResult);
1073 YAHOO.lang.dump(oParsedResponse), "info", this.toString());
1074 return oParsedResponse;
1092 var oParsedResponse = {};
1097 oParsedResponse.results = [];
1141 oParsedResponse.results.unshift(oResult);
1145 YAHOO.lang.dump(oParsedResponse), "info", this.toString());
1150 oParsedResponse.error = true;
1152 return oParsedResponse;
1165 var oParsedResponse = {};
1174 oParsedResponse.results = [];
1214 oParsedResponse.results.unshift(oResult);
1220 oParsedResponse.error = true;
1224 YAHOO.lang.dump(oParsedResponse), "info", this.toString());
1226 return oParsedResponse;
1238 var oParsedResponse = {};
1242 oParsedResponse.results = [];
1319 oParsedResponse.error = true;
1357 oParsedResponse.results.unshift(oResult);
1360 YAHOO.lang.dump(oParsedResponse), "info", this.toString());
1365 oParsedResponse.error = true;
1367 return oParsedResponse;
1382 var oParsedResponse = {};
1383 oParsedResponse.results = [];
1414 oParsedResponse.results.unshift(oResult);
1421 oParsedResponse.error = true;
1425 YAHOO.lang.dump(oParsedResponse), "info", this.toString());
1427 return oParsedResponse;