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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 93 def __init__ (self, verbose=0, dry_run=0, force=0):
95 self.force = force
465 if self.force:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 93 def __init__ (self, verbose=0, dry_run=0, force=0):
95 self.force = force
465 if self.force:
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 123 p0.force = p1.force = 25.f;
125 RefPtrWillBeRawPtr<Touch> touch0 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p0.id, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force);
126 RefPtrWillBeRawPtr<Touch> touch1 = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), p1.id, p1.screenPosition, p1.position, FloatSize(p1.radiusX, p1.radiusY), p1.rotationAngle, p1.force);
145 EXPECT_FLOAT_EQ(p0.force, webTouchBuilder.touches[0].force);
205 RefPtrWillBeRawPtr<Touch> touch = Touch::create(toLocalFrame(webViewImpl->page()->mainFrame()), document.get(), i, p0.screenPosition, p0.position, FloatSize(p0.radiusX, p0.radiusY), p0.rotationAngle, p0.force);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
TabbedPane.js 369 * @param {boolean=} force
371 toggleTabClass: function(id, className, force)
374 if (tab._toggleClass(className, force))
849 * @param {boolean=} force
852 _toggleClass: function(className, force)
856 if (hasClass === force)
858 element.classList.toggle(className, force);
    [all...]
  /external/chromium_org/ui/events/x/
events_x.cc 124 // Force is normalized to [0, 1].
808 double force = 0.0; local
809 force = GetTouchParamFromXEvent(native_event,
813 // Force is normalized to fall into [0, 1]
815 deviceid, ui::DeviceDataManagerX11::DT_TOUCH_PRESSURE, &force))
816 force = 0.0;
817 return force;
  /frameworks/base/libs/hwui/
FontRenderer.cpp 490 bool force = false; local
507 force = caches.unbindMeshBuffer();
518 caches.bindPositionVertexPointer(force, &mesh[0].x);
519 caches.bindTexCoordsVertexPointer(force, &mesh[0].u);
520 force = false;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 287 def show_variables(self, force=0):
299 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
301 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
438 def load_dict(self, dict, force=0, rpc_client=None):
439 if dict is self.dict and not force:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 287 def show_variables(self, force=0):
299 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
301 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
438 def load_dict(self, dict, force=0, rpc_client=None):
439 if dict is self.dict and not force:
  /external/lldb/tools/debugserver/source/MacOSX/x86_64/
DNBArchImplX86_64.cpp 154 DNBArchImplX86_64::GetGPRState(bool force)
156 if (force || m_state.GetError(e_regSetGPR, Read))
257 DNBArchImplX86_64::GetFPUState(bool force)
259 if (force || m_state.GetError(e_regSetFPU, Read))
436 DNBArchImplX86_64::GetEXCState(bool force)
438 if (force || m_state.GetError(e_regSetEXC, Read))
503 DNBArchImplX86_64::GetDBGState(bool force)
505 if (force || m_state.GetError(e_regSetDBG, Read))
1965 bool force = false; local
    [all...]
  /external/chromium_org/net/socket/
client_socket_pool_base.h 302 // Closes all idle sockets if |force| is true. Else, only closes idle
304 void CleanupIdleSockets(bool force);
815 void CleanupIdleSockets(bool force) {
816 return helper_.CleanupIdleSockets(force);
    [all...]
  /external/e2fsprogs/misc/
dumpe2fs.c 529 int force = 0; local
553 force++;
581 if (force)
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 473 bool ignoreLowWaterThreshold, bool force) {
480 if (!ignoreLowWaterThreshold && !force
488 if (!force) {
590 true); // force
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 527 private void finishExpanding(boolean force, float velocity) {
537 targetHeight = (force || currentHeight > mSmallSize) ? mNaturalHeight : mSmallSize;
539 targetHeight = (force || currentHeight < mNaturalHeight) ? mSmallSize : mNaturalHeight;
  /libcore/luni/src/main/java/java/util/
ComparableTimSort.java 171 int force = nRemaining <= minRun ? nRemaining : minRun; local
172 binarySort(a, lo, lo + force, lo + runLen);
173 runLen = force;
    [all...]
TimSort.java 203 int force = nRemaining <= minRun ? nRemaining : minRun; local
204 binarySort(a, lo, lo + force, lo + runLen, c);
205 runLen = force;
    [all...]
  /external/chromium_org/v8/test/mjsunit/
math-floor-of-div-nosudiv.js 168 // Use (values[key] | 0) to force the integer type.
234 // We use '| 0' to force the representation to int32.
267 // We use '| 0' to force the representation to int32.
math-floor-of-div.js 168 // Use (values[key] | 0) to force the integer type.
234 // We use '| 0' to force the representation to int32.
267 // We use '| 0' to force the representation to int32.
const-eval-init.js 99 // Introduce 100 properties on the context extension object to force
deopt-with-fp-regs.js 54 // The following field of the global object will be deleted to force a deopt.
string-externalize.js 43 externalizeString(twoByteExternalWithOneByteData, true /* force two-byte */);
58 // Force flattening of the string.
79 // Force flattening of the string.
  /build/core/
cleanspec.mk 16 # Just bump this if you want to force a clean build.
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicService.java 304 void processStopRequest(boolean force) {
305 if (mState == State.Playing || mState == State.Paused || force) {
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_main.py 202 parser.add_option('-F', '--force', action='store_true',
203 help='Force updating bundles that already exist. The bundle will not be '
217 options.force)
360 force=True)
  /external/chromium_org/third_party/cython/src/Cython/Build/
Inline.py 113 force=False,
168 if force or not os.path.isfile(module_path):
  /external/chromium_org/third_party/sqlite/src/tool/
restore_jrnl.tcl 49 file copy -force $from $to

Completed in 819 milliseconds

<<11121314151617181920>>