Searched refs:KeywordLookupResult (Results 1 – 3 of 3) sorted by relevance
56 …public KeywordLookupResult TryExecuteKeyword(string keywordName, object[] arguments, out object ke… in TryExecuteKeyword()61 return KeywordLookupResult.KeywordNotFound; in TryExecuteKeyword()67 return KeywordLookupResult.ArgumentsNotMatched; in TryExecuteKeyword()74 return KeywordLookupResult.Success; in TryExecuteKeyword()92 public enum KeywordLookupResult enum in Antmicro.Renode.RobotFramework.KeywordManager
35 … KeywordManager.KeywordLookupResult lookupResult = default(KeywordManager.KeywordLookupResult); in RunKeyword()39 if(lookupResult == KeywordManager.KeywordLookupResult.Success) in RunKeyword()64 if(lookupResult == KeywordManager.KeywordLookupResult.KeywordNotFound) in RunKeyword()68 if(lookupResult == KeywordManager.KeywordLookupResult.ArgumentsNotMatched) in RunKeyword()
46 …anager.TryExecuteKeyword(name, arguments, out var _) != KeywordManager.KeywordLookupResult.Success) in ExecuteKeyword()