Lines Matching +full:n +full:- +full:one

9  *    http://www.apache.org/licenses/LICENSE-2.0
25 * <pre class="prettyprint lang-css"></pre>
39 // compiled/minified separately from one another. Other symbols defined in
60 // pragma-info and produces a lexer. A token description looks like
61 // [STYLE_NAME, /regular-expression/, pragmas]
66 // try each regular expression in order until one matches
70 // do a buffer copy on the matched portion which is O(n*n)
74 // 1. use js-modules/combinePrefixPatterns.js to
75 // combine all regular expressions into one
77 // 3. for each token try regular expressions in order until one matches it
84 // embedded language -- JavaScript or CSS embedded in HTML, or inline assembly
88 // with "lang-" as in
89 // ['lang-js', /<script>(.*?)<\/script>/]
91 // Group 1 is re-parsed using the language handler for "lang-js", and the
97 // A shortcut pattern is one that is tried before other patterns if the first
102 // All other patterns are fall-through patterns.
113 [PR['PR_PLAIN'], /^[ \t\r\n\f]+/, null, ' \t\r\n\f']
115 // Fall-through patterns.
119 /^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/, null],
121 /^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/, null],
122 ['lang-css-str', /^url\(([^\)\"\']+)\)/i],
124 /^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,
126 // A property name -- an identifier followed by a colon.
127 … ['lang-css-kw', /^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],
131 [PR['PR_COMMENT'], /^(?:<!--|-->)/],
133 [PR['PR_LITERAL'], /^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],
135 [PR['PR_LITERAL'], /^#(?:[0-9a-f]{3}){1,2}\b/i],
138 /^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],
149 /^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]
151 ['css-kw']);
160 ['css-str']);