OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_parseconditions
(Results
1 - 4
of
4
) sorted by null
/external/webkit/WebCore/inspector/front-end/
SourceHTMLTokenizer.re2js
63
this.
_parseConditions
= {
72
this.initialCondition = { lexCondition: this._lexConditions.INITIAL, parseCondition: this.
_parseConditions
.INITIAL };
78
return this._parseCondition & this.
_parseConditions
.ATTRIBUTE;
83
return this._parseCondition & this.
_parseConditions
.ATTRIBUTE_VALUE;
89
this._parseCondition ^= this.
_parseConditions
.ATTRIBUTE_VALUE;
90
this._parseCondition |= this.
_parseConditions
.ATTRIBUTE;
96
this._parseCondition ^= this.
_parseConditions
.ATTRIBUTE;
97
this._parseCondition |= this.
_parseConditions
.ATTRIBUTE_VALUE;
114
if (this._parseCondition & this.
_parseConditions
.LINKIFY) {
115
if (this._parseCondition & this.
_parseConditions
.A_NODE
[
all
...]
SourceHTMLTokenizer.js
64
this.
_parseConditions
= {
73
this.initialCondition = { lexCondition: this._lexConditions.INITIAL, parseCondition: this.
_parseConditions
.INITIAL };
79
return this._parseCondition & this.
_parseConditions
.ATTRIBUTE;
84
return this._parseCondition & this.
_parseConditions
.ATTRIBUTE_VALUE;
90
this._parseCondition ^= this.
_parseConditions
.ATTRIBUTE_VALUE;
91
this._parseCondition |= this.
_parseConditions
.ATTRIBUTE;
97
this._parseCondition ^= this.
_parseConditions
.ATTRIBUTE;
98
this._parseCondition |= this.
_parseConditions
.ATTRIBUTE_VALUE;
115
if (this._parseCondition & this.
_parseConditions
.LINKIFY) {
116
if (this._parseCondition & this.
_parseConditions
.A_NODE
[
all
...]
SourceCSSTokenizer.re2js
158
this.
_parseConditions
= {
170
this.initialCondition = { lexCondition: this._lexConditions.INITIAL, parseCondition: this.
_parseConditions
.INITIAL }
185
return this._parseCondition === this.
_parseConditions
.PROPERTY_VALUE || this._parseCondition === this.
_parseConditions
.AT_RULE;
247
if (this._parseCondition === this.
_parseConditions
.AT_RULE)
248
this._parseCondition = this.
_parseConditions
.INITIAL;
250
this._parseCondition = this.
_parseConditions
.PROPERTY;
257
this._parseCondition = this.
_parseConditions
.INITIAL;
264
if (this._parseCondition === this.
_parseConditions
.PROPERTY)
265
this._parseCondition = this.
_parseConditions
.PROPERTY_VALUE
[
all
...]
SourceCSSTokenizer.js
159
this.
_parseConditions
= {
171
this.initialCondition = { lexCondition: this._lexConditions.INITIAL, parseCondition: this.
_parseConditions
.INITIAL }
186
return this._parseCondition === this.
_parseConditions
.PROPERTY_VALUE || this._parseCondition === this.
_parseConditions
.AT_RULE;
426
if (this._parseCondition === this.
_parseConditions
.INITIAL) {
429
this._parseCondition = this.
_parseConditions
.AT_RULE;
435
else if (this._parseCondition === this.
_parseConditions
.AT_RULE && token in this._mediaTypes)
437
else if (this._parseCondition === this.
_parseConditions
.PROPERTY && token in this._propertyKeywords)
[
all
...]
Completed in 802 milliseconds