Home
last modified time | relevance | path

Searched refs:styler (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/npm/node_modules/chalk/source/
Dindex.js101 …const styler = createStyler(getModelAnsi(model, levelMapping[level], 'color', ...arguments_), ansi…
102 return createBuilder(this, styler, this[IS_EMPTY]);
112 …const styler = createStyler(getModelAnsi(model, levelMapping[level], 'bgColor', ...arguments_), an…
113 return createBuilder(this, styler, this[IS_EMPTY]);
173 let styler = self[STYLER]; variable
175 if (styler === undefined) {
179 const {openAll, closeAll} = styler;
181 while (styler !== undefined) {
185 string = stringReplaceAll(string, styler.close, styler.open);
187 styler = styler.parent;
/third_party/weex-loader/deps/weex-styler/test/
Dparse.js7 var styler = require('../')
13 styler.parse(code, function (err, data) {
29 styler.parse(code, function (err, data) {
39 styler.parse(code, function (err, data) {
49 styler.parse(code, function (err, data) {
62 styler.parse(code, function (err, data) {
76 styler.parse(code, function (err, data) {
96 styler.parse(code, function (err, data) {
112 styler.parse(code, function (err, data) {
128 styler.parse(code, function (err, data) {
[all …]
Dvalidate.js7 var styler = require('../')
20 styler.validate(code, function (err, data) {
40 styler.validate(code, function (err, data) {
75 styler.validate(code, function (err, data) {
117 styler.validate(code, function (err, data) {
167 styler.validate(code, function (err, data) {
232 styler.validate(code, function (err, data) {
275 styler.validate(code, function (err, data) {
305 styler.validate(code, function (err, data) {
338 styler.validate(code, function (err, data) {
[all …]
/third_party/weex-loader/deps/weex-styler/
DREADME.md7 [npm-image]: https://img.shields.io/npm/v/weex-styler.svg?style=flat-square
8 [npm-url]: https://npmjs.org/package/weex-styler
11 [downloads-image]: https://img.shields.io/npm/dm/weex-styler.svg?style=flat-square
12 [downloads-url]: https://npmjs.org/package/weex-styler
85 var styler = require('weex-styler')
89 styler.parse(code, function (err, data) {
112 styler.validate(json, function (err, data) {
/third_party/weex-loader/
DBUILD.gn39 weex_loader_lib_dir + "/styler",
89 ":styler",
109 ohos_copy("styler") {
111 sources = [ weex_loader_lib_dir + "/styler" ]
149 sources = [ weex_loader_lib_dir + "/styler" ]
150 outputs = [ ace_loader_ark_dir + "/lib/styler" ]
/third_party/weex-loader/src/
Dparser.js22 import styler from './styler'
133 styler.parse(source, (err, obj) => {