Lines Matching refs:getValue
304 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); in parseEntry()
306 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); in parseEntry()
310 RewriteType = Key->getValue(KeyStorage); in parseEntry()
344 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteFunctionDescriptor()
346 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteFunctionDescriptor()
350 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
354 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
360 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
362 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
366 Undecorated = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
413 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteGlobalVariableDescriptor()
415 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteGlobalVariableDescriptor()
419 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
423 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
429 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
431 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
476 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteGlobalAliasDescriptor()
478 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteGlobalAliasDescriptor()
482 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalAliasDescriptor()
486 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()
492 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()
494 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()