HomeSort by relevance Sort by last modified time
    Searched refs:force (Results 251 - 275 of 938) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 110 save=True, force=False, logger=None):
119 if force or not _newer(gp, gt):
153 load_grammar(gt, save=True, force=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_clib.py 41 ('force', 'f',
47 boolean_options = ['debug', 'force']
66 self.force = 0
81 ('force', 'force'))
103 force=self.force)
build_py.py 27 ('force', 'f', "forcibly build everything (ignore file timestamps)"),
30 boolean_options = ['compile', 'force']
41 self.force = None
46 ('force', 'force'))
390 force=self.force, prefix=prefix, dry_run=self.dry_run)
393 force=self.force, prefix=prefix, dry_run=self.dry_run)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 110 save=True, force=False, logger=None):
119 if force or not _newer(gp, gt):
153 load_grammar(gt, save=True, force=True)
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.cpp 173 DNBArchMachARM::GetGPRState(bool force)
177 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
212 DNBArchMachARM::GetVFPState(bool force)
216 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
245 DNBArchMachARM::GetEXCState(bool force)
249 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
271 DNBArchMachARM::GetDBGState(bool force)
276 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
1767 bool force = false; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 27 ('force', 'f', "forcibly build everything (ignore file timestamps)"),
30 boolean_options = ['compile', 'force']
41 self.force = None
46 ('force', 'force'))
390 force=self.force, prefix=prefix, dry_run=self.dry_run)
393 force=self.force, prefix=prefix, dry_run=self.dry_run)
  /external/chromium_org/third_party/sqlite/src/test/
tester.tcl 249 file delete -force test.db
250 file delete -force test.db-journal
251 file delete -force test.db-wal
600 file delete -force $f
603 file delete -force $f
722 # On windows, sometimes even a [file delete -force] can fail just after
734 set rc [catch {file delete -force $filename} msg]
829 # default, so here we force it to the "nativename" format.
931 catch {file delete -force test.db}
932 catch {file delete -force test.db-journal
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextDarwin_i386.cpp 455 RegisterContextDarwin_i386::ReadGPR (bool force)
458 if (force || !RegisterSetIsCached(set))
466 RegisterContextDarwin_i386::ReadFPU (bool force)
469 if (force || !RegisterSetIsCached(set))
477 RegisterContextDarwin_i386::ReadEXC (bool force)
480 if (force || !RegisterSetIsCached(set))
530 RegisterContextDarwin_i386::ReadRegisterSet (uint32_t set, bool force)
534 case GPRRegSet: return ReadGPR(force);
535 case FPURegSet: return ReadFPU(force);
536 case EXCRegSet: return ReadEXC(force);
    [all...]
RegisterContextDarwin_x86_64.cpp 500 RegisterContextDarwin_x86_64::ReadGPR (bool force)
503 if (force || !RegisterSetIsCached(set))
511 RegisterContextDarwin_x86_64::ReadFPU (bool force)
514 if (force || !RegisterSetIsCached(set))
522 RegisterContextDarwin_x86_64::ReadEXC (bool force)
525 if (force || !RegisterSetIsCached(set))
575 RegisterContextDarwin_x86_64::ReadRegisterSet(uint32_t set, bool force)
579 case GPRRegSet: return ReadGPR (force);
580 case FPURegSet: return ReadFPU (force);
581 case EXCRegSet: return ReadEXC (force);
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/php/
php.swg 148 %typemap(in) void ** ($*1_ltype ptr, int force),
149 void *& ($*1_ltype ptr, int force)
160 force=0;
169 force=1;
175 if (force$argnum) {
typemaps.i 287 %typemap(in,numinputs=0) void **OUTPUT (int force),
288 void *&OUTPUT (int force)
299 force=0;
308 force=1;
315 if (force$argnum) { /* pass back arg$argnum through params ($arg) if we can */
  /external/chromium_org/tools/telemetry/telemetry/core/forwarders/
android_forwarder.py 284 def _CheckEnableRndis(self, force):
287 force: Disable RNDIS first, even if it appears already enabled.
293 if not force:
301 force = False
480 force = False
482 device_iface, host_iface = self._CheckEnableRndis(force)
487 force = True
  /external/chromium_org/v8/test/mjsunit/
substr.js 71 /x/.exec(x); // Try to force a flatten.
89 /x/.exec(x); // Try to force a flatten.
102 // Keep creating strings to to force allocation failure on substring creation.
  /frameworks/base/libs/storage/
IMountService.cpp 160 int32_t unmountVolume(const String16& mountPoint, const bool force, const bool removeEncryption)
165 data.writeInt32(force ? 1 : 0);
312 int32_t unmountSecureContainer(const String16& id, const bool force)
317 data.writeInt32(force ? 1 : 0);
459 void unmountObb(const String16& filename, const bool force,
465 data.writeInt32(force ? 1 : 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 129 // When dismissing ime during unlock, force the back button to run the same appearance
299 public void setNavigationIconHints(int hints, boolean force) {
300 if (!force && hints == mNavigationIconHints) return;
332 public void setDisabledFlags(int disabledFlags, boolean force) {
333 if (!force && mDisabledFlags == disabledFlags) return;
410 public void setMenuVisibility(final boolean show, final boolean force) {
411 if (!force && mShowMenu == show) return;
453 // force the low profile & disabled states into compliance
455 setDisabledFlags(mDisabledFlags, true /* force */);
456 setMenuVisibility(mShowMenu, true /* force */);
    [all...]
  /external/chromium_org/tools/chrome_proxy/integration_tests/
chrome_proxy_measurements.py 22 tab.ClearCache(force=True)
37 tab.ClearCache(force=True)
63 tab.ClearCache(force=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
bcppcompiler.py 56 force=0):
58 CCompiler.__init__ (self, verbose, dry_run, force)
385 if self.force or output_file is None or newer(source, output_file):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
bcppcompiler.py 56 force=0):
58 CCompiler.__init__ (self, verbose, dry_run, force)
385 if self.force or output_file is None or newer(source, output_file):
  /external/chromium_org/build/android/gyp/
apk_install.py 98 force=force_install)
jar_toc.py 90 force=not os.path.exists(toc_path),
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
gaia_screen_handler.h 151 // Tells webui to load authentication extension. |force| is used to force the
156 void LoadAuthExtension(bool force, bool silent_load, bool offline);
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
update.py 220 def Update(delegate, remote_manifest, local_manifest, bundle_names, force):
239 bundle_name, force)
279 bundle_name, force):
285 if not force and delegate.BundleDirectoryExists(bundle_name):
287 'Run update with the --force option to overwrite the '
  /external/chromium_org/net/disk_cache/
disk_cache.h 41 // If |force| is true, and there is a problem with the cache initialization, the
57 bool force,
  /external/chromium_org/third_party/sqlite/src/tool/
omittest.tcl 72 file copy -force ./config.h $dir
73 file copy -force ./libtool $dir
  /external/chromium_org/tools/gn/
builder.h 101 // If the force flag is set, we'll ignore the current state of the record's
107 void RecursiveSetShouldGenerate(BuilderRecord* record, bool force);

Completed in 304 milliseconds

<<11121314151617181920>>