HomeSort by relevance Sort by last modified time
    Searched refs:nullable (Results 1 - 25 of 26) sorted by null

1 2

  /external/bison/src/
nullable.h 24 NULLABLE[I - NTOKENS] is nonzero if symbol I can do so. */
25 extern bool *nullable;
27 /* Set up NULLABLE. */
30 /* Free NULLABLE. */
nullable.c 22 /* Set up NULLABLE, a vector saying which nonterminals can expand into
23 the null string. NULLABLE[I - NTOKENS] is nonzero if symbol I can
31 #include "nullable.h"
42 bool *nullable = NULL; variable
48 fputs ("NULLABLE\n", out);
51 nullable[i - ntokens] ? "yes" : "no");
72 nullable = xcalloc (nvars, sizeof *nullable);
108 && ! nullable[rules_ruleno->lhs->number - ntokens])
110 nullable[rules_ruleno->lhs->number - ntokens] = true
    [all...]
lalr.c 38 #include "nullable.h"
181 if (nullable[sym - ntokens])
265 if (nullable[*rp - ntokens])
ielr.c 33 #include "nullable.h"
45 * the same RHS are nullable nonterminals. In other words, the follows of
58 && nullable [item_number_as_symbol_number (ritem[i]) - ntokens])
91 * - All other RHS symbols are nullable nonterminals.
119 are nullable nonterminals, create an edge from the LHS
216 RHS (if any) are nullable nonterminals, then record this item as
267 if (nullable[sym - ntokens])
    [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() ? "*" : "");
lalr_item.java 188 /* consider all nullable symbols after the one to the right of the dot */
209 /* if its nullable we continue adding, if not, we are done */
210 if (!((non_terminal)sym).nullable())
216 /* if we get here everything past the dot was nullable
225 * way to the end of the right hand side is nullable. This would indicate
240 /* walk down the rhs and bail if we get a non-nullable symbol */
253 /* if its not nullable we fail */
254 if (!((non_terminal)sym).nullable()) return false;
258 /* if we get here its all 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...]
  /external/bison/
Android.mk 170 src/nullable.c \
  /external/chromium_org/third_party/ply/
yacc.py     [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /libcore/luni/src/main/java/java/sql/
DatabaseMetaData.java 467 * <li>{@code NULLABLE} - int - whether {@code NULL} is permitted:
576 * @param nullable
577 * {@code true} = include columns that are nullable, {@code
578 * false} = do not include nullable columns.
585 String table, int scope, boolean nullable) throws SQLException;
683 * <li>{@code NULLABLE} - int - whether the column allows {@code null}s:
    [all...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 340 String[] nullable = {"YES", "NO",""}; local
348 Arrays.sort(nullable);
362 assertTrue("Invalid nullable value", Arrays.binarySearch(
363 nullable, rs.getString("IS_NULLABLE")) > -1);
364 assertTrue("Invalid nullable code", Arrays.binarySearch(
365 nullableInt, rs.getInt("NULLABLE")) > -1);
    [all...]
  /art/runtime/
check_jni.cc 107 #define kFlag_NullableUtf 0x0020 // Are our UTF parameters nullable?
273 JniAbortF(function_name_, "non-nullable argument was NULL");
398 * Use the kFlag_NullableUtf flag where 'u' field(s) are nullable.
568 bool nullable = ((flags_ & kFlag_NullableUtf) != 0); local
569 CheckUtfString(va_arg(ap, const char*), nullable); local
817 void CheckUtfString(const char* bytes, bool nullable) {
819 if (!nullable) {
820 JniAbortF(function_name_, "non-nullable const char* was NULL");
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 619 "NUM_PREC_RADIX", "NULLABLE", "REMARKS",
727 boolean nullable)
1144 "NULLABLE", "CASE_SENSITIVE", "SEARCHABLE",
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 2837 milliseconds

1 2