Home
last modified time | relevance | path

Searched refs:STRING (Results 1 – 8 of 8) sorted by relevance

/bootable/recovery/edify/
Dparser.yy66 %token <str> STRING BAD
91 expr: STRING {
106 | STRING '(' arglist ')' {
Dlexer.ll60 return STRING;
98 return STRING;
Dexpr.cpp54 if (v->type != Value::Type::STRING) { in Evaluate()
71 return new Value(Value::Type::STRING, str); in StringValue()
/bootable/recovery/edify/include/edify/
Dexpr.h58 STRING = 1, enumerator
/bootable/recovery/updater/
Dblockimg.cpp1654 if (blockdev_filename->type != Value::Type::STRING) { in PerformBlockImageUpdate()
1662 if (new_data_fn->type != Value::Type::STRING) { in PerformBlockImageUpdate()
1666 if (patch_data_fn->type != Value::Type::STRING) { in PerformBlockImageUpdate()
2073 if (blockdev_filename->type != Value::Type::STRING) { in RangeSha1Fn()
2077 if (ranges->type != Value::Type::STRING) { in RangeSha1Fn()
2141 if (arg_filename->type != Value::Type::STRING) { in CheckFirstBlockFn()
2198 if (filename->type != Value::Type::STRING) { in BlockImageRecoverFn()
2202 if (ranges->type != Value::Type::STRING) { in BlockImageRecoverFn()
Ddynamic_partitions.cpp79 if (args[i]->type != Value::Type::STRING) { in ReadStringArgs()
Dinstall.cpp710 return new Value(Value::Type::STRING, std::move(contents)); in ReadFileFn()
/bootable/recovery/tests/component/
Dupdater_test.cpp158 args[0]->type = Value::Type::STRING; in BlobToString()