Home
last modified time | relevance | path

Searched full:existing (Results 1 – 25 of 9076) sorted by relevance

12345678910>>...364

/external/fonttools/Lib/fontTools/misc/
Dfilenames.py9 characters, and clashes with existing files.
33 def userNameToFileName(userName, existing=[], prefix="", suffix=""): argument
37 upper- and lower-case characters, and clashes with existing files.
41 existing: A case-insensitive list of all existing file names.
131 if fullName.lower() in existing:
132 fullName = handleClash1(userName, existing, prefix, suffix)
136 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
138 existing should be a case-insensitive list
139 of all existing file names.
143 >>> existing = ["a" * 5]
[all …]
/external/fonttools/Lib/fontTools/ufoLib/
Dfilenames.py95 def userNameToFileName(userName: str, existing=(), prefix="", suffix=""): argument
97 `existing` should be a set-like object.
177 if fullName.lower() in existing:
178 fullName = handleClash1(userName, existing, prefix, suffix)
182 def handleClash1(userName, existing=[], prefix="", suffix=""): argument
184 existing should be a case-insensitive list
185 of all existing file names.
189 >>> existing = ["a" * 5]
191 >>> e = list(existing)
192 >>> handleClash1(userName="A" * 5, existing=e,
[all …]
/external/toybox/tests/
Dmkdir.test10 touch existing
11 testing "existing file" \
12 "mkdir existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
13 rm existing
15 mkdir existing
16 testing "existing dir" \
17 "mkdir existing 2> /dev/null || echo yes" "yes\n" "" ""
18 rmdir existing
31 mkdir existing
32 testing "-p existing" "mkdir -p existing && echo yes" "yes\n" "" ""
[all …]
Dmkfifo.test10 touch existing
11 testing "existing" \
12 "mkfifo existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
13 rm existing
/external/fonttools/Tests/ufoLib/
Dfilenames_test.py59 existing = ["a" * 5]
61 e = list(existing)
63 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
68 e = list(existing)
71 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
76 e = list(existing)
79 handleClash1(userName="A" * 5, existing=e, prefix=prefix,
87 existing = [prefix + str(i) + suffix for i in range(100)]
89 e = list(existing)
91 handleClash2(existing=e, prefix=prefix, suffix=suffix),
[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/tensorflow/tensorflow/compiler/xla/g3doc/
Ddeveloping_new_backend.md10 be significantly simpler and scalable than implementing every existing
15 1. Existing CPU architecture not yet officially supported by XLA, with or
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.
23 ## Scenario 1: Existing CPU architecture not yet officially supported by XLA
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
[all …]
/external/flac/include/FLAC/
Dmetadata.h116 * Unless you will be using the level 1 or 2 interfaces to modify existing
154 * an existing structure. It need not be initialized.
374 * \param iterator A pointer to an existing iterator.
384 * \param iterator A pointer to an existing iterator.
400 * \param iterator A pointer to an existing iterator.
422 * \param iterator A pointer to an existing iterator.
433 * \param iterator A pointer to an existing initialized iterator.
447 * \param iterator A pointer to an existing initialized iterator.
460 * \param iterator A pointer to an existing initialized iterator.
475 * \param iterator A pointer to an existing initialized iterator.
[all …]
/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/autotest/server/site_tests/bluetooth_AdapterCLHealth/
Dcontrol.cl_sdp_service_search_attribute_request_test19 * non-existing Service, existing Attribute
20 * existing Service, non-existing Attribute
21 * non-existing Service, non-existing Attribute
22 * existing Service, existing Attribute
/external/python/cpython3/Lib/logging/
Dconfig.py163 def _handle_existing_loggers(existing, child_loggers, disable_existing): argument
171 what was intended by the user. Also, allow existing loggers to NOT be
175 for log in existing:
209 #we don't want to lose the existing loggers,
211 #existing is set to contain all existing loggers,
214 #what's left in existing is the set of loggers
217 existing = list(root.manager.loggerDict.keys())
222 existing.sort()
223 #We'll keep the list of existing loggers
232 if qn in existing:
[all …]
/external/python/cpython2/Lib/logging/
Dconfig.py208 #we don't want to lose the existing loggers,
210 #existing is set to contain all existing loggers,
213 #what's left in existing is the set of loggers
216 existing = list(root.manager.loggerDict.keys())
221 existing.sort()
222 #We'll keep the list of existing loggers
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:
[all …]
/external/mesa3d/src/compiler/glsl/
Dglsl_symbol_table.cpp139 symbol_table_entry *existing = get_entry(v->name); in add_variable() local
141 /* If there's already an existing function (not a constructor!) in in add_variable()
142 * the current scope, just update the existing entry to include 'v'. in add_variable()
144 if (existing->v == NULL && existing->t == NULL) { in add_variable()
145 existing->v = v; in add_variable()
149 /* If not declared at this scope, add a new entry. But if an existing 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()
[all …]
/external/sg3_utils/doc/
Dsg_wr_mode.814 or 10 byte variant) command to fetch the existing mode data which includes
33 the existing mode page are printed out. In this case the mode page is
37 must match the existing mode page in various aspects unless the
44 existing mode page supplies bit positions corresponding to clear bits.
46 than the existing mode page. If the mask is shorter than the contents then
48 than the existing mode page then the remaining bytes are taken from the
49 existing mod page.
52 mode page without any prior checks on the existing mode page. This should
53 only be required for vendor specific mode pages. The existing mode data
88 doesn't do checks on the existing mode page. Note that \fIDEVICE\fR may
[all …]
/external/mbedtls/docs/architecture/psa-migration/
Dtesting.md35 in order to create PK contexts that can then be passed to existing TLS and
45 - in `test_suite_pk` we modified the existing `pk_psa_sign` test function to
50 - integration testing of the new API with each existing API which should
57 existing `mbedtls_x509write_csr_set_key()`. (And also
74 - in `test_suite_cipher`, the existing test functions `auth_crypt_tv` and
78 - usually already covered by existing tests for higher-level modules:
80 covered by running the existing TLS tests in a build with
94 be already be covered by running the existing tests in a build with
95 `MBEDTLS_USE_PSA_CRYPTO` enabled; however we need to make sure the existing
/external/python/cpython2/Tools/versioncheck/
Dpyversioncheck.py77 print '--- Testing existing and identical version file'
79 print '--- Testing existing package with new version'
81 print '--- Testing package with non-existing version file'
83 print '--- Test package with 2 locations, first non-existing second ok'
87 print '--- Testing existing and identical version file'
89 print '--- Testing existing package with new version'
91 print '--- Testing package with non-existing version file'
93 print '--- Test package with 2 locations, first non-existing second ok'
/external/skia/src/sksl/dsl/priv/
DDSLWriter.cpp104 void DSLWriter::AddVarDeclaration(DSLStatement& existing, DSLVar& additional) { in AddVarDeclaration() argument
105 if (existing.fStatement->is<Block>()) { in AddVarDeclaration()
106 SkSL::Block& block = existing.fStatement->as<Block>(); in AddVarDeclaration()
109 } else if (existing.fStatement->is<VarDeclaration>()) { in AddVarDeclaration()
110 Position pos = existing.fStatement->fPosition; in AddVarDeclaration()
113 stmts.push_back(std::move(existing.fStatement)); in AddVarDeclaration()
115 existing.fStatement = SkSL::Block::Make(pos, std::move(stmts), in AddVarDeclaration()
117 } else if (existing.fStatement->isEmpty()) { in AddVarDeclaration()
119 existing.fStatement = Declare(additional).release(); in AddVarDeclaration()
/external/iproute2/man/man8/
Dip-xfrm.8411 ip xfrm state update update existing state in xfrm
413 ip xfrm state delete delete existing state in xfrm
414 ip xfrm state get get existing state in xfrm
415 ip xfrm state deleteall delete all existing state in xfrm
416 ip xfrm state list print out the list of existing state in xfrm
418 ip xfrm state count count all existing state in xfrm
555 ip xfrm policy update update an existing policy
556 ip xfrm policy delete delete an existing policy
557 ip xfrm policy get get an existing policy
558 ip xfrm policy deleteall delete all existing xfrm policies
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/iron-selector/test/
Dattr-for-selected.html181 test('setting non-existing value sets default', function() {
182 selector.select('non-existing-value');
187 test('setting non-existing value sets default', function() {
189 selector.select(['non-existing-value']);
196 selector.selectedValues = ['non-existing-value', 'value0'];
197 assert.deepEqual(selector.selectedValues, ['non-existing-value', 'value0']);
202 selector.fallbackSelection = 'non-existing-fallback';
203 selector.select('non-existing-value');
206 selector.selectedValues = ['non-existing-value'];
214 selector.select('non-existing-value');
[all …]
/external/python/cpython2/Lib/
Danydbm.py15 module) in the case of an existing dbm. If the dbm does not exist and
23 # existing key)
29 list = d.keys() # return a list of all existing keys (slow!)
61 for read-write access of an existing database, 'c' for read-write access
62 to a new or existing database, and 'n' for read-write access to a new
69 # guess the type of an existing database
/external/kotlinpoet/kotlinpoet/src/main/java/com/squareup/kotlinpoet/
DTaggable.kt43 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for
53 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
75 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
87 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
98 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
109 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
120 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
131 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
142 * request using [Taggable.tag]. Use `null` to remove any existing tag assigned for in tag()
/external/clang/test/SemaObjC/
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/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/
DImportFilesRequest.java28 /** Request to import files into an existing DataFileGroup. */
54 /** List of {@link DataFile}s to import into the existing file group. */
112 * <p>This list can be included to update DataFiles in the existing file group identified by the
116 * <p>Files in this list are merged into the existing file group based on {@link
124 * <p>This list is only required if inline files need to be added/updated in the existing file
125 * group. If the existing file group has inline files added with {@link
126 * MobileDataDownload#addFileGroup}, this list may be empty and the existing inline files that
138 * existing file group (added via {@link MobileDataDownload#addFileGroup}) or inline files
/external/cronet/net/base/
Durl_util_unittest.cc32 EXPECT_EQ("http://example.com/path?existing=one&name=value", in TEST()
33 AppendQueryParameter(GURL("http://example.com/path?existing=one"), in TEST()
38 EXPECT_EQ("http://example.com/path?existing=one&na+me=v.alue%3D", in TEST()
39 AppendQueryParameter(GURL("http://example.com/path?existing=one"), in TEST()
53 EXPECT_EQ("http://example.com/path?existing=one&name=value", in TEST()
55 GURL("http://example.com/path?existing=one"), in TEST()
60 EXPECT_EQ("http://example.com/path?existing=one&na+me=v.alue%3D", in TEST()
62 GURL("http://example.com/path?existing=one"), in TEST()
65 // Replace value of an existing paramater. in TEST()
66 EXPECT_EQ("http://example.com/path?existing=one&name=new", in TEST()
[all …]
/external/rust/crates/clap/src/util/
Dflat_map.rs20 for (index, existing) in self.keys.iter().enumerate() { in insert()
21 if *existing == key { in insert()
47 for existing in &self.keys { in contains_key()
48 if existing.borrow() == key { in contains_key()
83 for (index, existing) in self.keys.iter().enumerate() { in entry()
84 if *existing == key { in entry()
96 for (index, existing) in self.keys.iter().enumerate() { in get()
97 if existing.borrow() == k { in get()
109 for (index, existing) in self.keys.iter().enumerate() { in get_mut()
110 if existing.borrow() == k { in get_mut()

12345678910>>...364