Home
last modified time | relevance | path

Searched refs:historyFileName (Results 1 – 16 of 16) sorted by relevance

/dports/devel/jline/jline-0.9.94/src/src/main/java/jline/
H A DConsoleRunner.java27 String historyFileName = null; in main() local
37 historyFileName = System.getProperty(ConsoleRunner.property, null); in main()
45 if (historyFileName != null) { in main()
49 + "." + historyFileName + ".history"))); in main()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/widget/
H A DActivityChooserModel.java359 public static ActivityChooserModel get(Context context, String historyFileName) { in get() argument
361 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName); in get()
363 dataModel = new ActivityChooserModel(context, historyFileName); in get()
364 sDataModelRegistry.put(historyFileName, dataModel); in get()
376 private ActivityChooserModel(Context context, String historyFileName) { in ActivityChooserModel() argument
378 if (!TextUtils.isEmpty(historyFileName) in ActivityChooserModel()
379 && !historyFileName.endsWith(HISTORY_FILE_EXTENSION)) { in ActivityChooserModel()
380 mHistoryFileName = historyFileName + HISTORY_FILE_EXTENSION; in ActivityChooserModel()
382 mHistoryFileName = historyFileName; in ActivityChooserModel()
1204 String historyFileName = (String) args[1]; in doInBackground() local
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/widget/
H A DActivityChooserModel.java360 public static ActivityChooserModel get(Context context, String historyFileName) { in get() argument
362 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName); in get()
364 dataModel = new ActivityChooserModel(context, historyFileName); in get()
365 sDataModelRegistry.put(historyFileName, dataModel); in get()
377 private ActivityChooserModel(Context context, String historyFileName) { in ActivityChooserModel() argument
379 if (!TextUtils.isEmpty(historyFileName) in ActivityChooserModel()
380 && !historyFileName.endsWith(HISTORY_FILE_EXTENSION)) { in ActivityChooserModel()
381 mHistoryFileName = historyFileName + HISTORY_FILE_EXTENSION; in ActivityChooserModel()
383 mHistoryFileName = historyFileName; in ActivityChooserModel()
1206 String historyFileName = (String) args[1]; in doInBackground() local
[all …]
/dports/net-im/matterhorn/matterhorn-50200.13.0/src/Matterhorn/
H A DFilePaths.hs4 , historyFileName
46 historyFileName :: FilePath
47 historyFileName = "history.txt" function
56 historyFilePath = getUserConfigFile xdgName historyFileName
/dports/devel/hadoop/hadoop-1.2.1/src/test/system/aop/org/apache/hadoop/mapred/
H A DJobInProgressAspect.aj99 String historyFileName = null;
101 historyFileName = JobHistory.JobInfo.getJobHistoryFileName(conf,
105 if(historyFileName != null) {
107 historyFileName).toString();
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/thriftfs/scripts/
H A Dhdfs.py521 historyFileName = os.path.expanduser("~/.hdfs_history") variable
522 if (os.path.exists(historyFileName)):
523 readline.read_history_file(historyFileName)
553 readline.write_history_file(historyFileName)
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DJSPUtil.java554 static String getJobID(String historyFileName) { in getJobID() argument
555 return JobHistory.jobIdNameFromLogFileName(historyFileName); in getJobID()
558 static String getUserName(String historyFileName) { in getUserName() argument
559 return JobHistory.userNameFromLogFileName(historyFileName); in getUserName()
562 static String getJobName(String historyFileName) { in getJobName() argument
563 return JobHistory.jobNameFromLogFileName(historyFileName); in getJobName()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/webapp/dao/
H A DTestJobInfo.java53 String historyFileName = in testAverageMergeTime() local
61 .getResource(historyFileName) in testAverageMergeTime()
/dports/deskutils/coolreader/coolreader-cr3.2.55/android/jni/
H A Ddocview.cpp1038 historyFileName = filename; in loadHistory()
1039 historyFileName = filename; in loadHistory()
1040 if ( historyFileName.empty() ) { in loadHistory()
1044 CRLog::info("Trying to load history from file %s", LCSTR(historyFileName)); in loadHistory()
1045 LVStreamRef stream = LVOpenFileStream(historyFileName.c_str(), LVOM_READ); in loadHistory()
1047 CRLog::error("Cannot open file %s", LCSTR(historyFileName)); in loadHistory()
1061 historyFileName = filename; in saveHistory()
1062 if ( historyFileName.empty() ) in saveHistory()
1068 CRLog::info("Trying to save history to file %s", LCSTR(historyFileName)); in saveHistory()
1070 LVStreamRef stream = LVOpenFileStream(historyFileName.c_str(), LVOM_WRITE); in saveHistory()
[all …]
H A Ddocview.h18 lString32 historyFileName; variable
/dports/sysutils/plasma5-libksysguard/libksysguard-5.23.5/processcore/
H A Dprocesses_atop_p.h56 QString historyFileName() const;
H A Dprocesses.h180 QString historyFileName() const;
H A Dprocesses.cpp545 QString Processes::historyFileName() const in historyFileName() function in KSysGuard::Processes
549 return d->mHistoricProcesses->historyFileName(); in historyFileName()
H A Dprocesses_atop_p.cpp58 QString ProcessesATop::historyFileName() const in historyFileName() function in KSysGuard::ProcessesATop
/dports/sysutils/plasma5-libksysguard/libksysguard-5.23.5/autotests/
H A Dprocesstest.cpp141 QCOMPARE(processController->historyFileName(), QStringLiteral("/var/log/atop.log")); in testHistories()
152 QCOMPARE(processController->historyFileName(), QStringLiteral("/var/log/atop.log")); in testHistories()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-hs/src/test/java/org/apache/hadoop/mapreduce/v2/hs/
H A DTestJobHistoryEntities.java56 private final String historyFileName = field in TestJobHistoryEntities
66 new Path(this.getClass().getClassLoader().getResource(historyFileName)