Home
last modified time | relevance | path

Searched refs:conflict (Results 1 - 25 of 34) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DexportAsNamespace_augment.js6 export const conflict = 0;
14 export const conflict = 0;
20 export const conflict = 0;
23 a.x + a.y + a.z + a.conflict;
24 a2.x + a2.y + a2.z + a2.conflict;
31 a.x + a.y + a.z + a.conflict;
32 a2.x + a2.y + a2.z + a2.conflict;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DValidateVaryingLocations.cpp151 auto conflict = locationMap->find(offsetLocation); in MarkVaryingLocations() local
152 if (conflict != locationMap->end()) in MarkVaryingLocations()
160 strstr << "' conflicting location with '" << conflict->second.symbol->getName(); in MarkVaryingLocations()
161 if (conflict->second.field) in MarkVaryingLocations()
163 strstr << "." << conflict->second.field->name(); in MarkVaryingLocations()
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dregalloc.c252 util_dynarray_foreach(&info->conflict_list, unsigned, conflict) { in push_stack()
253 struct reg_info *conflict_info = &ctx->registers[*conflict]; in push_stack()
256 if (!ctx->registers[*conflict].visited && can_simplify(ctx, *conflict)) { in push_stack()
257 ctx->worklist[ctx->worklist_end++] = *conflict; in push_stack()
258 ctx->registers[*conflict].visited = true; in push_stack()
319 struct reg_info *conflict = &ctx->registers[*conflict_idx]; in do_regalloc() local
320 if (conflict->assigned_color >= 0 && in do_regalloc()
321 conflict->assigned_color == (int) candidate) { in do_regalloc()
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_asm.c40 bool conflict = false; in check_uniforms() local
53 conflict = true; in check_uniforms()
58 return !conflict; in check_uniforms()
/third_party/node/deps/npm/node_modules/diff/lib/patch/
H A Dmerge.js189 index.conflict = true;
294 conflict(hunk, collectChange(mine), collectChange(their));
421 conflict(hunk, myChanges, theirChanges);
451 conflict(hunk, swap ? theirChanges : myChanges, swap ? myChanges : theirChanges);
455 function conflict(hunk, mine, their) { function
456 hunk.conflict = true;
458 conflict: true,
518 matchIndex++; // Consume any additions in the other block as a conflict to attempt
/third_party/rust/crates/clap/clap_complete_fig/src/
H A Dfig.rs223 for conflict in conflicts { in gen_options()
228 escape_string(&conflict), in gen_options()
322 for conflict in conflicts { in gen_options()
327 escape_string(&conflict), in gen_options()
478 for conflict in cmd.get_arg_conflicts_with(arg) { in arg_conflicts()
479 if let Some(s) = conflict.get_short() { in arg_conflicts()
483 if let Some(l) = conflict.get_long() { in arg_conflicts()
/third_party/node/deps/openssl/openssl/crypto/engine/
H A Deng_list.c59 int conflict = 0; in engine_list_add() local
67 while (iterator && !conflict) { in engine_list_add()
68 conflict = (strcmp(iterator->id, e->id) == 0); in engine_list_add()
71 if (conflict) { in engine_list_add()
/third_party/openssl/crypto/engine/
H A Deng_list.c59 int conflict = 0; in engine_list_add() local
67 while (iterator && !conflict) { in engine_list_add()
68 conflict = (strcmp(iterator->id, e->id) == 0); in engine_list_add()
71 if (conflict) { in engine_list_add()
/third_party/python/Lib/idlelib/
H A Dfilelist.py89 conflict = self.dict[newkey]
90 self.inversedict[conflict] = None
/third_party/node/deps/v8/src/parsing/
H A Dpreparser.cc190 const AstRawString* conflict = inner_scope->FindVariableDeclaredIn( in PreParseFunction() local
192 if (conflict != nullptr) in PreParseFunction()
193 ReportVarRedeclarationIn(conflict, inner_scope); in PreParseFunction()
H A Dparser-base.h4408 const AstRawString* conflict = inner_scope->FindVariableDeclaredIn( in ParseFunctionBody() local
4410 if (conflict != nullptr) { in ParseFunctionBody()
4411 impl()->ReportVarRedeclarationIn(conflict, inner_scope); in ParseFunctionBody()
5947 const AstRawString* conflict = nullptr; in ParseTryStatement() local
5950 if (inner_scope->LookupLocal(name)) conflict = name; in ParseTryStatement()
5952 conflict = inner_scope->FindVariableDeclaredIn( in ParseTryStatement()
5955 if (conflict != nullptr) { in ParseTryStatement()
5956 impl()->ReportVarRedeclarationIn(conflict, inner_scope); in ParseTryStatement()
/third_party/icu/icu4c/source/test/cintltst/
H A Dudatpg_test.c260 UDateTimePatternConflict conflict; in TestBuilder() local
283 conflict = udatpg_addPattern(dtpg, redundantPattern, 5, false, result, 20, in TestBuilder()
290 conflict = udatpg_addPattern(dtpg, redundantPattern, 5, false, result, 20, in TestBuilder()
292 if(conflict == UDATPG_NO_CONFLICT) { in TestBuilder()
307 conflict = udatpg_addPattern(dtpg, testPattern2, 7, false, result, 20, in TestBuilder()
309 if((conflict != UDATPG_NO_CONFLICT)||U_FAILURE(errorCode)) { in TestBuilder()
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_register_allocate.c68 bool conflict = false; in agx_assign_regs() local
71 conflict |= BITSET_TEST(used_regs, reg + j); in agx_assign_regs()
73 if (!conflict) { in agx_assign_regs()
/third_party/python/Parser/
H A Dasdl.py167 conflict = self.cons.get(key)
168 if conflict is None:
172 print('Defined in {} and {}'.format(conflict, name))
/third_party/mesa3d/src/util/
H A Dregister_allocate.c62 * register in C could conflict with. Then, this system replaces the
151 * Adds a conflict between base_reg and reg, and also between reg and
185 unsigned int conflict = *i; in ra_add_transitive_reg_pair_conflict() local
186 if (conflict != reg1) in ra_add_transitive_reg_pair_conflict()
187 ra_add_reg_conflict(regs, reg0, conflict); in ra_add_transitive_reg_pair_conflict()
188 if (conflict != reg0) in ra_add_transitive_reg_pair_conflict()
189 ra_add_reg_conflict(regs, reg1, conflict); in ra_add_transitive_reg_pair_conflict()
194 * Makes every conflict on the given register transitive. In other words,
195 * every register that conflicts with r will now conflict with every other
308 * allocation to C could conflict wit in ra_set_finalize()
[all...]
/third_party/node/deps/npm/node_modules/diff/lib/
H A Dindex.es6.js1329 index.conflict = true;
1398 conflict(hunk, collectChange(mine), collectChange(their));
1435 conflict(hunk, myChanges, theirChanges);
1447 conflict(hunk, swap ? theirChanges : myChanges, swap ? myChanges : theirChanges);
1451 function conflict(hunk, mine, their) {
1452 hunk.conflict = true;
1454 conflict: true,
1514 matchIndex++; // Consume any additions in the other block as a conflict to attempt
/third_party/ffmpeg/libavutil/x86/
H A Dtx_float.asm621 movaps [outq + (0 + 1 + %1)*mmsize + %6], m10 ; m0 conflict
622 movaps [outq + %3 + (0 + 1 + %1)*mmsize + %6], m11 ; m1 conflict
629 movaps [outq + %4 + (0 + 1 + %1)*mmsize + %6], m12 ; m4 conflict
630 movaps [outq + %5 + (0 + 1 + %1)*mmsize + %6], m13 ; m5 conflict
/third_party/lwip/src/apps/mdns/
H A Dmdns.c1780 * Only prints debug for now. Will need more code to do conflict resolution.
1818 u8_t conflict = 0; in mdns_handle_response() local
1823 conflict = 1; in mdns_handle_response()
1834 conflict = 1; in mdns_handle_response()
1838 if (conflict != 0) { in mdns_handle_response()
2342 * or with a conflict. */
/third_party/selinux/libsepol/src/
H A Dexpand.c1526 /* conflict */ in exp_rangetr_helper()
1714 int conflict; in expand_terule_helper() local
1732 conflict = 0; in expand_terule_helper()
1738 conflict = 1; in expand_terule_helper()
1742 conflict = 2; in expand_terule_helper()
1746 if (conflict) { in expand_terule_helper()
1759 if ((conflict == 1 && cond == NULL) in expand_terule_helper()
3269 ERR(NULL, "Type conflict!"); in expand_avtab_insert()
3396 ERR(NULL, "Type conflict!"); in expand_cond_insert()
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse.c2676 struct lock *conflict; in fuse_lib_getlk() local
2682 conflict = locks_conflict(get_node(f, ino), &l); in fuse_lib_getlk()
2683 if (conflict) in fuse_lib_getlk()
2684 lock_to_flock(conflict, lock); in fuse_lib_getlk()
2686 if (!conflict) in fuse_lib_getlk()
/third_party/python/Tools/msi/
H A Dbuildrelease.bat20 rem The files available from the default URL *will* conflict with your
/third_party/libfuse/lib/
H A Dfuse.c4144 struct lock *conflict; in fuse_lib_getlk() local
4150 conflict = locks_conflict(get_node(f, ino), &l); in fuse_lib_getlk()
4151 if (conflict) in fuse_lib_getlk()
4152 lock_to_flock(conflict, lock); in fuse_lib_getlk()
4154 if (!conflict) in fuse_lib_getlk()
/third_party/node/deps/v8/src/compiler/backend/
H A Dregister-allocator.cc3080 // they cannot conflict as they are built before register in SpillNotLiveRanges()
3235 // We know that there is no conflict with active ranges, so just in ReloadLiveRanges()
3251 // We know that there is no conflict with active ranges, so just in ReloadLiveRanges()
3388 bool conflict = false; in ComputeStateFromManyPredecessors()
3399 if (uses > register_max || (conflict && uses == register_max)) { in ComputeStateFromManyPredecessors()
3402 conflict = check_aliasing ? CheckConflict(rep, reg, to_be_live) in ComputeStateFromManyPredecessors()
3406 if (conflict) { in ComputeStateFromManyPredecessors()
3465 // The inactive range might conflict, so check whether we need to in UpdateDeferredFixedRanges()
3468 // conflict then. in UpdateDeferredFixedRanges()
3471 // There is no conflict o in UpdateDeferredFixedRanges()
[all...]
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm1609 choose delimiters that do not conflict with what you are doing. The
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm1609 choose delimiters that do not conflict with what you are doing. The

Completed in 59 milliseconds

12