Home
last modified time | relevance | path

Searched refs:force (Results 1 – 25 of 1823) sorted by relevance

12345678910>>...73

/external/libxkbcommon/xkbcommon/
D.uncrustify.cfg120 sp_arith=force
121 sp_assign=force
122 sp_assign_default=force
123 sp_before_assign=force
124 sp_after_assign=force
125 sp_enum_assign=force
126 sp_enum_before_assign=force
127 sp_enum_after_assign=force
129 sp_bool=force
130 sp_compare=force
[all …]
/external/ltp/testcases/kernel/syscalls/membarrier/
Dmembarrier01.c37 int force; /* force if CMD_QUERY reports not enabled */ member
106 .force = 1,
123 .force = 1,
153 .force = 1,
167 .force = 1,
194 .force = 1,
208 .force = 1,
224 _test.force); \
248 _test.exp_errno, _test.force); \
256 _test.testname, _gotret, _goterr, _test.force); \
[all …]
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
DThemeStyleSet.java18 if (overlayedAttribute != null && (attribute == null || overlayedStyle.force)) { in getAttrValue()
26 public void apply(Style style, boolean force) { in apply() argument
27 OverlayedStyle styleToAdd = new OverlayedStyle(style, force); in apply()
54 boolean force; field in ThemeStyleSet.OverlayedStyle
56 OverlayedStyle(Style style, boolean force) { in OverlayedStyle() argument
58 this.force = force; in OverlayedStyle()
77 return style.toString() + (force ? " (forced)" : ""); in toString()
/external/python/cpython2/Lib/
Dcompileall.py22 force=0, rx=None, quiet=0): argument
50 if not compile_file(fullname, ddir, force, rx, quiet):
56 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
61 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0): argument
85 if not force:
113 def compile_path(skip_curdir=1, maxlevels=0, force=0, quiet=0): argument
129 force, quiet=quiet)
184 force = 0
191 if o == '-f': force = 1
213 force, rx, quiet):
[all …]
/external/python/cpython3/Lib/
Dcompileall.py50 def compile_dir(dir, maxlevels=10, ddir=None, force=False, rx=None, argument
87 ddir=ddir, force=force,
96 if not compile_file(file, ddir, force, rx, quiet,
101 def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, argument
143 if not force:
187 def compile_path(skip_curdir=1, maxlevels=0, force=False, quiet=0, argument
212 force,
307 if not compile_file(dest, args.ddir, args.force, args.rx,
313 args.force, args.rx, args.quiet,
319 return compile_path(legacy=args.legacy, force=args.force,
/external/python/cpython2/Mac/scripts/
Dcachersrc.py15 def handler((verbose, force), dirname, fnames): argument
18 if force:
34 force = 0
39 force = 1
41 os.path.walk(dir, handler, (verbose, force))
/external/rmi4utils/rmi4update/
Dmain.cpp57 int UpdateDevice(FirmwareImage & image, bool force, bool performLockdown, const char * deviceFile) in UpdateDevice() argument
67 rc = update.UpdateFirmware(force, performLockdown); in UpdateDevice()
107 bool force = false; in main() local
128 force = true; in main()
178 rc = UpdateDevice(image, force, performLockdown, deviceName); in main()
194 rc = UpdateDevice(image, force, performLockdown, deviceFile); in main()
/external/libchrome/build/android/gyp/util/
Dmd5_check.py23 output_paths=None, force=False, pass_changes=False): argument
66 force = force or _FORCE_REBUILD
67 missing_outputs = [x for x in output_paths if force or not os.path.exists(x)]
76 changes = Changes(old_metadata, new_metadata, force, missing_outputs)
96 def __init__(self, old_metadata, new_metadata, force, missing_outputs): argument
99 self.force = force
107 return (self.force or
117 if (self.force or
192 if self.force:
/external/e2fsprogs/misc/
De2undo.c297 int c, force = 0, dry_run = 0, verbose = 0, dump = 0; in main() local
328 force = 1; in main()
395 if (!force && ext2fs_le32_to_cpu(undo_ctx.hdr.header_crc) != hdr_crc) { in main()
406 if (!force && undo_ctx.blocksize > E2UNDO_MAX_BLOCK_SIZE) { in main()
411 if (!force && undo_ctx.blocksize < E2UNDO_MIN_BLOCK_SIZE) { in main()
424 if (!force && (undo_ctx.hdr.f_incompat || undo_ctx.hdr.f_rocompat)) { in main()
472 if (!force && check_filesystem(&undo_ctx, channel)) in main()
508 if (force) { in main()
517 if (!force && in main()
527 if (!force && ext2fs_le32_to_cpu(crc) != key_crc) { in main()
[all …]
/external/autotest/database/
Dmigrate.py90 def __init__(self, database_connection, migrations_dir=None, force=False): argument
92 self.force = force
287 if not self.force:
436 debug=options.debug, force=options.force)
465 def get_migration_manager(db_name, debug, force): argument
479 return MigrationManager(database, force=force)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/
Ddiscriminator.ll1 ; RUN: opt -S -loop-vectorize -force-vector-width=4 -force-vector-interleave=1 < %s | FileCheck --c…
2 ; RUN: opt -S -loop-vectorize -force-vector-width=2 -force-vector-interleave=3 < %s | FileCheck --c…
4 ; RUN: opt -S -loop-vectorize -force-vector-width=4 -force-vector-interleave=4 -loop-unroll -unroll…
Dopt.ll1 ; RUN: opt -S -O3 -force-vector-width=2 -force-vector-interleave=1 < %s | FileCheck --check-prefix=…
2 ; RUN: opt -S -O3 -disable-loop-vectorization -force-vector-width=2 -force-vector-interleave=1 < %s…
Dunroll_novec.ll1 …opt < %s -loop-vectorize -force-vector-width=1 -force-target-num-scalar-regs=16 -force-target-max…
/external/python/cpython3/Lib/distutils/tests/
Dtest_install_scripts.py23 force=1,
27 self.assertFalse(cmd.force)
34 self.assertTrue(cmd.force)
66 force=1,
/external/python/cpython2/Lib/distutils/tests/
Dtest_install_scripts.py23 force=1,
27 self.assertFalse(cmd.force)
34 self.assertTrue(cmd.force)
66 force=1,
/external/llvm/test/Transforms/LoopVectorize/
Dopt.ll1 ; RUN: opt -S -O3 -force-vector-width=2 -force-vector-interleave=1 < %s | FileCheck --check-prefix=…
2 ; RUN: opt -S -O3 -disable-loop-vectorization -force-vector-width=2 -force-vector-interleave=1 < %s…
Dvect.omp.persistence.ll1 ; RUN: opt < %s -O2 -force-vector-interleave=2 -force-vector-width=4 -debug-only=loop-vectorize -st…
5 ; CHECK: LV: Loop hints: force=enabled
7 ; CHECK: LV: Loop hints: force=enabled
9 ; CHECK-NOT: LV: Loop hints: force=
/external/python/cpython3/Lib/distutils/command/
Dinstall_lib.py55 self.force = 0
133 force=self.force, prefix=install_root,
137 force=self.force, prefix=install_root,
/external/python/cpython2/Lib/distutils/command/
Dinstall_lib.py59 self.force = 0
137 force=self.force, prefix=install_root,
141 force=self.force, prefix=install_root,
/external/brotli/java/org/brotli/wrapper/enc/
DEncoder.java95 boolean pushOutput(boolean force) throws IOException { in pushOutput() argument
102 } else if (!force) { in pushOutput()
113 boolean force = (op != EncoderJNI.Operation.PROCESS); in encode()
114 if (force) { in encode()
123 } else if (!pushOutput(force)) { in encode()
/external/autotest/server/cros/clique_lib/
Dclique_dut_updater.py19 def update_dut_worker(updater_obj, dut, image, force): argument
33 updater_obj.update_dut(dut_host=dut.host, image=image, force=force)
118 def update_dut(self, dut_host, image, force=True): argument
133 if not force and dut_release_version == image_release_version:
/external/v8/gypfiles/
Dvs_toolchain.py294 def Update(force=False): argument
299 if force != False and force != '--force':
300 print >>sys.stderr, 'Unknown parameter "%s"' % force
302 if force == '--force' or os.path.exists(json_data_file):
303 force = True
307 if ((sys.platform in ('win32', 'cygwin') or force) and
321 if force:
/external/skia/modules/particles/src/
DSkParticleAffector.cpp34 bool force = true, in SkLinearVelocityAffector() argument
38 , fForce(force) in SkLinearVelocityAffector()
51 SkVector force = { c * strength, s * strength }; in REFLECTED() local
53 ps[i].fVelocity.fLinear += force * params.fDeltaTime; in REFLECTED()
55 ps[i].fVelocity.fLinear = force; in REFLECTED()
77 SkAngularVelocityAffector(const SkCurve& strength = 0.0f, bool force = true) in SkAngularVelocityAffector() argument
79 , fForce(force) {} in SkAngularVelocityAffector()
448 bool force, in MakeLinearVelocity() argument
450 return sk_sp<SkParticleAffector>(new SkLinearVelocityAffector(angle, strength, force, frame)); in MakeLinearVelocity()
454 bool force) { in MakeAngularVelocity() argument
[all …]
/external/autotest/site_utils/
Dset_tree_status.py34 def post_status(force, message): argument
35 if not force:
59 sys.exit(post_status(options.force, args[0]))
/external/webrtc/webrtc/base/
Dhttpserver.cc67 HttpServer::Close(int connection_id, bool force) { in Close() argument
69 connection->InitiateClose(force); in Close()
74 HttpServer::CloseAll(bool force) { in CloseAll() argument
87 (*it)->InitiateClose(force); in CloseAll()
163 HttpServer::Connection::InitiateClose(bool force) { in InitiateClose() argument
165 if (!signalling_ && (force || !request_in_progress)) { in InitiateClose()

12345678910>>...73