Home
last modified time | relevance | path

Searched refs:_attributes (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DCookieParser.js159 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"]…
198 return this._attributes;
203 this._attributes[key.toLowerCase()] = value;
DTextEditorModel.js59 this._attributes = []; property in WebInspector.TextEditorModel
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];
DDOMAgent.js41 this._attributes = []; property in WebInspector.DOMNode
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 = []; property
314 this._attributes.push(attr);
/external/webkit/Source/JavaScriptCore/API/
DJSClassRef.h40 …yCallback _getProperty, JSObjectSetPropertyCallback _setProperty, JSPropertyAttributes _attributes) in StaticValueEntry()
41 : getProperty(_getProperty), setProperty(_setProperty), attributes(_attributes) in StaticValueEntry()
53 …aticFunctionEntry(JSObjectCallAsFunctionCallback _callAsFunction, JSPropertyAttributes _attributes) in StaticFunctionEntry()
54 : callAsFunction(_callAsFunction), attributes(_attributes) in StaticFunctionEntry()
/external/webkit/Source/WebKit/mac/
DChangeLog-2002-12-039129 and _attributes accessors, now that Ken added public versions.
9282 (-[WebDataSource _attributes]): Added.