Home
last modified time | relevance | path

Searched refs:GetAllowJIT (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/commands/expression/dont_allow_jit/
H A DTestAllowJIT.py55 self.assertEqual(options.GetAllowJIT(), True, "Default is true")
65 self.assertEqual(options.GetAllowJIT(), False, "Got False after setting to False")
74 self.assertEqual(options.GetAllowJIT(), True, "Set back to True correctly")
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBExpressionOptions.i143 …feature("docstring", "Gets whether to JIT an expression if it cannot be interpreted.") GetAllowJIT;
145 GetAllowJIT();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBExpressionOptions.h98 bool GetAllowJIT();
/llvm-project-15.0.7/lldb/source/API/
H A DSBExpressionOptions.cpp239 bool SBExpressionOptions::GetAllowJIT() { in GetAllowJIT() function in SBExpressionOptions