/external/llvm-project/lldb/test/Shell/Breakpoint/ |
D | case-sensitive.test | 1 # UNSUPPORTED: system-windows 3 # RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t 4 # RUN: lldb-test breakpoints %t %s | FileCheck %s 6 breakpoint set -f case-sensitive.c -l 3 7 # CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3 10 breakpoint set -f %p/Inputs/case-sensitive.c -l 3 11 # CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3 14 breakpoint set -f %p/INPUTS/case-sensitive.c -l 3 15 # CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3 18 breakpoint set -f Case-Sensitive.c -l 3 [all …]
|
D | case-insensitive.test | 1 # REQUIRES: system-windows 3 # RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t 4 # RUN: lldb-test breakpoints %t %s | FileCheck %s 6 breakpoint set -f case-sensitive.c -l 3 7 # CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3 10 breakpoint set -f %p/Inputs/case-sensitive.c -l 3 11 # CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3 14 breakpoint set -f %p/INPUTS/case-sensitive.c -l 3 15 # CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3 18 breakpoint set -f Case-Sensitive.c -l 3 [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 …]
|
D | AlgorithmTests.c | 36 // This file contains the code to perform the various self-test functions. 39 // stack usage, which is critical for stack-constrained platforms. 82 // The hash test does a known-value HMAC using the specified hash algorithm. 99 #define HASH_CASE_FOR_TEST(HASH, hash) case ALG_##HASH##_VALUE: \ in TestHash() 109 // Clear the to-test bits in TestHash() 113 if(testDigest == NULL || testDigest->size == 0) in TestHash() 124 if((testDigest->size != computed.t.size) in TestHash() 125 || (memcmp(testDigest->buffer, computed.t.buffer, computed.b.size) != 0)) in TestHash() 149 *iv++ = 0xff - (BYTE)(size - i); in MakeIv() 172 iv.t.size = (UINT16)MakeIv(mode, test->ivSize, iv.t.buffer); in TestSymmetricAlgorithm() [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/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/python/cpython3/Lib/test/test_importlib/source/ |
D | test_case_sensitivity.py | 1 """Test case-sensitivity (PEP 235).""" 17 """PEP 235 dictates that on case-preserving, case-insensitive file systems 18 that imports are case-sensitive unless the PYTHONCASEOK environment 32 """Look for a module with matching and non-matching sensitivity.""" 33 sensitive_pkg = 'sensitive.{0}'.format(self.name) 37 sensitive_path = os.path.join(mapping['.root'], 'sensitive') 48 sensitive, insensitive = self.sensitivity_test() 49 self.assertIsNotNone(sensitive) 50 self.assertIn(self.name, sensitive.get_filename(self.name)) 58 sensitive, insensitive = self.sensitivity_test() [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/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 …]
|
D | ucasemap.h | 6 * Copyright (C) 2005-2012, International Business Machines 11 * encoding: UTF-8 18 * Case mapping service object and functions using it. 34 * \brief C API: Unicode case mapping functions using a UCaseMap service object. 42 * ucasemap_utf8XYZ() functions operate directly on UTF-8 strings. 46 * UCaseMap is an opaque service object for newer ICU case mapping functions. 58 * @param locale ICU locale ID, used for language-dependent 59 * upper-/lower-/title-casing according to the Unicode standard. 61 * @param options Options bit set, used for case folding and string comparisons. 106 * Get the locale ID that is used for language-dependent case mappings. [all …]
|
/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 …]
|
D | ucasemap.h | 6 * Copyright (C) 2005-2012, International Business Machines 11 * encoding: UTF-8 18 * Case mapping service object and functions using it. 34 * \brief C API: Unicode case mapping functions using a UCaseMap service object. 42 * ucasemap_utf8XYZ() functions operate directly on UTF-8 strings. 46 * UCaseMap is an opaque service object for newer ICU case mapping functions. 58 * @param locale ICU locale ID, used for language-dependent 59 * upper-/lower-/title-casing according to the Unicode standard. 61 * @param options Options bit set, used for case folding and string comparisons. 106 * Get the locale ID that is used for language-dependent case mappings. [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | doubleclicksearch_v2.reports.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | analytics_v3.management.filters.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | classroom_v1.courses.topics.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
/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 …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CaseMap.java | 13 * Low-level case mapping options and methods. Immutable. 53 * @return Case folding object with default options. 60 * omits unchanged text when case-mapping with {@link Edits}. 89 * Casing is locale-dependent and context-sensitive. 106 * Casing is locale-dependent and context-sensitive. 149 * Casing is locale-dependent and context-sensitive. 166 * Casing is locale-dependent and context-sensitive. 246 * does not lowercase non-initial parts of words when titlecasing. 285 * (See the Unicode Standard, chapter 3, Default Case Conversion, R3 toTitlecase(X).) 292 * but the new adjustment is much better for whole-string and sentence titlecasing: [all …]
|
/external/libchrome/components/policy/core/common/ |
D | preg_parser.cc | 2 // Use of this source code is governed by a BSD-style license that can be 81 // in which case -1 is returned. The calling code must guarantee that 82 // end - *cursor does not overflow ptrdiff_t. 87 end - *cursor < static_cast<ptrdiff_t>(sizeof(base::char16))) in NextChar() 88 return -1; in NextChar() 95 // Reads a fixed-size field from a PReg file. The calling code must guarantee 96 // that both end - *cursor and size do not overflow ptrdiff_t. 105 if (*cursor >= end || end - *cursor < static_cast<ptrdiff_t>(size)) in ReadFieldBinary() 127 int current = -1; in ReadFieldString() 140 value->clear(); in DecodePRegStringValue() [all …]
|
/external/icu/libandroidicu/include/unicode/ |
D | ucasemap.h | 6 * Copyright (C) 2005-2012, International Business Machines 11 * encoding: UTF-8 18 * Case mapping service object and functions using it. 34 * \brief C API: Unicode case mapping functions using a UCaseMap service object. 42 * ucasemap_utf8XYZ() functions operate directly on UTF-8 strings. 46 * UCaseMap is an opaque service object for newer ICU case mapping functions. 58 * @param locale ICU locale ID, used for language-dependent 59 * upper-/lower-/title-casing according to the Unicode standard. 61 * @param options Options bit set, used for case folding and string comparisons. 106 * Get the locale ID that is used for language-dependent case mappings. [all …]
|
/external/autotest/client/cros/cellular/pseudomodem/ |
D | client.py | 4 # Use of this source code is governed by a BSD-style license that can be 89 'PseudoModemManager: ' + e.get_dbus_name() + ' - ' + 113 strings containing non-numeric characters for the sender field 128 'PseudoModemManager: ' + e.get_dbus_name() + ' - ' + 145 set pco <pco-value> 156 print '\nExpected: pco <pco-value>. Found: ' + args + '\n' 170 'PseudoModemManager: ' + e.get_dbus_name() + ' - ' + 179 print ('\nUsage: set pco <pco-value>\n<pco-value> can be empty to set' 200 @param machine: Case sensitive name of the machine. 221 print ('\nUsage: is_waiting <state-machine-name>\n' [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/ |
D | CryptUtil_fp.h | 35 /*(Auto-generated) 46 // like U-Prove. 124 //** Algorithm-Independent Functions 156 const TPM2B *label, // IN: a null-terminated string as L 195 // This function does in-place encryption of a response parameter. 208 // This function does in-place decryption of a command parameter. 228 TPMT_SENSITIVE *sensitive, // IN: the associated sensitive area 242 // 'publicArea', 'sensitive', and 'sensitiveCreate' are the only required parameters 245 // This is the case for both Primary Objects and Derived Objects. 249 // simplest case, TPM2_CreatePrimary() will use 'seed', 'label' and 'context' with [all …]
|
/external/clang/test/Analysis/ |
D | unreachable-code-path.c | 1 …ng_cc1 -analyze -analyzer-checker=core,deadcode.DeadStores,alpha.deadcode.UnreachableCode -verify … 5 // The first few tests are non-path specific - we should be able to find them 9 a += 5; // expected-warning{{never executed}} in test() 10 case 2: in test() 12 case 3: in test() 24 foo(a); // expected-warning{{never executed}} in test2() 30 if (a > 5) { // expected-warning{{never executed}} in test3() 35 // These next tests are path-sensitive 41 a -= 2; in test4() 44 a = a + 56; // expected-warning{{never executed}} in test4() [all …]
|