Searched refs:isNullString (Results 1 - 9 of 9) sorted by relevance

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
H A DRSSFeedGetPropertyTask.java45 if (isNullString(file))
51 if (isNullString(xpath))
66 private static boolean isNullString(String str) method in class:RSSFeedGetPropertyTask
68 return RSSFeedUtil.isNullString(str);
H A DRSSFeedCreateFeedTask.java58 if (isNullString(file))
64 if (isNullString(project))
70 if (isNullString(feedURL))
92 sb.append(" <link rel=\"self\" type=\"application/atom+xml\" href=\"" + (!isNullString(feedURL)?feedURL:NS) + "\"/>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
95 sb.append(" <name>" + (!isNullString(project)?project + SP : NS) + Messages.getString("RSSFeedCreateFeedTask.BuildTeam") + "</name>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
97 sb.append(" <id>" + (!isNullString(feedURL)?feedURL:NS) + "</id>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
125 private static boolean isNullString(String str) method in class:RSSFeedCreateFeedTask
127 return RSSFeedUtil.isNullString(str);
H A DRSSFeedAddEntryTask.java161 if (isNullString(file))
167 if (isNullString(project))
173 if (isNullString(branch))
179 if (isNullString(buildID))
185 if (isNullString(feedURL))
191 if (isNullString(buildURL))
201 public void setDependencyURLs(String dependencyURLs) { if (!isNullString(dependencyURLs)) { this.dependencyURLs = dependencyURLs.split(splitter); } }
204 public void setReleases(String releases) { if (!isNullString(releases)) { this.releases = releases.split(splitter); } }
213 if (!isNullString(buildType))
232 public void setJUnitTestResults(String JUnitTestResults) { if (!isNullString(JUnitTestResult
579 private static boolean isNullString(String str) method in class:RSSFeedAddEntryTask
[all...]
H A DRSSFeedUpdateEntryTask.java85 if (isNullString(file))
91 if (isNullString(xpath))
103 System.out.println(Messages.getString("RSSFeedUpdateEntryTask.SearchingFor") + SP + xpath + (!isNullString(replacement)?", " + Messages.getString("RSSFeedUpdateEntryTask.ReplacingWith") + " '" + replacement + "'":NS)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$
137 if (!isNullString(replacement)) {
151 if (!isNullString(replacement) && newNode != null) {
214 if (debug==0) { System.out.print(xpath + (isNullString(replacement)?" = ":" :: ")); } //$NON-NLS-1$ //$NON-NLS-2$
245 if (!isNullString(replacement)) { aNode.setTextContent(replacement); }
246 System.out.println(isNullString(replacement)?NS:" => " + replacement); //$NON-NLS-1$ //$NON-NLS-2$
260 if (!isNullString(replacement)) {
288 if (!isNullString(targe
333 private static boolean isNullString(String str) method in class:RSSFeedUpdateEntryTask
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
H A DRSSFeedPublisherTask.java84 if (!isNullString(file)) { this.file = new File(file); }
89 if (!isNullString(CVSExec)) {
102 if (!isNullString(CVSTemp)) {
111 if (!isNullString(SCPExec)) {
131 if ((!isNullString(CVSRoot) && !isNullString(CVSPath)) || !isNullString(SCPTarget)) {
132 if ((!isNullString(CVSRoot) && !isNullString(CVSPath))) {
135 if (!isNullString(SCPTarge
231 private static boolean isNullString(String str) method in class:RSSFeedPublisherTask
[all...]
H A DRSSFeedWatcherTask.java79 if (!isNullString(file)) {
85 if (isNullString(feedURL))
92 if (!isNullString(feedWatchActions)) {
174 this.getProject().setProperty(feedWatchActionTheValue + DOT + j,!isNullString(newContent)?newContent:oldContent);
180 if (!isNullString(oldContent)) { this.getProject().setProperty(feedWatchActionOldValue + DOT + j,oldContent); }
181 if (!isNullString(newContent)) { this.getProject().setProperty(feedWatchActionNewValue + DOT + j,newContent); }
191 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionError + DOT + j, out); }
194 if (!isNullString(out)) { this.getProject().setProperty(feedWatchActionOuput + DOT + j, out); }
252 private static boolean isNullString(String str) method in class:RSSFeedWatcherTask
254 return RSSFeedUtil.isNullString(st
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DfeedTools.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/releng/ org/eclipse/releng/util/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DRSSFeedUtil.java94 if (!isNullString(out) && !EXPECTED_RESULT.equals(out)) {
100 if (!isNullString(out)) {
105 if (!isNullString(out)) {
138 public static boolean isNullString(String str) method in class:RSSFeedUtil
/external/webkit/Source/WebCore/dom/
H A DNode.cpp2095 static void appendTextContent(const Node* node, bool convertBRsToNewlines, bool& isNullString, StringBuilder& content) argument
2101 isNullString = false;
2106 isNullString = false;
2112 isNullString = false;
2121 isNullString = false;
2125 appendTextContent(child, convertBRsToNewlines, isNullString, content);
2140 bool isNullString = true; local
2141 appendTextContent(this, convertBRsToNewlines, isNullString, content);
2142 return isNullString ? String() : content.toString();

Completed in 1819 milliseconds