Home
last modified time | relevance | path

Searched refs:NoCall (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_calltips.py156 class NoCall: class
159 class Call(NoCall):
162 for meth, mtip in ((NoCall, default_tip), (Call, default_tip),
163 (NoCall(), ''), (Call(), '(ci)')):
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_calltips.py153 class NoCall(object): class
156 class Call(NoCall):
159 for meth, mtip in ((NoCall, '()'), (Call, '()'),
160 (NoCall(), ''), (Call(), '(ci)')):
/external/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp152 static cl::opt<bool> NoCall("spp-no-call", cl::Hidden, cl::init(false)); variable
456 static bool enableCallSafepoints(Function &F) { return !NoCall; } in enableCallSafepoints()