| /external/rust/crates/predicates/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 12 [package] 14 rust-version = "1.69.0" 27 description = "An implementation of boolean-valued predicate functions." 28 homepage = "https://github.com/assert-rs/predicates-rs" 39 "data-structures", 40 "rust-patterns", 42 license = "MIT OR Apache-2.0" 43 repository = "https://github.com/assert-rs/predicates-rs" 45 [package.metadata.docs.rs] [all …]
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/ |
| D | DataReadWriteTest.java | 6 * Copyright (C) 2007-2010, International Business Machines Corporation and * 13 package android.icu.dev.test.duration; 31 private String normalize(String str) { in normalize() method in DataReadWriteTest 57 assertEquals(null, "<Test></Test>", normalize(str)); in testOpenClose() 73 assertEquals(null, "<x>true</x><y>false</y>", normalize(str)); in testBool() 99 boolean[] data = datas[j]; in testBoolArray() 104 xrw.boolArray("test", data); in testBoolArray() 107 assertEquals("" + j, target, normalize(str)); in testBoolArray() 114 assertEquals("" + j, data.length, out.length); in testBoolArray() 115 for (int i = 0; i < data.length; ++i) { in testBoolArray() [all …]
|
| /external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ |
| D | DataReadWriteTest.java | 5 * Copyright (C) 2007-2010, International Business Machines Corporation and * 12 package com.ibm.icu.dev.test.duration; 28 private String normalize(String str) { in normalize() method in DataReadWriteTest 54 assertEquals(null, "<Test></Test>", normalize(str)); in testOpenClose() 70 assertEquals(null, "<x>true</x><y>false</y>", normalize(str)); in testBool() 96 boolean[] data = datas[j]; in testBoolArray() 101 xrw.boolArray("test", data); in testBoolArray() 104 assertEquals("" + j, target, normalize(str)); in testBoolArray() 111 assertEquals("" + j, data.length, out.length); in testBoolArray() 112 for (int i = 0; i < data.length; ++i) { in testBoolArray() [all …]
|
| /external/icu/icu4c/source/tools/gensprep/ |
| D | gensprep.c | 6 * Copyright (C) 2003-2016, International Business Machines 11 * encoding: UTF-8 15 * created on: 2003-02-06 19 * parses them, and extracts the data for StringPrep profile. 52 #define NORMALIZE_DIRECTIVE "normalize" 54 #define CHECK_BIDI_DIRECTIVE "check-bidi" 57 /* prototypes --------------------------------------------------------------- */ 66 /* -------------------------------------------------------------------------- */ 78 { "norm-correction", NULL, NULL, NULL, 'm', UOPT_REQUIRES_ARG, 0 }, 79 { "check-bidi", NULL, NULL, NULL, 'k', UOPT_NO_ARG, 0}, [all …]
|
| /external/cronet/third_party/icu/source/tools/gensprep/ |
| D | gensprep.c | 6 * Copyright (C) 2003-2016, International Business Machines 11 * encoding: UTF-8 15 * created on: 2003-02-06 19 * parses them, and extracts the data for StringPrep profile. 52 #define NORMALIZE_DIRECTIVE "normalize" 54 #define CHECK_BIDI_DIRECTIVE "check-bidi" 57 /* prototypes --------------------------------------------------------------- */ 66 /* -------------------------------------------------------------------------- */ 78 { "norm-correction", NULL, NULL, NULL, 'm', UOPT_REQUIRES_ARG, 0 }, 79 { "check-bidi", NULL, NULL, NULL, 'k', UOPT_NO_ARG, 0}, [all …]
|
| /external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ |
| D | UnicodeNormalizer.java | 4 * Copyright (C) 1998-2007 International Business Machines Corporation and 12 package com.ibm.icu.dev.test.normalizer; 24 // static final String copyright = "Copyright (C) 1998-2003 International Business Machines Corp… 31 if (data == null) data = NormalizerBuilder.build(fullData); // load 1st time in UnicodeNormalizer() 56 public StringBuffer normalize(String source, StringBuffer target) { in normalize() method in UnicodeNormalizer 75 public String normalize(String source) { in normalize() method in UnicodeNormalizer 76 return normalize(source, new StringBuffer()).toString(); in normalize() 106 data.getRecursiveDecomposition(canonical, ch, buffer); in internalDecompose() 115 int chClass = data.getCanonicalClass(ch); in internalDecompose() 119 // bubble-sort combining marks as necessary in internalDecompose() [all …]
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
| D | UnicodeNormalizer.java | 5 * Copyright (C) 1998-2007 International Business Machines Corporation and 13 package android.icu.dev.test.normalizer; 27 // static final String copyright = "Copyright (C) 1998-2003 International Business Machines Corp… 34 if (data == null) data = NormalizerBuilder.build(fullData); // load 1st time in UnicodeNormalizer() 59 public StringBuffer normalize(String source, StringBuffer target) { in normalize() method in UnicodeNormalizer 78 public String normalize(String source) { in normalize() method in UnicodeNormalizer 79 return normalize(source, new StringBuffer()).toString(); in normalize() 109 data.getRecursiveDecomposition(canonical, ch, buffer); in internalDecompose() 118 int chClass = data.getCanonicalClass(ch); in internalDecompose() 122 // bubble-sort combining marks as necessary in internalDecompose() [all …]
|
| /external/aws-sdk-java-v2/metric-publishers/cloudwatch-metric-publisher/src/main/java/software/amazon/awssdk/metrics/publishers/cloudwatch/internal/transform/ |
| D | MetricCollectionAggregator.java | 16 package software.amazon.awssdk.metrics.publishers.cloudwatch.internal.transform; 42 …* class aggregates the data so that multiple {@code MetricCollection}s can be placed in the same {… 44 * <p><b>Warning:</b> This class is *not* thread-safe. 58 …* trial-and-error to roughly equate to a 40KB limit when we are also at the {@link #MAX_METRIC_DAT… 65 private static final ApiName API_NAME = ApiName.builder().name("hll").version("cw-mp").build(); 74 * The {@link TimeBucketedMetrics} that actually performs the data aggregation whenever 96 * Get all {@link PutMetricDataRequest}s that can be generated from the data that was added via 115 …metric.ifSummary(summaryAggregator -> requestMetricDatums.add(summaryMetricDatum(timeBucket, summa… in getRequests() 117 metric.ifDetailed(detailedAggregator -> { in getRequests() 128 MetricDatum data = detailedMetricDatum(timeBucket, detailedAggregator, in getRequests() [all …]
|
| /external/apache-commons-compress/src/site/xdoc/ |
| D | pack200.xml | 2 <!-- 11 http://www.apache.org/licenses/LICENSE-2.0 19 --> 22 <title>Commons Compress Pack200 Package</title> 26 <section name="The Pack200 package"> 38 default, the streams provided by the Pack200 package only 45 <p>The Pack200-API provided by the java class library is not 52 <p><code>Pack200CompressorOutputStream</code> will cache all data that 56 <p>Two different caching modes are available - "in memory", 57 which is the default, and "temporary file". By default data [all …]
|
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
| D | SimpleXMLSource.java | 1 package org.unicode.cldr.util; 57 // System.err.println("WARNING: "+getLocaleID()+": path not present in data: " + xpath); in getFullPathAtDPath() 59 return null; // throw new IllegalArgumentException("Path not present in data: " + xpath); in getFullPathAtDPath() 127 VALUE_TO_PATH.remove(normalize(oldValue), distinguishingXPath); in updateValuePathMapping() 130 VALUE_TO_PATH.put(normalize(newValue), distinguishingXPath); in updateValuePathMapping() 148 String value = normalize(value1); in getPathsWithValue() 152 Set<String> paths = VALUE_TO_PATH.getAll(normalize(valueToMatch)); in getPathsWithValue() 176 …"[^[:L:][:M:][:N:][:Sc:][\\u202F\uFFFF _ ¡ « ( ) \\- \\[ \\] \\{ \\} § / \\\\ % ٪ ‰ ؉ ‱-″ ` \\^ ¯ … 179 public static String normalize(String valueToMatch) { in normalize() method in SimpleXMLSource 191 String result = replace(NON_ALPHANUM, normalizer2.normalize(temp), ""); in normalize2() [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| D | StringPrep.java | 6 * Copyright (C) 2003-2015, International Business Machines Corporation and 11 package android.icu.text; 31 * Profiles of StingPrep are set of rules and data according to which the 47 * <li> Normalize: Possibly normalize the result of step 1 using Unicode 51 * <li> Check bidi: Possibly check for right-to-left characters, and if 204 …NG_INDEX_START = 3; /* The starting index of 1 UChar mapping index in the mapping data array */ 205 …NG_INDEX_START = 4; /* The starting index of 2 UChars mapping index in the mapping data array */ 212 // CharTrie implementation for reading the trie data 214 // Indexes read from the data file 216 // mapping data read from the data file [all …]
|
| /external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/ |
| D | StringPrep.java | 5 * Copyright (C) 2003-2015, International Business Machines Corporation and 10 package com.ibm.icu.text; 30 * Profiles of StingPrep are set of rules and data according to which the 46 * <li> Normalize: Possibly normalize the result of step 1 using Unicode 50 * <li> Check bidi: Possibly check for right-to-left characters, and if 216 …NG_INDEX_START = 3; /* The starting index of 1 UChar mapping index in the mapping data array */ 217 …NG_INDEX_START = 4; /* The starting index of 2 UChars mapping index in the mapping data array */ 224 // CharTrie implementation for reading the trie data 226 // Indexes read from the data file 228 // mapping data read from the data file [all …]
|
| /external/rust/crates/data-encoding/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 12 [package] 14 rust-version = "1.48" 15 name = "data-encoding" 24 description = "Efficient and customizable data-encoding functions like base64, base32, and hex" 25 documentation = "https://docs.rs/data-encoding" 35 "no-std", 38 repository = "https://github.com/ia0/data-encoding" 40 [package.metadata.docs.rs] 41 rustdoc-args = ["--cfg=docsrs"]
|
| /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
| D | FCDUTF16CollationIterator.java | 6 * Copyright (C) 2010-2014, International Business Machines 15 package android.icu.impl.coll; 32 public FCDUTF16CollationIterator(CollationData data, boolean numeric, CharSequence s, int p) { in FCDUTF16CollationIterator() argument 33 super(data, numeric, s, p); in FCDUTF16CollationIterator() 37 nfcImpl = data.nfcImpl; in FCDUTF16CollationIterator() 59 return (pos - rawStart) == (o.pos - /*o.*/ rawStart); in equals() 62 return (segmentStart - rawStart) == (o.segmentStart - /*o.*/ rawStart) && in equals() 63 (pos - start) == (o.pos - o.start); in equals() 85 return pos - rawStart; in getOffset() 87 return segmentStart - rawStart; in getOffset() [all …]
|
| D | FCDIterCollationIterator.java | 6 * Copyright (C) 2012-2014, International Business Machines 15 package android.icu.impl.coll; 25 public FCDIterCollationIterator(CollationData data, boolean numeric, in FCDIterCollationIterator() argument 27 super(data, numeric, ui); in FCDIterCollationIterator() 30 nfcImpl = data.nfcImpl; in FCDIterCollationIterator() 137 pos -= Character.charCount(c); in previousCodePoint() 142 pos -= Character.charCount(c); in previousCodePoint() 207 // Specify the class to avoid a virtual-function indirection. 210 --num; 216 // Specify the class to avoid a virtual-function indirection. in backwardNumCodePoints() [all …]
|
| /external/icu/icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/ |
| D | FCDUTF16CollationIterator.java | 5 * Copyright (C) 2010-2014, International Business Machines 14 package com.ibm.icu.impl.coll; 30 public FCDUTF16CollationIterator(CollationData data, boolean numeric, CharSequence s, int p) { in FCDUTF16CollationIterator() argument 31 super(data, numeric, s, p); in FCDUTF16CollationIterator() 35 nfcImpl = data.nfcImpl; in FCDUTF16CollationIterator() 57 return (pos - rawStart) == (o.pos - /*o.*/ rawStart); in equals() 60 return (segmentStart - rawStart) == (o.segmentStart - /*o.*/ rawStart) && in equals() 61 (pos - start) == (o.pos - o.start); in equals() 83 return pos - rawStart; in getOffset() 85 return segmentStart - rawStart; in getOffset() [all …]
|
| D | FCDIterCollationIterator.java | 5 * Copyright (C) 2012-2014, International Business Machines 14 package com.ibm.icu.impl.coll; 23 public FCDIterCollationIterator(CollationData data, boolean numeric, in FCDIterCollationIterator() argument 25 super(data, numeric, ui); in FCDIterCollationIterator() 28 nfcImpl = data.nfcImpl; in FCDIterCollationIterator() 135 pos -= Character.charCount(c); in previousCodePoint() 140 pos -= Character.charCount(c); in previousCodePoint() 205 // Specify the class to avoid a virtual-function indirection. 208 --num; 214 // Specify the class to avoid a virtual-function indirection. in backwardNumCodePoints() [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/impl/ |
| D | Norm2AllModes.java | 6 * Copyright (C) 2009-2016, International Business Machines 11 package android.icu.impl; 24 // Public API dispatch via Normalizer2 subclasses -------------------------- *** 32 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.NoopNormalizer2 41 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.NoopNormalizer2 97 // normalize 99 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl 104 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize() 108 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl 114 normalize(src, buffer); in normalize() [all …]
|
| /external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/ |
| D | Norm2AllModes.java | 5 * Copyright (C) 2009-2016, International Business Machines 10 package com.ibm.icu.impl; 20 // Public API dispatch via Normalizer2 subclasses -------------------------- *** 25 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.NoopNormalizer2 34 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.NoopNormalizer2 87 // normalize 89 public StringBuilder normalize(CharSequence src, StringBuilder dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl 94 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize() 98 public Appendable normalize(CharSequence src, Appendable dest) { in normalize() method in Norm2AllModes.Normalizer2WithImpl 104 normalize(src, buffer); in normalize() [all …]
|
| /external/rust/crates/either/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 9 # issue against the rust-lang/cargo repository. If you're 13 [package] 20 readme = "README-crates.io.md" 21 keywords = ["data-structure", "no_std"] 22 categories = ["data-structures", "no-std"] 23 license = "MIT OR Apache-2.0" 25 [package.metadata.docs.rs] 28 [package.metadata.release] 29 no-dev-version = true [all …]
|
| /external/webrtc/modules/audio_processing/test/py_quality_assessment/quality_assessment/ |
| D | signal_processing.py | 3 # Use of this source code is governed by a BSD-style license 20 logging.critical('Cannot import the third-party Python package numpy') 27 logging.critical('Cannot import the third-party Python package pydub') 34 logging.critical('Cannot import the third-party Python package scipy') 163 def Fft(cls, signal, normalize=True): argument 165 raise NotImplementedError('multiple-channel FFT not implemented') 167 if normalize: 183 threshold: minimum number of samples at full-scale in a row. 190 'multiple-channel clipping not implemented') 193 'hard-clipping detection only supported for 16 bit samples') [all …]
|
| /external/rust/crates/arrayvec/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 12 [package] 24 "data-structure", 28 "data-structures", 29 "no-std", 31 license = "MIT OR Apache-2.0" 34 [package.metadata.docs.rs] 40 [package.metadata.release] 41 no-dev-version = true 42 tag-name = "{{version}}" [all …]
|
| /external/rust/crates/tinyvec/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 12 [package] 17 description = "`tinyvec` provides 100% safe vec-like data structures." 22 "no-std", 25 "data-structures", 26 "no-std", 28 license = "Zlib OR Apache-2.0 OR MIT" 31 [package.metadata.docs.rs] 40 rustdoc-args = [ 41 "--cfg", [all …]
|
| /external/bazelbuild-rules_android/rules/ |
| D | attrs.bzl | 7 # http://www.apache.org/licenses/LICENSE-2.0 45 values = [-1, 0, 1], 53 set of values, namely [-1, 0, 1]. Unfortunately, tristate accepts 58 to normalize the inputs. 65 return -1 74 normalize = _normalize_tristate, 77 auto = -1, 110 "assets_dir directory in the corresponding package."), 118 doc = ("Java package for which java sources will be generated. " + 119 "By default the package is inferred from the directory where the BUILD file " + [all …]
|
| /external/rust/crates/flagset/ |
| D | Cargo.toml | 4 # "normalize" Cargo.toml files for maximal compatibility 12 [package] 17 description = "Data types and a macro for generating enumeration-based bit flags" 22 license = "Apache-2.0" 24 [package.metadata.docs.rs] 25 all-features = true 30 [dev-dependencies.serde_json] 33 [dev-dependencies.serde_repr]
|