Searched refs:get (Results 101 - 125 of 385) sorted by relevance

1234567891011>>

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Drrcs.py30 print " co|get # checkout"
62 data = x.get(fn)
104 data = x.get(fn)
149 'get': ('', checkout),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DQueue.py14 "Exception raised by Queue.get(block=0)/get_nowait()."
35 # thread waiting to get is notified then.
48 Used by Queue consumer threads. For each get() used to fetch a task,
150 def get(self, block=True, timeout=None): member in class:Queue
187 Only get an item if one is immediately available. Otherwise
190 return self.get(False)
H A Dlinecache.py86 name = module_globals.get('__name__')
H A Dwarnings.py197 filename = globals.get('__file__')
232 if registry.get(key):
259 if onceregistry.get(oncekey):
267 if registry.get(altkey):
H A Dpickle.py260 def get(self, i, pack=struct.pack): member in class:Pickler
277 x = self.memo.get(id(obj))
279 self.write(self.get(x[0]))
284 f = self.dispatch.get(t)
299 reduce = dispatch_table.get(t)
551 get = self.get(memo[id(obj)][0])
552 write(POP * n + get)
572 get = self.get(mem
[all...]
H A DSimpleXMLRPCServer.py451 ae = self.headers.get("Accept-Encoding", "")
523 q = self.accept_encodings().get("gzip", 0)
536 encoding = self.headers.get("content-encoding", "identity").lower()
686 os.environ.get('REQUEST_METHOD', None) == 'GET':
691 length = int(os.environ.get('CONTENT_LENGTH', None))
H A Dcollections.py28 # The inherited dict provides __getitem__, __len__, __contains__, and get.
150 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od'
344 result.__module__ = _sys._getframe(1).f_globals.get('__name__', '__main__')
492 self_get = self.get
498 self_get = self.get
521 self_get = self.get
658 return self._make(_map(kwds.get, ('x', 'y'), self))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
H A Dparse.py45 See driver.py for how to get input tokens by tokenizing a file or
64 setup() method to get it started.
167 ilabel = self.grammar.keywords.get(value)
170 ilabel = self.grammar.tokens.get(type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
H A Dutil.py139 c[elem] = c.get(elem, 0) + 1
148 cnt_t = t.get(elem, 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dtexcheck.py70 if o_symbol in pairmap.get(c_symbol, [c_symbol]): return
114 startline = int(opts.get('-s', '1'))
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DCapsuleData.py83 FvObj = GenFdsGlobalVariable.FdfParser.Profile.FvDict.get(self.FvName.upper())
115 FdObj = GenFdsGlobalVariable.FdfParser.Profile.FdDict.get(self.FdName.upper())
H A DDataSection.py112 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get(self.SecType))
115 GenFdsGlobalVariable.GenerateSection(OutputFile, [self.SectFileName], Section.Section.SectionType.get(self.SecType))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dlinecache.py90 name = module_globals.get('__name__')
H A Dwarnings.py30 # sys.stderr is None - warnings get lost
201 filename = globals.get('__file__')
236 if registry.get(key):
263 if onceregistry.get(oncekey):
271 if registry.get(altkey):
H A Dcollections.py29 # The inherited dict provides __getitem__, __len__, __contains__, and get.
152 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od'
384 result.__module__ = _sys._getframe(1).f_globals.get('__name__', '__main__')
547 self_get = self.get
553 self_get = self.get
584 self_get = self.get
721 return self._make(_map(kwds.get, ('x', 'y'), self))
H A Dcopy.py74 copier = _copy_dispatch.get(cls)
82 reductor = dispatch_table.get(cls)
155 y = memo.get(d, _nil)
161 copier = _deepcopy_dispatch.get(cls)
176 reductor = dispatch_table.get(cls)
H A Dcsv.py149 return [rowdict.get(key, self.restval) for key in self.fieldnames]
237 quotes[key] = quotes.get(key, 0) + 1
244 delims[key] = delims.get(key, 0) + 1
316 metaFrequency = charFrequency.get(char, {})
320 metaFrequency[freq] = metaFrequency.get(freq, 0) + 1
327 # get the mode of the frequencies
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
H A Dlpwatch.py64 ujobs, ubytes = users.get(user, (0, 0))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
H A Dfix_print.py40 bare_print = results.get("bare")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_sysconfig.py67 if os.environ.get(key) != value:
244 def get(python): function in function:TestSysConfig.test_symlink
253 self.assertEqual(get(real), get(link))
H A Dtest_platform.py15 def get(python): function in function:PlatformTest.test_architecture.test_architecture_via_symlink
24 self.assertEqual(get(real), get(link))
132 # Issue 7860: make sure we get architecture from the correct variable
/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA15-A7/
H A DCTA15-A7Helper.asm55 // Shift the SCC value to get the cluster ID at the offset #8
86 // Shift the SCC value to get the cluster ID at the offset #8
/device/generic/goldfish/camera/
H A DEmulatedCamera.cpp301 valstr = mParameters.get(EmulatedCamera::FACING_KEY);
313 valstr = mParameters.get(EmulatedCamera::ORIENTATION_KEY);
534 * thread would in turn get stuck on waiting for the delivery thread. */
606 const char* new_white_balance = new_param.get(
608 const char* supported_white_balance = new_param.get(
614 const char* current_white_balance = mParameters.get(
629 const char* focus_mode = new_param.get(CameraParameters::KEY_FOCUS_MODE);
672 mParameters.get(CameraParameters::KEY_RECORDING_HINT);
673 const char* new_hint = new_param.get(CameraParameters::KEY_RECORDING_HINT);
775 mParameters.get(CameraParameter
[all...]
H A DEmulatedCameraDevice.cpp287 if (mCameraThread.get()) {
315 if (mCameraThread.get() == nullptr) {
458 if (mFrameProducer.get()) {
525 if (mFrameProducer.get() == nullptr) {
533 if (mFrameProducer.get()) {
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
H A DEfiCopyMem.asm87 ; Pick up misaligned start bytes to get destination pointer 4-byte aligned
97 mov al, BYTE PTR [esi] ; get byte from Source
106 mov eax, ecx ; get Count in eax
152 mov eax, DWORD PTR [esi] ; get data from Source
162 mov al, BYTE PTR [esi] ; get byte from Source
186 mov al, BYTE PTR [esi] ; get byte from Source

Completed in 539 milliseconds

1234567891011>>