Home
last modified time | relevance | path

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

12345678910>>...72

/external/fonttools/Tests/ufoLib/
Dfilenames_test.py50 existing = ["a" * 5]
52 e = list(existing)
54 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
59 e = list(existing)
62 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
67 e = list(existing)
70 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
78 existing = [prefix + str(i) + suffix for i in range(100)]
80 e = list(existing)
82 handleClash2(existing=e, prefix=prefix, suffix=suffix),
[all …]
/external/fonttools/Tests/misc/
Dfilenames_test.py85 existing = ["a" * 5]
87 e = list(existing)
89 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
94 e = list(existing)
97 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
102 e = list(existing)
105 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
113 existing = [prefix + str(i) + suffix for i in range(100)]
115 e = list(existing)
117 handleClash2(existing=e, prefix=prefix, suffix=suffix),
[all …]
/external/fonttools/Lib/fontTools/misc/
Dfilenames.py30 def userNameToFileName(userName, existing=[], prefix="", suffix=""): argument
113 if fullName.lower() in existing:
114 fullName = handleClash1(userName, existing, prefix, suffix)
118 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
161 if fullName.lower() not in existing:
170 finalName = handleClash2(existing, prefix, suffix)
174 def handleClash2(existing=[], prefix="", suffix=""): argument
208 if fullName.lower() not in existing:
/external/fonttools/Lib/fontTools/ufoLib/
Dfilenames.py21 def userNameToFileName(userName, existing=[], prefix="", suffix=""): argument
104 if fullName.lower() in existing:
105 fullName = handleClash1(userName, existing, prefix, suffix)
109 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
152 if fullName.lower() not in existing:
161 finalName = handleClash2(existing, prefix, suffix)
165 def handleClash2(existing=[], prefix="", suffix=""): argument
199 if fullName.lower() not in existing:
/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/
Dcontrol18 * 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/swiftshader/third_party/llvm-7.0/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/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/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/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/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/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
Dtest206 non-existing host
25 attempt connect to non-existing host name
28 --ipv4 non-existing-host.haxx.se.
Dtest5077 non-existing host
21 multi interface get with non-existing host name
27 http://non-existing-host.haxx.se/
/external/python/cpython3/Lib/logging/
Dconfig.py161 def _handle_existing_loggers(existing, child_loggers, disable_existing): argument
173 for log in existing:
215 existing = list(root.manager.loggerDict.keys())
220 existing.sort()
230 if qn in existing:
231 i = existing.index(qn) + 1 # start with the entry after qn
234 num_existing = len(existing)
236 if existing[i][:pflen] == prefixed:
237 child_loggers.append(existing[i])
239 existing.remove(qn)
[all …]
/external/tensorflow/tensorflow/core/framework/
Dshape_inference.cc311 const int32 existing = Rank(shape); in WithRank() local
312 if (existing == rank) { in WithRank()
316 if (existing == kUnknownRank) { in WithRank()
328 existing); in WithRank()
336 const int32 existing = Rank(shape); in WithRankAtLeast() local
337 if (existing >= rank || existing == kUnknownRank) { in WithRankAtLeast()
343 " but is rank ", existing); in WithRankAtLeast()
351 const int32 existing = Rank(shape); in WithRankAtMost() local
352 if (existing <= rank || existing == kUnknownRank) { in WithRankAtMost()
358 " but is rank ", existing); in WithRankAtMost()
[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 …]
/external/clang/test/SemaObjC/
Darc-property.m5 …id __weak myString; // expected-error {{existing instance variable 'myString' for strong property …
7 …id __weak myString2; // expected-error {{existing instance variable 'myString2' for strong propert…
9 …id StrongIvar5; // expected-error {{existing instance variable 'StrongIvar5' for __weak property '…
34 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for __weak property '…
35 …id __strong y; // expected-error {{existing instance variable 'y' for __weak property 'y' must be…
Darc-property-lifetime.m6 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
7 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
23 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
24 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
40 …id __unsafe_unretained x; // expected-error {{existing instance variable 'x' for strong property '…
41 …id __weak y; // expected-error {{existing instance variable 'y' for strong property 'y' may not be…
73 …id y; // expected-error {{existing instance variable 'y' for property 'y' with assign attribute mu…
88 …id y; // expected-error {{existing instance variable 'y' for property 'y' with unsafe_unretained a…
183 …id _prop; // expected-error {{existing instance variable '_prop' for property 'prop' with assign a…
/external/libchrome/base/metrics/
Dpersistent_histogram_allocator.cc450 HistogramBase* existing = GetOrCreateStatisticsRecorderHistogram(histogram); in MergeHistogramDeltaToStatisticsRecorder() local
451 if (!existing) { in MergeHistogramDeltaToStatisticsRecorder()
461 existing->AddSamples(*histogram->SnapshotDelta()); in MergeHistogramDeltaToStatisticsRecorder()
468 HistogramBase* existing = GetOrCreateStatisticsRecorderHistogram(histogram); in MergeHistogramFinalDeltaToStatisticsRecorder() local
469 if (!existing) { in MergeHistogramFinalDeltaToStatisticsRecorder()
476 existing->AddSamples(*histogram->SnapshotFinalDelta()); in MergeHistogramFinalDeltaToStatisticsRecorder()
631 HistogramBase* existing = in GetOrCreateStatisticsRecorderHistogram() local
633 if (existing) in GetOrCreateStatisticsRecorderHistogram()
634 return existing; in GetOrCreateStatisticsRecorderHistogram()
644 existing = DeserializeHistogramInfo(&iter); in GetOrCreateStatisticsRecorderHistogram()
[all …]

12345678910>>...72