Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dopt-chaining.ets31 let isNull: boolean = false;
36 isNull = true;
39 assert (isNull == true);
/arkcompiler/ets_frontend/arkguard/test/ut/
DNameGenerator.spec.ts92 assert.isNull(underlineGenerator.getName());
105 assert.isNull(underlineGenerator.getName());
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtyped_array_stub_builder.cpp28 Label isNull(env); in IsDetachedBuffer() local
41 Branch(TaggedIsNull(dataSlot), &isNull, &exit); in IsDetachedBuffer()
42 Bind(&isNull); in IsDetachedBuffer()
59 Label isNull(env); in GetDataPointFromBuffer() local
Dcommon_stubs.cpp845 Label isNull(env); in GenerateCircuit() local
860 Branch(TaggedIsNull(handler), &isNull, &notNull); in GenerateCircuit()
861 Bind(&isNull); in GenerateCircuit()
Dstub_builder.cpp2780 Label isNull(env); in GetPropertyByName() local
2782 Branch(TaggedIsNull(*result), &isNull, &notNull); in GetPropertyByName()
2783 Bind(&isNull); in GetPropertyByName()
3584 Label isNull(env); in SetPropertyByName() local
3586 Branch(TaggedIsNull(*result), &isNull, &notNull); in SetPropertyByName()
3587 Bind(&isNull); in SetPropertyByName()
6097 Label isNull(env); in ToObject() local
6153 Branch(TaggedIsNull(obj), &isNull, &notIsNull); in ToObject()
6154 Bind(&isNull); in ToObject()
/arkcompiler/runtime_core/static_core/plugins/ets/tools/declgen_ts2ets/src/
DASTTransformer.ts65 function isNull(node: ts.Node): boolean { function
82 !isNull(node) &&