HomeSort by relevance Sort by last modified time
    Searched defs:get_context (Results 1 - 12 of 12) sorted by null

  /external/python/cpython2/Lib/idlelib/
CodeContext.py 107 def get_context(self, new_topvisible, stopline=1, stopindent=0): member in class:CodeContext
142 lines, lastindent = self.get_context(new_topvisible,
155 lines, lastindent = self.get_context(new_topvisible,
  /external/python/cpython3/Lib/idlelib/
codecontext.py 134 def get_context(self, new_topvisible, stopline=1, stopindent=0): member in class:CodeContext
176 lines, lastindent = self.get_context(new_topvisible,
189 lines, lastindent = self.get_context(new_topvisible,
  /external/bcc/src/python/bcc/
usdt.py 168 def get_context(self): function
  /external/libxcam/modules/ocl/
cl_device.cpp 66 CLDevice::get_context () function in class:XCam::CLDevice
cl_image_handler.h 85 SmartPtr<CLContext> &get_context () { function in class:XCam::CLImageHandler
cl_kernel.h 83 SmartPtr<CLContext> &get_context () { function in class:XCam::CLKernel
cl_memory.h 79 SmartPtr<CLContext> &get_context () { function in class:XCam::CLMemory
  /external/tensorflow/tensorflow/core/common_runtime/
shape_refiner.h 57 shape_inference::InferenceContext* get_context() { function in class:tensorflow::ExtendedInferenceContext
134 return it->second->get_context();
  /external/python/cpython3/Lib/multiprocessing/
context.py 55 m = SyncManager(ctx=self.get_context())
67 return Lock(ctx=self.get_context())
72 return RLock(ctx=self.get_context())
77 return Condition(lock, ctx=self.get_context())
82 return Semaphore(value, ctx=self.get_context())
87 return BoundedSemaphore(value, ctx=self.get_context())
92 return Event(ctx=self.get_context())
97 return Barrier(parties, action, timeout, ctx=self.get_context())
102 return Queue(maxsize, ctx=self.get_context())
107 return JoinableQueue(maxsize, ctx=self.get_context())
186 def get_context(self, method=None): member in class:BaseContext
232 def get_context(self, method=None): member in class:DefaultContext
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 385 typename ProgramStateTrait<T>::context_type get_context() const;
615 typename ProgramStateTrait<T>::context_type get_context() { function in class:clang::ento::ProgramStateManager
766 return getStateManager().add<T>(this, K, get_context<T>());
770 typename ProgramStateTrait<T>::context_type ProgramState::get_context() const { function in class:clang::ento::ProgramState
771 return getStateManager().get_context<T>();
776 return getStateManager().remove<T>(this, K, get_context<T>());
798 return getStateManager().set<T>(this, K, E, get_context<T>());
  /external/autotest/server/
server_job.py 164 def get_context(self): member in class:status_indenter
    [all...]
  /external/python/cpython3/Lib/test/
test_concurrent_futures.py 28 from multiprocessing import get_context
85 mgr = get_context(ctx).Manager()
116 mp_context=self.get_context(),
135 def get_context(self): member in class:ExecutorMixin
136 return get_context(self.ctx)
155 def get_context(self): member in class:ProcessPoolForkMixin
158 return super().get_context()
170 def get_context(self): member in class:ProcessPoolForkserverMixin
173 return super().get_context()
220 self.mp_context = self.get_context()
    [all...]

Completed in 1178 milliseconds