Lines Matching refs:getValue
306 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); in parseEntry()
308 YS.printError(Entry.getValue(), "rewrite descriptor must be a map"); in parseEntry()
312 RewriteType = Key->getValue(KeyStorage); in parseEntry()
346 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteFunctionDescriptor()
348 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteFunctionDescriptor()
352 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
356 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
362 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
364 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
368 Undecorated = std::string(Value->getValue(ValueStorage)); in parseRewriteFunctionDescriptor()
415 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteGlobalVariableDescriptor()
417 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteGlobalVariableDescriptor()
421 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
425 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
431 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
433 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalVariableDescriptor()
478 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()); in parseRewriteGlobalAliasDescriptor()
480 YS.printError(Field.getValue(), "descriptor value must be a scalar"); in parseRewriteGlobalAliasDescriptor()
484 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalAliasDescriptor()
488 Source = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()
494 Target = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()
496 Transform = std::string(Value->getValue(ValueStorage)); in parseRewriteGlobalAliasDescriptor()