/external/clang/test/SemaCXX/ |
H A D | linkage.cpp | 63 void force() { test(A()); } function in namespace:test3
|
/external/linux-tools-perf/src/tools/perf/ |
H A D | builtin-buildid-list.c | 52 static int perf_session__list_build_ids(bool force, bool with_hits) argument 63 session = perf_session__new(input_name, O_RDONLY, force, false, 85 bool force = false; local 89 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), 105 return perf_session__list_build_ids(force, with_hits);
|
H A D | builtin-buildid-cache.c | 83 static int build_id_cache__fprintf_missing(const char *filename, bool force, FILE *fp) argument 86 force, false, NULL); 128 bool force = false; local 142 OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), 200 ret = build_id_cache__fprintf_missing(missing_filename, force, stdout);
|
/external/linux-tools-perf/src/tools/perf/ui/tui/ |
H A D | setup.c | 19 void ui__refresh_dimensions(bool force) argument 21 if (force || ui__need_resize) {
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
H A D | PlatformMacOSX.cpp | 64 PlatformMacOSX::CreateInstance (bool force, const ArchSpec *arch) argument 70 bool create = force;
|
/external/lldb/source/Plugins/Process/mach-core/ |
H A D | ThreadMachCore.cpp | 64 // Invalidate all registers in our register context. We don't set "force" to 72 const bool force = false; local 73 GetRegisterContext()->InvalidateIfNeeded (force);
|
/external/e2fsprogs/misc/ |
H A D | e2undo.c | 122 int c,force = 0; local 145 force = 1; 187 if (!force && check_filesystem(tdb, channel)) {
|
H A D | util.c | 138 void check_mount(const char *device, int force, const char *type) argument 152 if (force >= 2) { 164 if (force >= 2) {
|
/external/lldb/source/Expression/ |
H A D | ClangExpressionVariable.cpp | 126 ClangExpressionVariable::TransferAddress (bool force) argument 134 if (force || (m_frozen_sp->GetLiveAddress() == LLDB_INVALID_ADDRESS))
|
/external/selinux/policycoreutils/setfiles/ |
H A D | restore.h | 37 int force; member in struct:restore_opts
|
/external/clang/lib/Analysis/ |
H A D | ThreadSafetyTIL.cpp | 48 SExpr* Future::force() { function in class:Future
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
H A D | ComponentResults.java | 322 * given build (i.e. if it has not been already read) or if the force arguments is set. 324 void updateBuild(String buildName, List scenarios, boolean force, File dataDir, SubMonitor subMonitor, PerformanceResults.RemainingTimeGuess timeGuess) { argument 360 // Scenario is not known yet, force an update 368 if (scenarioResults.updateBuild(buildName, force)) {
|
H A D | ScenarioResults.java | 323 boolean readNewData(String lastBuildName, boolean force) { 330 if (force || performanceResults.getBuildDate().compareTo(lastBuildDate) > 0) { 371 boolean updateBuild(String buildName, boolean force) { argument 373 if (!force && knowsBuild(buildName)) {
|
/external/iproute2/ip/ |
H A D | ip.c | 34 int force = 0; variable 45 " ip [ -force ] -batch filename\n" 136 if (!force) 221 } else if (matches(opt, "-force") == 0) { 222 ++force;
|
/external/lldb/source/Plugins/DynamicLoader/Static/ |
H A D | DynamicLoaderStatic.cpp | 27 DynamicLoaderStatic::CreateInstance (Process* process, bool force) argument 29 bool create = force;
|
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | ThreadKDP.cpp | 72 // Invalidate all registers in our register context. We don't set "force" to 80 const bool force = false; local 83 reg_ctx_sp->InvalidateIfNeeded (force);
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ThreadGDBRemote.cpp | 126 // Invalidate all registers in our register context. We don't set "force" to 134 const bool force = false; local 135 GetRegisterContext()->InvalidateIfNeeded (force);
|
/external/openssh/ |
H A D | sshbuf.c | 54 sshbuf_maybe_pack(struct sshbuf *buf, int force) argument 56 SSHBUF_DBG(("force %d", force)); 60 if (force ||
|
/external/blktrace/btt/ |
H A D | iostat.c | 73 static void update_idle_time(struct d_info *dip, double now, int force) argument 75 if (dip->stats.cur_dev == 0 || force) {
|
/external/e2fsprogs/resize/ |
H A D | main.c | 150 static void bigalloc_check(ext2_filsys fs, int force) argument 152 if (!force && EXT2_HAS_RO_COMPAT_FEATURE(fs->super, 156 "your own risk! Use the force option " 169 int force = 0; local 208 force = 1; 334 if (!force && ((fs->super->s_state & EXT2_ERROR_FS) || 399 if (!force && new_size < min_size) { 430 if (!force && (new_size > max_size)) { 443 bigalloc_check(fs, force); 446 if (!force [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
H A D | PerformanceResultsElement.java | 181 public void updateBuild(String buildName, boolean force, File dataDir, IProgressMonitor monitor) { argument 185 getPerformanceResults().updateBuild(buildName, force, dataDir, monitor); 188 public void updateBuilds(String[] builds, boolean force, File dataDir, IProgressMonitor monitor) { argument 192 getPerformanceResults().updateBuilds(builds, force, dataDir, monitor);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
H A D | BuildsView.java | 192 boolean force; field in class:BuildsView.UpdateBuildAction 194 UpdateBuildAction(boolean force) { argument 196 this.force = force; 236 BuildsView.this.updateBuilds(monitor, this.force); 248 UpdateAllBuildsAction(boolean force) { argument 249 super(force); 258 BuildsView.this.updateAllBuilds(monitor, this.force); 617 final boolean force = readBuilds < length; 618 this.updateBuild.force 635 updateAllBuilds(IProgressMonitor monitor, boolean force) argument 647 updateBuilds(IProgressMonitor monitor, boolean force) argument [all...] |
/external/guava/guava/src/com/google/common/collect/ |
H A D | AbstractBiMap.java | 119 private V putInBothMaps(@Nullable K key, @Nullable V value, boolean force) { argument 126 if (force) {
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
H A D | AbstractBiMap.java | 115 private V putInBothMaps(@Nullable K key, @Nullable V value, boolean force) { argument 122 if (force) {
|
/external/iproute2/tc/ |
H A D | tc.c | 40 int force = 0; variable 213 " tc [-force]\n" 215 " tc [-force] -batch filename\n" 282 if (!force) 322 } else if (matches(argv[1], "-force") == 0) { 323 ++force;
|