Home
last modified time | relevance | path

Searched refs:existing (Results 1 – 25 of 2199) sorted by relevance

12345678910>>...88

/external/fonttools/Tests/ufoLib/
Dfilenames_test.py49 existing = ["a" * 5]
51 e = list(existing)
53 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
58 e = list(existing)
61 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
66 e = list(existing)
69 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
77 existing = [prefix + str(i) + suffix for i in range(100)]
79 e = list(existing)
81 handleClash2(existing=e, prefix=prefix, suffix=suffix),
[all …]
/external/llvm-project/lld/wasm/
DSymbolTable.cpp133 static void reportTypeError(const Symbol *existing, const InputFile *file, in reportTypeError() argument
135 error("symbol type mismatch: " + toString(*existing) + "\n>>> defined as " + in reportTypeError()
136 toString(existing->getWasmType()) + " in " + in reportTypeError()
137 toString(existing->getFile()) + "\n>>> defined as " + toString(type) + in reportTypeError()
144 static bool signatureMatches(FunctionSymbol *existing, in signatureMatches() argument
146 const WasmSignature *oldSig = existing->signature; in signatureMatches()
157 static void checkGlobalType(const Symbol *existing, const InputFile *file, in checkGlobalType() argument
159 if (!isa<GlobalSymbol>(existing)) { in checkGlobalType()
160 reportTypeError(existing, file, WASM_SYMBOL_TYPE_GLOBAL); in checkGlobalType()
164 const WasmGlobalType *oldType = cast<GlobalSymbol>(existing)->getGlobalType(); in checkGlobalType()
[all …]
/external/fonttools/Tests/misc/
Dfilenames_test.py84 existing = ["a" * 5]
86 e = list(existing)
88 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
93 e = list(existing)
96 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
101 e = list(existing)
104 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
112 existing = [prefix + str(i) + suffix for i in range(100)]
114 e = list(existing)
116 handleClash2(existing=e, prefix=prefix, suffix=suffix),
[all …]
/external/fonttools/Lib/fontTools/misc/
Dfilenames.py33 def userNameToFileName(userName, existing=[], prefix="", suffix=""): argument
131 if fullName.lower() in existing:
132 fullName = handleClash1(userName, existing, prefix, suffix)
136 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
179 if fullName.lower() not in existing:
188 finalName = handleClash2(existing, prefix, suffix)
192 def handleClash2(existing=[], prefix="", suffix=""): argument
226 if fullName.lower() not in existing:
/external/fonttools/Lib/fontTools/ufoLib/
Dfilenames.py18 def userNameToFileName(userName: str, existing=[], prefix="", suffix=""): argument
101 if fullName.lower() in existing:
102 fullName = handleClash1(userName, existing, prefix, suffix)
106 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
149 if fullName.lower() not in existing:
158 finalName = handleClash2(existing, prefix, suffix)
162 def handleClash2(existing=[], prefix="", suffix=""): argument
196 if fullName.lower() not in existing:
/external/llvm-project/lld/lib/Core/
DSymbolTable.cpp117 const Atom *existing = findByName(name); in addByName() local
118 if (existing == nullptr) { in addByName()
125 if (existing == &newAtom) in addByName()
130 switch (collide(existing->definition(), newAtom.definition())) { in addByName()
138 const auto *existingDef = cast<DefinedAtom>(existing); in addByName()
160 llvm::errs() << "Size mismatch: " << existing->name() << " (" in addByName()
166 llvm::errs() << "Duplicate symbols: " << existing->name() << ":" in addByName()
167 << existing->file().path() << " and " << newAtom.name() in addByName()
175 const UndefinedAtom* existingUndef = cast<UndefinedAtom>(existing); in addByName()
199 _replacedAtoms[existing] = &newAtom; in addByName()
[all …]
/external/autotest/server/site_tests/bluetooth_AdapterCLHealth/
Dcontrol.cl_sdp_service_search_attribute_request_test18 * non-existing Service, existing Attribute
19 * existing Service, non-existing Attribute
20 * non-existing Service, non-existing Attribute
21 * existing Service, existing Attribute
/external/mesa3d/src/compiler/glsl/
Dglsl_symbol_table.cpp139 symbol_table_entry *existing = get_entry(v->name); in add_variable() local
144 if (existing->v == NULL && existing->t == NULL) { in add_variable()
145 existing->v = v; in add_variable()
154 if (existing != NULL) in add_variable()
155 entry->f = existing->f; in add_variable()
196 symbol_table_entry *existing = get_entry(f->name); in add_function() local
197 if ((existing->f == NULL) && (existing->t == NULL)) { in add_function()
198 existing->f = f; in add_function()
/external/llvm/test/CodeGen/AArch64/
Dbitfield-insert.ll26 define void @test_whole32(i32* %existing, i32* %new) {
31 %oldval = load volatile i32, i32* %existing
39 store volatile i32 %combined, i32* %existing
44 define void @test_whole64(i64* %existing, i64* %new) {
50 %oldval = load volatile i64, i64* %existing
58 store volatile i64 %combined, i64* %existing
63 define void @test_whole32_from64(i64* %existing, i64* %new) {
71 %oldval = load volatile i64, i64* %existing
78 store volatile i64 %combined, i64* %existing
83 define void @test_32bit_masked(i32 *%existing, i32 *%new) {
[all …]
/external/toybox/tests/
Dmkdir.test10 touch existing
13 rm existing
26 mkdir existing
28 rmdir existing
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Ddeveloping_new_backend.md10 be significantly simpler and scalable than implementing every existing
16 without an existing [LLVM](http://llvm.org) backend.
17 2. Non-CPU-like hardware with an existing LLVM backend.
18 3. Non-CPU-like hardware without an existing LLVM backend.
25 In this scenario, start by looking at the existing
37 If there is no existing LLVM backend but another kind of code generator exists,
38 it should be possible to reuse most of the existing CPU backend.
40 ## Scenario 2: Non-CPU-like hardware with an existing LLVM backend
44 implementation on the existing
49 to be changed, but a lot of code can be shared with the existing backends.
[all …]
/external/guice/core/src/com/google/inject/internal/
DScopeBindingProcessor.java53 ScopeBinding existing = injector.state.getScopeBinding(annotationType); in visit() local
54 if (existing != null) { in visit()
55 if (!scope.equals(existing.getScope())) { in visit()
56 errors.duplicateScopes(existing, annotationType, scope); in visit()
/external/mesa3d/src/panfrost/lib/
Ddecode_common.c94 struct pandecode_mapped_memory *existing = in pandecode_inject_mmap() local
97 if (existing && existing->gpu_va == gpu_va) { in pandecode_inject_mmap()
98 existing->length = sz; in pandecode_inject_mmap()
99 existing->addr = cpu; in pandecode_inject_mmap()
100 pandecode_add_name(existing, gpu_va, name); in pandecode_inject_mmap()
/external/llvm-project/clang-tools-extra/test/clang-apply-replacements/Inputs/conflict/
Dexpected.txt1 The new replacement overlaps with an existing replacement.
4 The new replacement overlaps with an existing replacement.
7 The new replacement overlaps with an existing replacement.
10 The new replacement overlaps with an existing replacement.
/external/guava/guava/src/com/google/common/util/concurrent/
DStriped.java456 L existing = existingRef == null ? null : existingRef.get();
457 if (existing != null) {
458 return existing;
465 existing = existingRef == null ? null : existingRef.get();
466 if (existing != null) {
467 return existing;
526 L existing = locks.get(index);
527 if (existing != null) {
528 return existing;
531 existing = locks.putIfAbsent(index, created);
[all …]
/external/guava/android/guava/src/com/google/common/util/concurrent/
DStriped.java456 L existing = existingRef == null ? null : existingRef.get();
457 if (existing != null) {
458 return existing;
465 existing = existingRef == null ? null : existingRef.get();
466 if (existing != null) {
467 return existing;
526 L existing = locks.get(index);
527 if (existing != null) {
528 return existing;
531 existing = locks.putIfAbsent(index, created);
[all …]
/external/curl/tests/data/
Dtest5348 non-existing host
32 FTP RETR twice using multi: non-existing host and non-existing file
35 ftp://non-existing-host.haxx.se/path/534 ftp://%HOSTIP:%FTPPORT/path/534
Dtest5077 non-existing host
21 multi interface get with non-existing host name
27 http://non-existing-host.haxx.se/
Dtest206 non-existing host
25 attempt connect to non-existing host name
28 --ipv4 non-existing-host.haxx.se.
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dbitfield-insert.ll32 define void @test_whole32(i32* %existing, i32* %new) {
40 %oldval = load volatile i32, i32* %existing
48 store volatile i32 %combined, i32* %existing
53 define void @test_whole64(i64* %existing, i64* %new) {
61 %oldval = load volatile i64, i64* %existing
69 store volatile i64 %combined, i64* %existing
74 define void @test_whole32_from64(i64* %existing, i64* %new) {
83 %oldval = load volatile i64, i64* %existing
90 store volatile i64 %combined, i64* %existing
95 define void @test_32bit_masked(i32 *%existing, i32 *%new) {
[all …]
/external/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
Dbinary-output-empty.test8 # Writing an empty output to an existing file will truncate it.
9 # RUN: echo abcd > %t-existing.txt
10 # RUN: llvm-objcopy -R .text -O binary %t.o %t-existing.txt
11 # RUN: wc -c %t-existing.txt | FileCheck %s
/external/python/cpython3/Lib/logging/
Dconfig.py162 def _handle_existing_loggers(existing, child_loggers, disable_existing): argument
174 for log in existing:
216 existing = list(root.manager.loggerDict.keys())
221 existing.sort()
231 if qn in existing:
232 i = existing.index(qn) + 1 # start with the entry after qn
235 num_existing = len(existing)
237 if existing[i][:pflen] == prefixed:
238 child_loggers.append(existing[i])
240 existing.remove(qn)
[all …]
/external/google-breakpad/src/third_party/libdisasm/
Dia32_implicit.c395 x86_oplist_t * existing; in ia32_insn_implicit_ops() local
397 for ( existing = insn->operands; existing; existing = existing->next ) { in ia32_insn_implicit_ops()
398 if (existing->op.type == op_register && in ia32_insn_implicit_ops()
399 existing->op.data.reg.id == list->operand) { in ia32_insn_implicit_ops()
400 op = &existing->op; in ia32_insn_implicit_ops()
/external/mesa3d/src/gallium/drivers/iris/
Diris_program_cache.c185 const struct iris_compiled_shader *existing = entry->data; in find_existing_assembly() local
186 if (existing->prog_data->program_size == assembly_size && in find_existing_assembly()
187 memcmp(existing->map, assembly, assembly_size) == 0) in find_existing_assembly()
188 return existing; in find_existing_assembly()
212 const struct iris_compiled_shader *existing = in iris_upload_shader() local
221 if (existing) { in iris_upload_shader()
222 pipe_resource_reference(&shader->assembly.res, existing->assembly.res); in iris_upload_shader()
223 shader->assembly.offset = existing->assembly.offset; in iris_upload_shader()
224 shader->map = existing->map; in iris_upload_shader()
/external/python/cpython2/Lib/logging/
Dconfig.py216 existing = list(root.manager.loggerDict.keys())
221 existing.sort()
235 if qn in existing:
236 i = existing.index(qn) + 1 # start with the entry after qn
239 num_existing = len(existing)
241 if existing[i][:pflen] == prefixed:
242 child_loggers.append(existing[i])
244 existing.remove(qn)
264 for log in existing:
599 existing = root.manager.loggerDict.keys()
[all …]

12345678910>>...88