Home
last modified time | relevance | path

Searched refs:conflicts (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
DConflictingRequirementsException.java31 private Set<Feature<?>> conflicts; field in ConflictingRequirementsException
35 String message, Set<Feature<?>> conflicts, Object source) { in ConflictingRequirementsException() argument
37 this.conflicts = conflicts; in ConflictingRequirementsException()
42 return conflicts; in getConflicts()
/external/bison/tests/
Dconflicts.at1 # Exercising Bison on conflicts. -*- Autotest -*-
41 [[input.y:4.9: warning: rule useless in parser due to conflicts: e: /* empty */
45 [[input.y:4.9: warning: rule useless in parser due to conflicts
513 [[input.y: conflicts: 2 shift/reduce
523 [[input.y: conflicts: 2 shift/reduce
533 [[input.y: conflicts: 2 shift/reduce
557 [input.y: conflicts: 1 shift/reduce
562 [[State 5 conflicts: 1 shift/reduce
754 # When there are RR conflicts, some rules are disabled. Usually it is
787 [[input.y: conflicts: 1 reduce/reduce
[all …]
/external/valgrind/helgrind/tests/
Dpth_barrier2.stderr.exp29 This conflicts with a previous write of size 1 by thread #x
48 This conflicts with a previous write of size 1 by thread #x
67 This conflicts with a previous write of size 1 by thread #x
86 This conflicts with a previous write of size 1 by thread #x
105 This conflicts with a previous write of size 1 by thread #x
124 This conflicts with a previous write of size 1 by thread #x
143 This conflicts with a previous write of size 1 by thread #x
162 This conflicts with a previous write of size 1 by thread #x
181 This conflicts with a previous write of size 1 by thread #x
200 This conflicts with a previous write of size 1 by thread #x
[all …]
Dtc19_shadowmem.stderr.exp35 This conflicts with a previous write of size 1 by thread #x
70 This conflicts with a previous write of size 1 by thread #x
105 This conflicts with a previous write of size 1 by thread #x
140 This conflicts with a previous write of size 1 by thread #x
175 This conflicts with a previous write of size 1 by thread #x
210 This conflicts with a previous write of size 1 by thread #x
245 This conflicts with a previous write of size 1 by thread #x
280 This conflicts with a previous write of size 1 by thread #x
315 This conflicts with a previous write of size 1 by thread #x
350 This conflicts with a previous write of size 1 by thread #x
[all …]
Dtc19_shadowmem.stderr.exp-mips3233 This conflicts with a previous write of size 1 by thread #x
70 This conflicts with a previous write of size 1 by thread #x
107 This conflicts with a previous write of size 1 by thread #x
144 This conflicts with a previous write of size 1 by thread #x
181 This conflicts with a previous write of size 1 by thread #x
218 This conflicts with a previous write of size 1 by thread #x
255 This conflicts with a previous write of size 1 by thread #x
292 This conflicts with a previous write of size 1 by thread #x
329 This conflicts with a previous write of size 1 by thread #x
366 This conflicts with a previous write of size 1 by thread #x
[all …]
Dannotate_rwlock.stderr.exp24 This conflicts with a previous write of size 4 by thread #x
41 This conflicts with a previous write of size 4 by thread #x
58 This conflicts with a previous read of size 4 by thread #x
75 This conflicts with a previous read of size 4 by thread #x
92 This conflicts with a previous read of size 4 by thread #x
114 This conflicts with a previous read of size 4 by thread #x
Dtc06_two_races.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
47 This conflicts with a previous write of size 4 by thread #x
61 This conflicts with a previous write of size 4 by thread #x
Dtc06_two_races_xml.stderr.exp95 <text>This conflicts with a previous write of size 4 by thread #x</text>
140 <text>This conflicts with a previous write of size 4 by thread #x</text>
185 <text>This conflicts with a previous write of size 4 by thread #x</text>
230 <text>This conflicts with a previous write of size 4 by thread #x</text>
Dtc01_simple_race.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
Dtc05_simple_race.stderr.exp19 This conflicts with a previous write of size 4 by thread #x
33 This conflicts with a previous write of size 4 by thread #x
Dtc16_byterace.stderr.exp19 This conflicts with a previous write of size 1 by thread #x
33 This conflicts with a previous write of size 1 by thread #x
Dhg04_race.stderr.exp24 This conflicts with a previous write of size 4 by thread #x
40 This conflicts with a previous write of size 4 by thread #x
/external/bison/src/
Dconflicts.c41 static char *conflicts; variable
373 conflicts[s->number] = 1; in set_conflicts()
391 conflicts = xcalloc (nstates, sizeof *conflicts); in conflicts_solve()
418 conflicts[old_to_new[i]] = conflicts[i]; in conflicts_update_state_numbers()
513 if (conflicts[i]) in conflicts_output()
541 if (conflicts[i]) in conflicts_total_count()
573 if (conflicts[i]) in conflicts_print()
632 free (conflicts); in conflicts_free()
/external/mesa3d/src/mesa/program/
Dregister_allocate.c83 GLboolean *conflicts; member
174 regs->regs[i].conflicts = rzalloc_array(regs->regs, GLboolean, count); in ra_alloc_reg_set()
175 regs->regs[i].conflicts[i] = GL_TRUE; in ra_alloc_reg_set()
197 reg1->conflicts[r2] = GL_TRUE; in ra_add_conflict_list()
203 if (!regs->regs[r1].conflicts[r2]) { in ra_add_reg_conflict()
277 int conflicts = 0; in ra_set_finalize() local
286 conflicts++; in ra_set_finalize()
288 max_conflicts = MAX2(max_conflicts, conflicts); in ra_set_finalize()
430 g->regs->regs[r].conflicts[g->nodes[n2].reg]) { in ra_select()
/external/v8/test/unittests/compiler/
Dcoalesced-live-ranges-unittest.cc57 auto conflicts = ranges().GetConflicts(range); in RemoveConflicts() local
59 for (auto c = conflicts.Current(); c != nullptr; in RemoveConflicts()
60 c = conflicts.RemoveCurrentAndGetNext()) { in RemoveConflicts()
77 auto conflicts = ranges().GetConflicts(range); in IsRangeConflictingWith() local
78 for (auto conflict = conflicts.Current(); conflict != nullptr; in IsRangeConflictingWith()
79 conflict = conflicts.GetNext()) { in IsRangeConflictingWith()
/external/bison/po/
Duk.po36 #: src/conflicts.c:77
41 #: src/conflicts.c:86
46 #: src/conflicts.c:94
51 #: src/conflicts.c:492
53 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
56 #: src/conflicts.c:495
58 msgid "conflicts: %d shift/reduce\n"
61 #: src/conflicts.c:497
63 msgid "conflicts: %d reduce/reduce\n"
66 #: src/conflicts.c:515
[all …]
Dsr.po34 #: src/conflicts.c:77
39 #: src/conflicts.c:86
44 #: src/conflicts.c:94
49 #: src/conflicts.c:492
51 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
54 #: src/conflicts.c:495
56 msgid "conflicts: %d shift/reduce\n"
59 #: src/conflicts.c:497
61 msgid "conflicts: %d reduce/reduce\n"
64 #: src/conflicts.c:515
[all …]
Dbison.pot34 #: src/conflicts.c:77
39 #: src/conflicts.c:86
44 #: src/conflicts.c:94
49 #: src/conflicts.c:492
51 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
54 #: src/conflicts.c:495
56 msgid "conflicts: %d shift/reduce\n"
59 #: src/conflicts.c:497
61 msgid "conflicts: %d reduce/reduce\n"
64 #: src/conflicts.c:515
[all …]
Dpt.po36 #: src/conflicts.c:77
41 #: src/conflicts.c:86
46 #: src/conflicts.c:94
51 #: src/conflicts.c:492
53 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
56 #: src/conflicts.c:495
58 msgid "conflicts: %d shift/reduce\n"
61 #: src/conflicts.c:497
63 msgid "conflicts: %d reduce/reduce\n"
66 #: src/conflicts.c:515
[all …]
Dzh_CN.po34 #: src/conflicts.c:77
39 #: src/conflicts.c:86
44 #: src/conflicts.c:94
49 #: src/conflicts.c:492
51 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
54 #: src/conflicts.c:495
56 msgid "conflicts: %d shift/reduce\n"
59 #: src/conflicts.c:497
61 msgid "conflicts: %d reduce/reduce\n"
64 #: src/conflicts.c:515
[all …]
Del.po35 #: src/conflicts.c:77
42 #: src/conflicts.c:86
49 #: src/conflicts.c:94
56 #: src/conflicts.c:492
58 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
61 #: src/conflicts.c:495
63 msgid "conflicts: %d shift/reduce\n"
66 #: src/conflicts.c:497
68 msgid "conflicts: %d reduce/reduce\n"
71 #: src/conflicts.c:515
[all …]
Dzh_TW.po34 #: src/conflicts.c:77
39 #: src/conflicts.c:86
44 #: src/conflicts.c:94
49 #: src/conflicts.c:492
51 msgid "conflicts: %d shift/reduce, %d reduce/reduce\n"
54 #: src/conflicts.c:495
56 msgid "conflicts: %d shift/reduce\n"
59 #: src/conflicts.c:497
61 msgid "conflicts: %d reduce/reduce\n"
64 #: src/conflicts.c:515
[all …]
/external/dhcpcd-6.8.2/
Dipv4ll.c134 state->conflicts = 0; in ipv4ll_announced()
194 if (++state->conflicts == MAX_CONFLICTS) in ipv4ll_conflicted()
200 state->conflicts >= MAX_CONFLICTS ? in ipv4ll_conflicted()
220 if (state->conflicts == 0) { in ipv4ll_start()
/external/clang/test/SemaObjC/
Doverride-nullability.m12 …warning {{conflicting nullability specifier on return types, 'nullable' conflicts with existing sp…
13 …rning {{conflicting nullability specifier on parameter types, 'nonnull' conflicts with existing sp…
Dnullability.m39 …onflictingMethod1; // expected-error{{nullability specifier '_Nullable' conflicts with existing sp…
45 …flictingProperty1; // expected-error{{nullability specifier '_Nullable' conflicts with existing sp…
48 …nflictingProperty3; // expected-error{{nullability specifier 'nullable' conflicts with existing sp…
56 …flictingProperty2; // expected-error{{nullability specifier '_Nullable' conflicts with existing sp…
102 …cified NSFoo*)foo { // expected-error{{nullability specifier 'nullable' conflicts with existing sp…
103 …// expected-error{{nullability specifier 'null_unspecified' conflicts with existing specifier 'non…
160 …(nonnull id)blah; // expected-error {{nullability specifier '_Nullable' conflicts with existing sp…

12345678910>>...14