/external/guava/guava-testlib/src/com/google/common/collect/testing/features/ |
ConflictingRequirementsException.java | 30 private Set<Feature<?>> conflicts; field in class:ConflictingRequirementsException 34 String message, Set<Feature<?>> conflicts, Object source) { 36 this.conflicts = conflicts; 41 return conflicts;
|
/external/openfst/src/lib/ |
symbol-table-ops.cc | 50 vector<string> conflicts; local 65 conflicts.push_back(riter.Symbol()); 79 for (int i= 0; i < conflicts.size(); ++i) { 80 merged->AddSymbol(conflicts[i]);
|
/external/dhcpcd/ |
ipv4ll.c | 95 iface->state->conflicts = 0; 135 iface->state->conflicts = -1; 148 if (++iface->state->conflicts > MAX_CONFLICTS) {
|
/frameworks/webview/chromium/tools/ |
merge_common.py | 148 """Checks for conflicts and commits once they are resolved. 150 Certain conflicts are resolved automatically; if any remain, the user is 155 unattended: If running unattended, abort on conflicts. 158 TemporaryMergeError: If there are conflicts in unattended mode. 182 conflicts = re.findall(r'^((DD|AU|UD|UA|DU|AA|UU) [^\n]+)$', status, 184 if not conflicts: 188 raise TemporaryMergeError('Cannot resolve merge conflicts.') 189 conflicts_string = '\n'.join([x[0] for x in conflicts]) 191 ('The following conflicts exist and must be resolved.\n\n%s\n\nWhen '
|
/external/valgrind/main/helgrind/tests/ |
tc01_simple_race.stderr.exp | 19 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
|
tc05_simple_race.stderr.exp | 19 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
|
tc16_byterace.stderr.exp | 19 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
|
tc06_two_races.stderr.exp | 19 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
|
annotate_rwlock.stderr.exp | 24 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 113 This conflicts with a previous read of size 4 by thread #x
|
free_is_write.stderr.exp | 23 This conflicts with a previous read of size 1 by thread #x
|
hg03_inherit.stderr.exp | 21 This conflicts with a previous read of size 4 by thread #x
|
locked_vs_unlocked3.stderr.exp | 27 This conflicts with a previous write of size 4 by thread #x
|
rwlock_race.stderr.exp | 24 This conflicts with a previous write of size 4 by thread #x
|
tc19_shadowmem.stderr.exp | 31 This conflicts with a previous write of size 1 by thread #x 65 This conflicts with a previous write of size 1 by thread #x 99 This conflicts with a previous write of size 1 by thread #x 133 This conflicts with a previous write of size 1 by thread #x 167 This conflicts with a previous write of size 1 by thread #x 201 This conflicts with a previous write of size 1 by thread #x 235 This conflicts with a previous write of size 1 by thread #x 269 This conflicts with a previous write of size 1 by thread #x 303 This conflicts with a previous write of size 1 by thread #x 337 This conflicts with a previous write of size 1 by thread # [all...] |
hg04_race.stderr.exp | 24 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
|
hg05_race2.stderr.exp | 24 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
|
pth_barrier2.stderr.exp | 25 This conflicts with a previous write of size 1 by thread #x 43 This conflicts with a previous write of size 1 by thread #x 61 This conflicts with a previous write of size 1 by thread #x 79 This conflicts with a previous write of size 1 by thread #x 97 This conflicts with a previous write of size 1 by thread #x 115 This conflicts with a previous write of size 1 by thread #x 133 This conflicts with a previous write of size 1 by thread #x 151 This conflicts with a previous write of size 1 by thread #x 169 This conflicts with a previous write of size 1 by thread #x 187 This conflicts with a previous write of size 1 by thread # [all...] |
tc21_pthonce.stderr.exp | 24 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
|
locked_vs_unlocked1_fwd.stderr.exp | 29 This conflicts with a previous write of size 4 by thread #x
|
locked_vs_unlocked1_rev.stderr.exp | 29 This conflicts with a previous write of size 4 by thread #x
|
locked_vs_unlocked2.stderr.exp | 35 This conflicts with a previous write of size 4 by thread #x
|
pth_barrier1.stderr.exp | 25 This conflicts with a previous write of size 1 by thread #x
|
/external/bison/src/ |
conflicts.c | 1 /* Find and resolve or report lookahead conflicts for bison, 28 #include "conflicts.h" 41 static char *conflicts; variable 322 | Solve the S/R conflicts of state S using the | 324 | conflicts. ERRORS can be used as storage to compute the list of | 370 for conflicts not resolved above. */ 374 conflicts[s->number] = 1; 381 | Solve all the S/R conflicts using the precedence/associativity, | 382 | and flag as inconsistent the states that still have conflicts. | 392 conflicts = xcalloc (nstates, sizeof *conflicts) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
register_allocate.c | 83 GLboolean *conflicts; member in struct:ra_reg 174 regs->regs[i].conflicts = rzalloc_array(regs->regs, GLboolean, count); 175 regs->regs[i].conflicts[i] = GL_TRUE; 197 reg1->conflicts[r2] = GL_TRUE; 203 if (!regs->regs[r1].conflicts[r2]) { 211 * anything that base_reg conflicts with. 256 * Must be called after all conflicts and register classes have been 277 int conflicts = 0; local 286 conflicts++; 288 max_conflicts = MAX2(max_conflicts, conflicts); [all...] |
/external/mesa3d/src/mesa/program/ |
register_allocate.c | 83 GLboolean *conflicts; member in struct:ra_reg 174 regs->regs[i].conflicts = rzalloc_array(regs->regs, GLboolean, count); 175 regs->regs[i].conflicts[i] = GL_TRUE; 197 reg1->conflicts[r2] = GL_TRUE; 203 if (!regs->regs[r1].conflicts[r2]) { 211 * anything that base_reg conflicts with. 256 * Must be called after all conflicts and register classes have been 277 int conflicts = 0; local 286 conflicts++; 288 max_conflicts = MAX2(max_conflicts, conflicts); [all...] |