| /external/apache-commons-io/src/main/java/org/apache/commons/io/comparator/ |
| D | NameFileComparator.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 29 * by their name either in a case-sensitive, case-insensitive or 30 * system dependent case-sensitive way. A number of singleton instances 31 * are provided for the various case sensitivity options (using {@link IOCase}) 35 * Example of a <i>case-sensitive</i> file name sort using the 43 * Example of a <i>reverse case-insensitive</i> file name sort using the 57 /** Case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */ 60 /** Reverse case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */ 63 /** Case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */ 66 /** Reverse case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */ [all …]
|
| D | PathFileComparator.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 29 * by their path either in a case-sensitive, case-insensitive or 30 * system dependent case-sensitive way. A number of singleton instances 31 * are provided for the various case sensitivity options (using {@link IOCase}) 35 * Example of a <i>case-sensitive</i> file path sort using the 43 * Example of a <i>reverse case-insensitive</i> file path sort using the 57 /** Case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */ 60 /** Reverse case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */ 63 /** Case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */ 66 /** Reverse case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */ [all …]
|
| D | ExtensionFileComparator.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 31 * by their file extension either in a case-sensitive, case-insensitive or 32 * system dependent case-sensitive way. A number of singleton instances 33 * are provided for the various case sensitivity options (using {@link IOCase}) 37 * Example of a <i>case-sensitive</i> file extension sort using the 45 * Example of a <i>reverse case-insensitive</i> file extension sort using the 59 /** Case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */ 62 /** Reverse case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */ 65 /** Case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */ 69 /** Reverse case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */ [all …]
|
| D | package.html | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2 <!-- 10 http://www.apache.org/licenses/LICENSE-2.0 17 --> 60 <h2>Singleton Instances (thread-safe)</h2> 63 singleton(<i>thread-safe</i>) instances ready to use: 66 <li><a href="DefaultFileComparator.html">DefaultFileComparator</a> - default file compare: 69 - Compare using <code>File.compareTo(File)</code> method. 72 - Reverse compare of <code>File.compareTo(File)</code> method. 76 …<li><a href="DirectoryFileComparator.html">DirectoryFileComparator</a> - compare by type (director… [all …]
|
| /external/apache-commons-io/src/main/java/org/apache/commons/io/ |
| D | IOCase.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 23 * Enumeration of IO case sensitivity. 25 * Different filing systems have different rules for case-sensitivity. 26 * Windows is case-insensitive, Unix is case-sensitive. 43 * The constant for case-sensitive regardless of operating system. 45 SENSITIVE("Sensitive", true), enumConstant 48 * The constant for case-insensitive regardless of operating system. 53 * The constant for case sensitivity determined by the current operating system. 54 * Windows is case-insensitive when comparing file names, Unix is case-sensitive. 57 * systems (e.g. OSX and OpenVMS) are treated as case-sensitive if they use the [all …]
|
| /external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/ |
| D | CryptUtil.c | 63 digestSize = CryptHmacStart2B(&hmacState, signature->signature.any.hashAlg, in CryptHmacSign() 64 &signKey->sensitive.sensitive.bits.b); in CryptHmacSign() 65 CryptDigestUpdate2B(&hmacState.hashState, &hashData->b); in CryptHmacSign() 67 (BYTE *)&signature->signature.hmac.digest); in CryptHmacSign() 88 &signKey->publicArea.parameters.keyedHashDetail.scheme; in CryptHMACVerifySignature() 90 if((signature->sigAlg != TPM_ALG_HMAC) in CryptHMACVerifySignature() 91 || (signature->signature.hmac.hashAlg == TPM_ALG_NULL)) in CryptHMACVerifySignature() 98 if((keyScheme->scheme != TPM_ALG_NULL) in CryptHMACVerifySignature() 99 && ((keyScheme->scheme != signature->sigAlg) in CryptHMACVerifySignature() 100 || (keyScheme->details.hmac.hashAlg in CryptHMACVerifySignature() [all …]
|
| D | CryptRsa.c | 81 bigNum *bn = (bigNum *)&Z->P; in RsaInitializeExponent() 86 bn[i] = (bigNum)&Z->entries[i]; in RsaInitializeExponent() 87 BnInit(bn[i], BYTES_TO_CRYPT_WORDS(sizeof(Z->entries[0].d))); in RsaInitializeExponent() 99 if(BnUnsignedCmp(Z->P, Z->Q) < 0) in MakePgreaterThanQ() 101 bigNum bnT = Z->P; in MakePgreaterThanQ() 102 Z->P = Z->Q; in MakePgreaterThanQ() 103 Z->Q = bnT; in MakePgreaterThanQ() 126 UINT16 primeSize = (UINT16)BITS_TO_BYTES(BnMsb(Z->P)); in PackExponent() 129 pAssert((primeSize * 5) <= sizeof(packed->t.buffer)); in PackExponent() 130 packed->t.size = (primeSize * 5) + RSA_prime_flag; in PackExponent() [all …]
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
| D | Packet.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 103 data = new byte[p.length - HEADER_SIZE]; in Packet() 104 System.arraycopy(p, HEADER_SIZE, data, 0, p.length - HEADER_SIZE); in Packet() 164 case JDWPConstants.Tag.ARRAY_TAG: { in isValuePrimitiveType() 167 case JDWPConstants.Tag.BYTE_TAG: { in isValuePrimitiveType() 170 case JDWPConstants.Tag.CHAR_TAG: { in isValuePrimitiveType() 173 case JDWPConstants.Tag.OBJECT_TAG: { in isValuePrimitiveType() 176 case JDWPConstants.Tag.FLOAT_TAG: { in isValuePrimitiveType() 179 case JDWPConstants.Tag.DOUBLE_TAG: { in isValuePrimitiveType() 182 case JDWPConstants.Tag.INT_TAG: { in isValuePrimitiveType() [all …]
|
| /external/apache-commons-io/src/main/java/org/apache/commons/io/filefilter/ |
| D | WildcardFileFilter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 35 * Testing is case-sensitive by default, but this can be configured. 41 * The check is case-sensitive by default. 80 private static final long serialVersionUID = -7426486598995782105L; 85 /** Whether the comparison is case-sensitive. */ 89 * Constructs a new case-sensitive wildcard filter for a list of wildcards. 96 this(wildcards, IOCase.SENSITIVE); in WildcardFileFilter() 100 * Constructs a new wildcard filter for a list of wildcards specifying case-sensitivity. 103 * @param ioCase how to handle case sensitivity, null means case-sensitive 110 this.ioCase = IOCase.value(ioCase, IOCase.SENSITIVE); in WildcardFileFilter() [all …]
|
| D | NameFileFilter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 75 /** Whether the comparison is case-sensitive. */ 79 * Constructs a new case-sensitive name file filter for a list of names. 90 * Constructs a new name file filter for a list of names specifying case-sensitivity. 93 * @param ioCase how to handle case sensitivity, null means case-sensitive 104 * Constructs a new case-sensitive name file filter for a single name. 110 this(name, IOCase.SENSITIVE); in NameFileFilter() 114 * Constructs a new case-sensitive name file filter for an array of names. 124 this(names, IOCase.SENSITIVE); in NameFileFilter() 128 * Constructs a new name file filter specifying case-sensitivity. [all …]
|
| D | PrefixFileFilter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 75 /** Whether the comparison is case-sensitive. */ 86 this(prefixes, IOCase.SENSITIVE); in PrefixFileFilter() 91 * specifying case-sensitivity. 94 * @param ioCase how to handle case sensitivity, null means case-sensitive 102 this.isCase = IOCase.value(ioCase, IOCase.SENSITIVE); in PrefixFileFilter() 112 this(prefix, IOCase.SENSITIVE); in PrefixFileFilter() 125 this(prefixes, IOCase.SENSITIVE); in PrefixFileFilter() 130 * specifying case-sensitivity. 133 * @param ioCase how to handle case sensitivity, null means case-sensitive [all …]
|
| D | SuffixFileFilter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 71 private static final long serialVersionUID = -3389157631240246157L; 76 /** Whether the comparison is case-sensitive. */ 87 this(suffixes, IOCase.SENSITIVE); in SuffixFileFilter() 92 * specifying case-sensitivity. 95 * @param ioCase how to handle case sensitivity, null means case-sensitive 103 this.ioCase = IOCase.value(ioCase, IOCase.SENSITIVE); in SuffixFileFilter() 113 this(suffix, IOCase.SENSITIVE); in SuffixFileFilter() 126 this(suffixes, IOCase.SENSITIVE); in SuffixFileFilter() 131 * specifying case-sensitivity. [all …]
|
| D | WildcardFilter.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 35 * and using case-sensitive comparison. 41 * The extension check is case-sensitive. 83 private static final long serialVersionUID = -5037645902506953517L; 89 * Constructs a new case-sensitive wildcard filter for a list of wildcards. 101 * Constructs a new case-sensitive wildcard filter for a single wildcard. 112 * Constructs a new case-sensitive wildcard filter for an array of wildcards. 133 …return Stream.of(wildcards).anyMatch(wildcard -> FilenameUtils.wildcardMatch(file.getName(), wildc… in accept() 148 … return Stream.of(wildcards).anyMatch(wildcard -> FilenameUtils.wildcardMatch(name, wildcard)); in accept() 164 …Stream.of(wildcards).anyMatch(wildcard -> FilenameUtils.wildcardMatch(Objects.toString(file.getFil… in accept()
|
| /external/python/cpython3/Lib/test/test_importlib/source/ |
| D | test_case_sensitivity.py | 1 """Test case-sensitivity (PEP 235).""" 18 """PEP 235 dictates that on case-preserving, case-insensitive file systems 19 that imports are case-sensitive unless the PYTHONCASEOK environment 33 """Look for a module with matching and non-matching sensitivity.""" 34 sensitive_pkg = 'sensitive.{0}'.format(self.name) 38 sensitive_path = os.path.join(mapping['.root'], 'sensitive') 49 sensitive, insensitive = self.sensitivity_test() 50 self.assertIsNotNone(sensitive) 51 self.assertIn(self.name, sensitive.get_filename(self.name)) 59 sensitive, insensitive = self.sensitivity_test() [all …]
|
| /external/angle/src/common/ |
| D | string_utils.h | 3 // Use of this source code is governed by a BSD-style license that can be 53 // The comparison is case sensitive. 58 // The comparison is case sensitive. 63 // The comparison is case sensitive. 68 // The comparison is case sensitive. 72 // The comparison is case sensitive. 77 // The comparison is case sensitive. 82 // The comparison is case sensitive. 87 // The comparison is case sensitive. 90 // Convert to lower-case. [all …]
|
| /external/libiio/src/cmake/ |
| D | CheckCaseSensitiveFileSystem.cmake | 2 # Check if the file system is case sensitive or not 4 # https://github.com/OPM/opm-parser/blob/master/cmake/Modules/CheckCaseSensitiveFileSystem.cmake 8 # HAVE_CASE_SENSITIVE_FILESYSTEM True if the file system honors the case of files 12 message(STATUS "Check for case-sensitive file systems") 31 # If it is empty, the file system is case sensitive. 33 message(STATUS "File system is not case-sensitive") 36 message(STATUS "File system is case-sensitive")
|
| /external/icu/libicu/cts_headers/unicode/ |
| D | casemap.h | 19 * \brief C++ API: Low-level C++ case mapping functions. 29 * Low-level C++ case mapping functions. 36 * Lowercases a UTF-16 string and optionally records edits. 37 * Casing is locale-dependent and context-sensitive. 44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated. 45 * @param dest A buffer for the result string. The result will be NUL-terminated if 47 * The contents is undefined in case of failure. 54 * This function calls edits->reset() first unless 72 * Uppercases a UTF-16 string and optionally records edits. 73 * Casing is locale-dependent and context-sensitive. [all …]
|
| /external/cronet/third_party/icu/source/common/unicode/ |
| D | casemap.h | 19 * \brief C++ API: Low-level C++ case mapping functions. 29 * Low-level C++ case mapping functions. 36 * Lowercases a UTF-16 string and optionally records edits. 37 * Casing is locale-dependent and context-sensitive. 44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated. 45 * @param dest A buffer for the result string. The result will be NUL-terminated if 47 * The contents is undefined in case of failure. 54 * This function calls edits->reset() first unless 72 * Uppercases a UTF-16 string and optionally records edits. 73 * Casing is locale-dependent and context-sensitive. [all …]
|
| /external/icu/icu4c/source/common/unicode/ |
| D | casemap.h | 19 * \brief C++ API: Low-level C++ case mapping functions. 29 * Low-level C++ case mapping functions. 36 * Lowercases a UTF-16 string and optionally records edits. 37 * Casing is locale-dependent and context-sensitive. 44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated. 45 * @param dest A buffer for the result string. The result will be NUL-terminated if 47 * The contents is undefined in case of failure. 54 * This function calls edits->reset() first unless 72 * Uppercases a UTF-16 string and optionally records edits. 73 * Casing is locale-dependent and context-sensitive. [all …]
|
| /external/apache-commons-io/src/test/java/org/apache/commons/io/comparator/ |
| D | ExtensionFileComparatorTest.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 29 * Test case for {@link ExtensionFileComparator}. 44 /** Test case sensitivity */ 48 … final Comparator<File> sensitive = new ExtensionFileComparator(null); /* test null as well */ in testCaseSensitivity() local 49 assertEquals(0, sensitive.compare(equalFile1, equalFile2), "sensitive file1 & file2 = 0"); in testCaseSensitivity() 50 assertTrue(sensitive.compare(equalFile1, file3) > 0, "sensitive file1 & file3 > 0"); in testCaseSensitivity() 51 assertTrue(sensitive.compare(equalFile1, lessFile) > 0, "sensitive file1 & less > 0"); in testCaseSensitivity()
|
| D | PathFileComparatorTest.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 29 * Test case for {@link PathFileComparator}. 44 /** Test case sensitivity */ 48 final Comparator<File> sensitive = new PathFileComparator(null); /* test null as well */ in testCaseSensitivity() local 49 assertEquals(0, sensitive.compare(equalFile1, equalFile2), "sensitive file1 & file2 = 0"); in testCaseSensitivity() 50 assertTrue(sensitive.compare(equalFile1, file3) > 0, "sensitive file1 & file3 > 0"); in testCaseSensitivity() 51 assertTrue(sensitive.compare(equalFile1, lessFile) > 0, "sensitive file1 & less > 0"); in testCaseSensitivity()
|
| D | NameFileComparatorTest.java | 9 * http://www.apache.org/licenses/LICENSE-2.0 29 * Test case for {@link NameFileComparator}. 43 /** Test case sensitivity */ 47 final Comparator<File> sensitive = new NameFileComparator(null); /* test null as well */ in testCaseSensitivity() local 48 assertEquals(0, sensitive.compare(equalFile1, equalFile2), "sensitive file1 & file2 = 0"); in testCaseSensitivity() 49 assertTrue(sensitive.compare(equalFile1, file3) > 0, "sensitive file1 & file3 > 0"); in testCaseSensitivity() 50 assertTrue(sensitive.compare(equalFile1, lessFile) > 0, "sensitive file1 & less > 0"); in testCaseSensitivity()
|
| /external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/ |
| D | Object.c | 55 object->attributes.occupied = CLEAR; in ObjectFlush() 65 object->attributes.occupied = SET; in ObjectSetInUse() 105 if(object->attributes.evict == SET) in ObjectCleanupEvict() 115 // implementation-dependent allowed in range for loaded transient objects. 125 UINT32 slotIndex = handle - TRANSIENT_FIRST; in IsObjectPresent() 128 // TRANSIENT_FIRST -- (TRANSIENT_FIRST + MAX_LOADED_OBJECT - 1) in IsObjectPresent() 148 return (object->attributes.hmacSeq == SET in ObjectIsSequence() 149 || object->attributes.hashSeq == SET in ObjectIsSequence() 150 || object->attributes.eventSeq == SET); in ObjectIsSequence() 171 index = handle - TRANSIENT_FIRST; in HandleToObject() [all …]
|
| /external/ms-tpm-20-ref/TPMCmd/tpm/src/command/Object/ |
| D | Object_spt.c | 43 // the sensitive data. It includes both size of size field and size of iv data 61 symAlg = protector->publicArea.parameters.asymDetail.symmetric.algorithm; in GetIV2BSize() 62 keyBits = protector->publicArea.parameters.asymDetail.symmetric.keyBits.sym; in GetIV2BSize() 72 // the sensitive data 77 // the sensitive area of an object or a credential blob 90 sensitive area of the object's parent. 117 symKey->t.size = CONTEXT_ENCRYPT_KEY_BYTES; in ComputeProtectionKeyParms() 123 symDef = &protector->publicArea.parameters.asymDetail.symmetric; in ComputeProtectionKeyParms() 124 *symAlg = symDef->algorithm; in ComputeProtectionKeyParms() 125 *keyBits = symDef->keyBits.sym; in ComputeProtectionKeyParms() [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| D | CaseMap.java | 14 * Low-level case mapping options and methods. Immutable. 50 * @return Case folding object with default options. 56 * omits unchanged text when case-mapping with {@link Edits}. 82 * Casing is locale-dependent and context-sensitive. 98 * Casing is locale-dependent and context-sensitive. 138 * Casing is locale-dependent and context-sensitive. 154 * Casing is locale-dependent and context-sensitive. 229 * does not lowercase non-initial parts of words when titlecasing. 266 * (See the Unicode Standard, chapter 3, Default Case Conversion, R3 toTitlecase(X).) 273 * but the new adjustment is much better for whole-string and sentence titlecasing: [all …]
|