HomeSort by relevance Sort by last modified time
    Searched defs:nullable (Results 1 - 8 of 8) sorted by null

  /external/bison/src/
nullable.c 24 /* Set up NULLABLE, a vector saying which nonterminals can expand into
25 the null string. NULLABLE[I - NTOKENS] is nonzero if symbol I can
33 #include "nullable.h"
44 bool *nullable = NULL; variable
50 fputs ("NULLABLE\n", out);
53 nullable[i - ntokens] ? "yes" : "no");
74 nullable = xcalloc (nvars, sizeof *nullable);
110 && ! nullable[rules_ruleno->lhs->number - ntokens])
112 nullable[rules_ruleno->lhs->number - ntokens] = true
    [all...]
  /cts/tools/dasm/src/java_cup/
non_terminal.java 137 /* only look at things that aren't already marked nullable */
138 if (!nt.nullable())
236 public boolean nullable() {return _nullable;} method in class:non_terminal
258 /** Test to see if this non terminal currently looks nullable. */
261 /* look and see if any of the productions now look nullable */
263 /* if the production can go to empty, we are nullable */
267 /* none of the productions can go to empty, so we are not nullable */
276 return super.toString() + "[" + index() + "]" + (nullable() ? "*" : "");
production.java 237 public boolean nullable() {return _nullable;} method in class:production
605 /** Check to see if the production (now) appears to be nullable.
606 * A production is nullable if its RHS could derive the empty string.
608 * which themselves are nullable.
617 if (nullable_known()) return nullable();
619 /* if we have a zero size RHS we are directly nullable */
636 /* if its a terminal we are definitely not nullable */
639 /* its a non-term, is it marked nullable */
640 else if (!((non_terminal)sym).nullable())
641 /* this one not (yet) nullable, so we aren't *
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 360 notes = "tests for specific tables. test fails: invalid nullable value.",
369 String[] nullable = {"YES", "NO",""}; local
377 Arrays.sort(nullable);
391 assertTrue("Invalid nullable value", Arrays.binarySearch(
392 nullable, rs.getString("IS_NULLABLE")) > -1);
393 assertTrue("Invalid nullable code", Arrays.binarySearch(
394 nullableInt, rs.getInt("NULLABLE")) > -1);
    [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /prebuilt/common/jython/
jython.jar 

Completed in 139 milliseconds