Searched refs:processorPath (Results 1 – 4 of 4) sorted by relevance
85 public abstract ImmutableList<String> processorPath(); in processorPath() method in TurbineOptions193 public Builder addProcessorPathEntries(Iterable<String> processorPath) { in addProcessorPathEntries() argument194 return setProcessorPath(ImmutableList.copyOf(processorPath)); in addProcessorPathEntries()197 public abstract Builder setProcessorPath(ImmutableList<String> processorPath); in setProcessorPath() argument
363 ImmutableList<String> processorPath, in initializeProcessors() argument371 if (!processorPath.isEmpty()) { in initializeProcessors()374 toUrls(processorPath), in initializeProcessors()446 private static URL[] toUrls(ImmutableList<String> processorPath) throws MalformedURLException { in toUrls() argument447 URL[] urls = new URL[processorPath.size()]; in toUrls()449 for (String path : processorPath) { in toUrls()
91 assertThat(options.processorPath()).containsExactly("libproc1.jar", "libproc2.jar").inOrder(); in exhaustiveArgs()143 assertThat(options.processorPath()) in classpathArgs()165 assertThat(options.processorPath()) in repeatedClasspath()
259 /* processorPath= */ options.processorPath(), in bind()