Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_calltip.py219 class NoCall: class
222 class CallA(NoCall):
225 class CallB(NoCall):
229 for meth, mtip in ((NoCall, default_tip), (CallA, default_tip),
230 (NoCall(), ''), (CallA(), '(a, b, c)'),
/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()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DPlaceSafepoints.cpp156 static cl::opt<bool> NoCall("spp-no-call", cl::Hidden, cl::init(false)); variable
465 static bool enableCallSafepoints(Function &F) { return !NoCall; } in enableCallSafepoints()
/external/grpc-grpc/test/cpp/end2end/
Dserver_load_reporting_end2end_test.cc123 TEST_F(ServerLoadReportingEnd2endTest, NoCall) {} in TEST_F() argument