HomeSort by relevance Sort by last modified time
    Searched full:_attributes (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/inspector/front-end/
CookieParser.js 159 this._attributes = {};
165 return "httponly" in this._attributes;
170 return "secure" in this._attributes;
177 return !("expries" in this._attributes || "max-age" in this._attributes);
182 return this._attributes.path;
187 return this._attributes.domain;
192 return this._attributes.expires ? new Date(this._attributes.expires) :
193 (this._attributes["max-age"] ? new Date(requestDate.getTime() + 1000 * this._attributes["max-age"]) : null)
    [all...]
TextEditorModel.js 59 this._attributes = [];
179 this._attributes.splice(fromLine, count);
185 this._attributes.splice(lineNumber, 0, {});
228 var attrs = this._attributes[line];
231 this._attributes[line] = attrs;
238 var attrs = this._attributes[line];
244 var attrs = this._attributes[line];
DOMAgent.js 41 this._attributes = [];
85 return this._attributes.length > 0;
149 return this._attributes;
158 for (var i = 0; i < this._attributes.length; ++i) {
159 if (this._attributes[i].name === name) {
160 this._attributes.splice(i, 1);
248 this._attributes = [];
314 this._attributes.push(attr);
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 40 StaticValueEntry(JSObjectGetPropertyCallback _getProperty, JSObjectSetPropertyCallback _setProperty, JSPropertyAttributes _attributes)
41 : getProperty(_getProperty), setProperty(_setProperty), attributes(_attributes)
53 StaticFunctionEntry(JSObjectCallAsFunctionCallback _callAsFunction, JSPropertyAttributes _attributes)
54 : callAsFunction(_callAsFunction), attributes(_attributes)
  /frameworks/wilhelm/src/itf/
IPlay.c 248 // omits _attributes b/c noone cares deeply enough about these fields to need quick notification

Completed in 1672 milliseconds