Home
last modified time | relevance | path

Searched refs:eql (Results 1 – 25 of 26) sorted by relevance

12

/third_party/jsframework/test/ut/
Dutils.ts32 expect(utils.isObject({})).eql(true);
33 expect(utils.isObject([])).eql(true);
34 expect(utils.isObject('a')).eql(false);
35 expect(utils.isObject(0)).eql(false);
36 expect(utils.isObject(true)).eql(false);
37 expect(utils.isObject(null)).eql(false);
38 expect(utils.isObject(undefined)).eql(false);
39 expect(utils.isObject(function() {})).eql(false);
40 expect(utils.isObject(/\w*/)).eql(true);
41 expect(utils.isObject(new Date())).eql(true);
[all …]
Druntime.ts146 expect(pageMap[instanceId].customComponentMap).eql(expectComponent);
152 expect(json.ref).eql('_root');
169 expect(json).eql(expectJSON);
/third_party/jsframework/test/ut/model/
Dindex.ts107 expect(vm._vmEvents['event1'].length).eql(2);
108 expect(typeof vm._vmEvents['event1'][1]).eql('function');
111 expect(vm._vmEvents['event1'].length).eql(1);
112 expect(typeof vm._vmEvents['event1'][1]).eql('undefined');
116 expect(vm._type).eql('parent');
117 expect(subVm._type).eql('child');
121 expect(spyChild.args.length).eql(0);
122 expect(spyParent.args.length).eql(1);
126 expect(spyChild.args.length).eql(1);
127 expect(spyParent.args.length).eql(1);
[all …]
Ddirective.ts114 expect(subVm.a).eql(3);
126 expect(subVm.a).eql(2);
145 expect(subVm._rootEl.style.aaa).eql(2);
146 expect(subVm._rootEl.style.bbb).eql(1);
201 expect(element.attr.data).eql('111');
202 expect(element.dataSet.b).eql('222');
207 expect(element.attr.data).eql('333');
208 expect(element.dataSet.url).eql('444');
251 expect(element.attr.data).eql('111');
256 expect(element.dataSet.url).eql('222');
[all …]
/third_party/weex-loader/deps/weex-styler/test/
Dparse.js16 …expect(data.jsonStyle).eql({foo: {color: '#FF0000', backgroundColor: 'rgba(255,255,255,0.6)', Webk…
17 expect(data.log).eql([
32 expect(data.jsonStyle).eql({foo: {fontSize: '200px'}})
42 expect(data.jsonStyle).eql({foo: {lineHeight: 40}, bar: {lineHeight: '20px'}})
52 expect(data.jsonStyle).eql({
65 expect(data.jsonStyle).eql({
79 …expect(data.jsonStyle['@TRANSITION']).eql({foo: {property: 'marginTop', duration: 300, delay: 200,…
80 expect(data.jsonStyle.foo).eql({
86 expect(data.log).eql([
99 …expect(data.jsonStyle['@TRANSITION']).eql({foo: {property: 'transform', duration: 300, delay: 200,…
[all …]
Dvalidate.js23 … expect(data.jsonStyle).eql({foo: {color: '#FF0000', width: 200, position: 'sticky', zIndex: 4}})
24 expect(data.log).eql([])
43 expect(data.jsonStyle).eql({foo: {
50 expect(data.log).eql([
78 expect(data.jsonStyle).eql({
91 expect(data.log).eql([
120 expect(data.jsonStyle).eql({
131 expect(data.log).eql([
170 expect(data.jsonStyle).eql({
192 expect(data.log).eql([
[all …]
Dshorthand-parser.spec.js20 expect(result).eql([
76 expect(result).eql([
/third_party/weex-loader/deps/weex-scripter/test/
Drequire-parse.js23 expect(parseAndReplaceRequire(code)).eql(expected)
36 expect(parseAndReplaceRequire(code)).eql(expected)
49 expect(parseAndReplaceRequire(code)).eql(expected)
62 expect(parseAndReplaceRequire(code)).eql(expected)
75 expect(parseAndReplaceRequire(code)).eql(expected)
88 expect(parseAndReplaceRequire(code)).eql(expected)
98 expect(parseAndReplaceRequire(code)).eql(expected)
108 expect(parseAndReplaceRequire(code)).eql(expected)
124 expect(parseAndReplaceRequire(code)).eql(expected)
134 expect(parseAndReplaceRequire(code)).eql(expected)
Dfix.js12 eql('module.exports = {\n data: function () {\n return { a: 1 };\n }\n};')
14 eql('module.exports = {data: function () {return {a: 1}}}')
19 eql('module.exports = {data: function () {return {a: 1}}}')
21 eql('module.exports = {data: function () {return {a: 1}}}')
26 expect(result).eql('module.exports = {\n data: function () {return {a: 1}}}')
31 …expect(result).eql('require("./b.wx")\n\nvar c = require("./lib/c")\n\nmodule.exports = {\n dat…
Drequire-bundle.js22 expect(eval(evalCode)).eql('ab')
37 expect(eval(evalCodeA)).eql('ab')
38 expect(eval(evalCodeC)).eql('c require')
/third_party/weex-loader/test/
Dtest.js78 expect(JSON.parse(stringifyActual(components))).eql(expectJSON);
132 expect(requireStub.callCount).eql(0);
147 expect(requireStub.callCount).eql(1);
148 expect(requireStub.firstCall.args).eql(['@weex-module/modal']);
153 expect(requireStub.callCount).eql(1);
154 expect(requireStub.firstCall.args).eql(['@weex-module/modal']);
159 expect(requireStub.callCount).eql(1);
160 expect(requireStub.firstCall.args).eql(['@weex-module/modal']);
165 expect(requireStub.callCount).eql(1);
166 expect(requireStub.firstCall.args).eql(['@weex-module/modal']);
/third_party/jsframework/test/ut/extend/
Ddpi.ts57 expect(dpiInstance.$r('image.wearable')).eql('common/wearable.png');
58 expect(dpiInstance.$r('image.com')).eql('image.com');
59 expect(dpiInstance.$r('image.object')).eql({
63 expect(dpiInstance.$r('image.array')[0]).eql('common/wearable.png');
/third_party/jsframework/test/ut/app/
Dindex.ts47 expect(typeof App).eql('function');
56 expect(typeof app.deleteGlobalKeys).eql('function');
Dbundle.ts80 expect(page.customComponentMap['a'].template).eql(componentTemplate);
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DTextTrieMapTest.java207 private boolean eql(Object o1, Object o2) { in eql() method in TextTrieMapTest
243 if (eql(exp[i], val)) { in checkResult()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DTextTrieMapTest.java210 private boolean eql(Object o1, Object o2) { in eql() method in TextTrieMapTest
246 if (eql(exp[i], val)) { in checkResult()
/third_party/ffmpeg/libavformat/
Dhttp.c887 char *eql, *name; in parse_cookie() local
936 if (!(eql = strchr(p, '='))) return AVERROR(EINVAL); in parse_cookie()
937 if (!(name = av_strndup(p, eql - p))) return AVERROR(ENOMEM); in parse_cookie()
940 av_dict_set(cookies, name, eql, AV_DICT_DONT_STRDUP_KEY); in parse_cookie()
/third_party/icu/icu4c/source/i18n/
Dvtzone.cpp403 int32_t eql = prop.indexOf(EQUALS_SIGN); in parseRRULE() local
404 if (eql != -1) { in parseRRULE()
405 attr.setTo(prop, 0, eql); in parseRRULE()
406 value.setTo(prop, eql + 1); in parseRRULE()
/third_party/node/deps/icu-small/source/i18n/
Dvtzone.cpp403 int32_t eql = prop.indexOf(EQUALS_SIGN); in parseRRULE() local
404 if (eql != -1) { in parseRRULE()
405 attr.setTo(prop, 0, eql); in parseRRULE()
406 value.setTo(prop, eql + 1); in parseRRULE()
/third_party/protobuf/php/ext/google/protobuf/
Dphp-upb.c1508 uint32_t hash, eqlfunc_t *eql) { in findentry() argument
1515 if (eql(e->key, key)) return e; in findentry()
1521 uint32_t hash, eqlfunc_t *eql) { in findentry_mutable() argument
1522 return (upb_tabent*)findentry(t, key, hash, eql); in findentry_mutable()
1526 uint32_t hash, eqlfunc_t *eql) { in lookup() argument
1527 const upb_tabent *e = findentry(t, key, hash, eql); in lookup()
1541 hashfunc_t *hashfunc, eqlfunc_t *eql) { in insert() argument
1545 UPB_ASSERT(findentry(t, key, hash, eql) == NULL); in insert()
1581 UPB_ASSERT(findentry(t, key, hash, eql) == our_e); in insert()
1585 upb_tabkey *removed, uint32_t hash, eqlfunc_t *eql) { in rm() argument
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dvtzone.cpp411 int32_t eql = prop.indexOf(EQUALS_SIGN); in parseRRULE() local
412 if (eql != -1) { in parseRRULE()
413 attr.setTo(prop, 0, eql); in parseRRULE()
414 value.setTo(prop, eql + 1); in parseRRULE()
/third_party/spirv-tools/tools/sva/
Dyarn.lock198 deep-eql "^3.0.1"
358 deep-eql@^3.0.1:
360 …resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c…
/third_party/skia/third_party/externals/spirv-tools/tools/sva/
Dyarn.lock198 deep-eql "^3.0.1"
358 deep-eql@^3.0.1:
360 …resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c…
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/
Dyarn.lock198 deep-eql "^3.0.1"
358 deep-eql@^3.0.1:
360 …resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c…
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.c1483 uint32_t hash, eqlfunc_t *eql) { in findentry() argument
1490 if (eql(e->key, key)) return e; in findentry()
1496 uint32_t hash, eqlfunc_t *eql) { in findentry_mutable() argument
1497 return (upb_tabent*)findentry(t, key, hash, eql); in findentry_mutable()
1501 uint32_t hash, eqlfunc_t *eql) { in lookup() argument
1502 const upb_tabent *e = findentry(t, key, hash, eql); in lookup()
1516 hashfunc_t *hashfunc, eqlfunc_t *eql) { in insert() argument
1520 UPB_ASSERT(findentry(t, key, hash, eql) == NULL); in insert()
1556 UPB_ASSERT(findentry(t, key, hash, eql) == our_e); in insert()
1560 upb_tabkey *removed, uint32_t hash, eqlfunc_t *eql) { in rm() argument
[all …]

12