HomeSort by relevance Sort by last modified time
    Searched refs:macroArgs (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/docs/examples/
TestAPI.java 37 System.err.println("Usage: java TestAPI <script> [ macroargs... ]");
42 String[] macroArgs = new String[args.length - 1];
43 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1));
54 consumer.compile(file, macroArgs);
TestAPI2.java 38 "[ macroargs... ]");
43 String[] macroArgs = new String[args.length - 1];
44 System.arraycopy(args, 1, macroArgs, 0, (args.length - 1));
63 consumer.compile(file, macroArgs);
  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Consumer.java 84 * @see #compile(File program, String[] macroArgs)
85 * @see #compile(String program, String[] macroArgs)
97 * @param macroArgs macro substitutions for <i>$n</i> placeholders
98 * embedded in the given D program: {@code macroArgs[0]} replaces
99 * all occurrences of {@code $1}, {@code macroArgs[1]} replaces all
102 * included in the {@code macroArgs} parameter. See the <a
115 * @see #compile(File program, String[] macroArgs)
117 public Program compile(String program, String ... macroArgs)
126 * @param macroArgs macro substitutions for <i>$n</i> placeholders
127 * embedded in the given D program: {@code macroArgs[0]} replace
    [all...]
LocalConsumer.java 341 compile(String program, String ... macroArgs) throws DTraceException
350 if (macroArgs != null) {
351 for (String macroArg : macroArgs) {
356 argv = new String[macroArgs.length + 1];
364 System.arraycopy(macroArgs, 0, argv, 1, macroArgs.length);
382 compile(File program, String ... macroArgs) throws DTraceException,
396 if (macroArgs != null) {
397 for (String macroArg : macroArgs) {
402 argv = new String[macroArgs.length + 1]
    [all...]

Completed in 179 milliseconds