Home
last modified time | relevance | path

Searched refs:nullable (Results 1 – 17 of 17) sorted by relevance

/external/bison/src/
Dnullable.c42 bool *nullable = NULL; variable
51 nullable[i - ntokens] ? "yes" : "no"); in nullable_print()
72 nullable = xcalloc (nvars, sizeof *nullable); in nullable_compute()
108 && ! nullable[rules_ruleno->lhs->number - ntokens]) in nullable_compute()
110 nullable[rules_ruleno->lhs->number - ntokens] = true; in nullable_compute()
121 if (r->useful && ! nullable[r->lhs->number - ntokens]) in nullable_compute()
123 nullable[r->lhs->number - ntokens] = true; in nullable_compute()
141 free (nullable); in nullable_free()
Dnullable.h25 extern bool *nullable;
DMakefile.am52 nullable.c nullable.h \
Dlalr.c181 if (nullable[sym - ntokens]) in initialize_F()
265 if (nullable[*rp - ntokens]) in build_relations()
Dielr.c58 && nullable [item_number_as_symbol_number (ritem[i]) - ntokens]) in ielr_compute_ritem_sees_lookahead_set()
267 if (nullable[sym - ntokens]) in ielr_compute_always_follows()
DMakefile.in184 named-ref.$(OBJEXT) nullable.$(OBJEXT) output.$(OBJEXT) \
1449 nullable.c nullable.h \
1650 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nullable.Po@am__quote@
/external/chromium_org/third_party/ply/
Dyacc.py2094 nullable = {}
2099 nullable[p.name] = 1
2102 if not t in nullable: break
2104 nullable[p.name] = 1
2105 if len(nullable) == num_nullable: break
2106 num_nullable = len(nullable)
2107 return nullable
2140 def dr_relation(self,C,trans,nullable): argument
2207 def compute_lookback_includes(self,C,trans,nullable): argument
2242 if not p.prod[li] in nullable: break
[all …]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
DTestInterfaceEventConstructor.idl42 …nlyNullableTestInterfaceEmptyAttribute; // FIXME: implement getters for nullable interface type at…
/external/bison/tests/
Dsets.at68 # At some point, nullable had been smoking grass, and managed to say:
Dexisting.at77 # computation of nullable. It reported 485 SR conflicts!
/external/eclipse-windowbuilder/propertysheet/.settings/
Dorg.eclipse.jdt.core.prefs6 org.eclipse.jdt.core.compiler.annotation.nullable=com.android.annotations.Nullable
/external/bison/
DChangeLog-19981111 * src/nullable.c (set_nullable): Ignore those rules.
1308 src/nullable.c src/output.c src/print.c src/reader.c src/reduce.c
1320 src/reader.c, src/print.c, src/output.c, src/nullable.c,
DChangeLog-20121072 * src/named-ref.h, src/nullable.c, src/nullable.h:
4808 * src/nullable.c, src/nullable.h, src/output.c, src/output.h:
8928 * src/nullable.c (nullable_compute, token_definitions_output):
9446 * src/nullable.c: Likewise.
10971 src/muscle_tab.h, src/nullable.c, src/nullable.h, src/output.c,
11344 * src/nullable.c (nullable_compute): Likewise.
11555 * src/nullable.c (nullable_compute): Likewise, for squeue, relts.
11631 src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l,
12399 * src/nullable.c (nullable_compute): Likewise.
13007 * src/nullable.c (nullable_compute): Likewise.
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java727 boolean nullable) in getBestRowIdentifier() argument
/external/antlr/antlr-3.4/runtime/C/
DREADME1169 * ^(ROOT ID?) Didn't work; nor did any other nullable child list such as
1170 ^(ROOT ID* INT?). Now, I check to see if child list is nullable using
1174 * Fixed a bug in LOOK that made it not look through nullable rules.
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DCodeGenTreeWalker.g892 // nullable child list if we can see the UP as the next token
/external/antlr/antlr-3.4/tool/
DCHANGES.txt2739 * ^(ROOT ID?) Didn't work; nor did any other nullable child list such as
2740 ^(ROOT ID* INT?). Now, I check to see if child list is nullable using
2744 * Fixed a bug in LOOK that made it not look through nullable rules.