Searched defs:_oauthEscape (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
H A Dchrome_ex_oauthsimple.js265 signature: this._oauthEscape(this._parameters['oauth_signature']),
295 result += pName +'="'+this._oauthEscape(this._parameters[pName][j])+'" ';
300 result += pName + '="'+this._oauthEscape(this._parameters[pName])+'" ';
339 this._oauthEscape = function(string) {
345 throw('Array passed to _oauthEscape');
429 elements.push(this._oauthEscape(paramName) + '=' +
430 this._oauthEscape(sorted[j]));
434 elements.push(this._oauthEscape(paramName) + '=' +
435 this._oauthEscape(this._parameters[paramName]));
442 var secretKey = this._oauthEscape(thi
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dchrome_ex_oauthsimple.js265 signature: this._oauthEscape(this._parameters['oauth_signature']),
295 result += pName +'="'+this._oauthEscape(this._parameters[pName][j])+'" ';
300 result += pName + '="'+this._oauthEscape(this._parameters[pName])+'" ';
339 this._oauthEscape = function(string) {
345 throw('Array passed to _oauthEscape');
429 elements.push(this._oauthEscape(paramName) + '=' +
430 this._oauthEscape(sorted[j]));
434 elements.push(this._oauthEscape(paramName) + '=' +
435 this._oauthEscape(this._parameters[paramName]));
442 var secretKey = this._oauthEscape(thi
[all...]

Completed in 195 milliseconds