Home
last modified time | relevance | path

Searched full:alphanumeric (Results 1 – 25 of 1086) sorted by relevance

12345678910>>...44

/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/draft/
DCategories.txt21161 1D400 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL A
21162 1D401 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL B
21163 1D402 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL C
21164 1D403 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL D
21165 1D404 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL E
21166 1D405 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL F
21167 1D406 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL G
21168 1D407 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL H
21169 1D408 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL I
21170 1D409 Lu Symbol Math Alphanumeric Bold MATHEMATICAL BOLD CAPITAL J
[all …]
/external/zxing/core/src/main/java/com/google/zxing/qrcode/encoder/
DMinimalEncoder.java40 …* If initial input data is in the exclusive subset of the Alphanumeric character set AND if there …
42 * bit byte mode ELSE select Alphanumeric mode;
45 * encodes 2 bits smaller as ALPHANUMERIC(AAAAAA), BYTE(a) than by encoding it as BYTE(AAAAAAa).
184 case ALPHANUMERIC: return isAlphanumeric(c); in canEncode()
200 case ALPHANUMERIC: in getCompactedOrdinal()
240 if (canEncode(Mode.ALPHANUMERIC, stringToEncode.charAt(from))) { in addEdges()
241 addEdge(edges, from, new Edge(Mode.ALPHANUMERIC, from, 0, from + 1 >= inputLength || in addEdges()
242 … !canEncode(Mode.ALPHANUMERIC, stringToEncode.charAt(from + 1)) ? 1 : 2, previous, version)); in addEdges()
281 …* Note: This example assumes that alphanumeric encoding is only possible in multiples of two chara… in encodeSpecificVersion()
286 * (initial) -- ALPHANUMERIC(AB) (24) --> (2_ALPHANUMERIC) in encodeSpecificVersion()
[all …]
/external/zxing/core/src/test/java/com/google/zxing/qrcode/encoder/
DEncoderTestCase.java74 // Alphanumeric mode. in testChooseMode()
75 assertSame(Mode.ALPHANUMERIC, Encoder.chooseMode("A")); in testChooseMode()
76 assertSame(Mode.ALPHANUMERIC, in testChooseMode()
101 " mode: ALPHANUMERIC\n" + in testEncode()
342 Mode.ALPHANUMERIC, in testAppendLengthInfo()
369 Encoder.appendBytes("A", Mode.ALPHANUMERIC, bits, Encoder.DEFAULT_BYTE_MODE_ENCODING); in testAppendBytes()
373 Encoder.appendBytes("a", Mode.ALPHANUMERIC, bits, Encoder.DEFAULT_BYTE_MODE_ENCODING); in testAppendBytes()
673 verifyMinimalEncoding("A", "ALPHANUMERIC(A)", null, false); in testMinimalEncoder1()
678 verifyMinimalEncoding("AB", "ALPHANUMERIC(AB)", null, false); in testMinimalEncoder2()
683 verifyMinimalEncoding("ABC", "ALPHANUMERIC(ABC)", null, false); in testMinimalEncoder3()
[all …]
/external/python/google-api-python-client/docs/dyn/
Danalyticsadmin_v1alpha.properties.customDimensions.html140 … dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
142 …ed dimension, then this is the event parameter name. May only contain alphanumeric and underscore …
157 … dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
159 …ed dimension, then this is the event parameter name. May only contain alphanumeric and underscore …
181 … dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
183 …ed dimension, then this is the event parameter name. May only contain alphanumeric and underscore …
209 … dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
211 …ed dimension, then this is the event parameter name. May only contain alphanumeric and underscore …
245 … dimension as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
247 …ed dimension, then this is the event parameter name. May only contain alphanumeric and underscore …
[all …]
Danalyticsadmin_v1alpha.properties.customMetrics.html139 …tom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
142 …coped metric, then this is the event parameter name. May only contain alphanumeric and underscore …
159 …tom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
162 …coped metric, then this is the event parameter name. May only contain alphanumeric and underscore …
186 …tom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
189 …coped metric, then this is the event parameter name. May only contain alphanumeric and underscore …
217 …tom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
220 …coped metric, then this is the event parameter name. May only contain alphanumeric and underscore …
256 …tom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and …
259 …coped metric, then this is the event parameter name. May only contain alphanumeric and underscore …
[all …]
/external/rust/crates/rand/src/distributions/
Dother.rs36 /// use rand::distributions::Alphanumeric;
39 /// let chars: String = (0..7).map(|_| rng.sample(Alphanumeric) as char).collect();
46 /// use rand::distributions::{Alphanumeric, DistString};
47 /// let string = Alphanumeric.sample_string(&mut rand::thread_rng(), 16);
69 pub struct Alphanumeric; struct
108 impl Distribution<u8> for Alphanumeric { implementation
128 impl DistString for Alphanumeric { implementation
294 let c: char = rng.sample(Alphanumeric).into(); in test_alphanumeric()
322 test_samples(&Alphanumeric, 0, &[104, 109, 101, 51, 77]); in value_stability()
/external/aws-sdk-java-v2/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/resource/
DS3AccessPointBuilderTest.java86 .hasMessageContaining("alphanumeric"); in toURI_accessPointNameWithSlashes_throwsIllegalArgumentException()
100 .hasMessageContaining("alphanumeric"); in toURI_accountIdWithSlashes_throwsIllegalArgumentException()
170 .hasMessageContaining("alphanumeric"); in toURI_accessPointNameWithUrlEncodedCharacters_throwsIllegalArgumentException()
184 .hasMessageContaining("alphanumeric"); in toURI_accountIdWithUrlEncodedCharacters_throwsIllegalArgumentException()
237 .hasMessageContaining("alphanumeric") in toURI_noRegion_accessPointNameWithDots_segmentHasInvalidCharacters()
/external/google-cloud-java/java-gkehub/proto-google-cloud-gkehub-v1alpha2/src/main/java/com/google/cloud/gkehub/v1alpha2/
DCreateMembershipRequestOrBuilder.java64 * 2. It must consist of lower case alphanumeric characters or `-`
65 * 3. It must start and end with an alphanumeric character
82 * 2. It must consist of lower case alphanumeric characters or `-`
83 * 3. It must start and end with an alphanumeric character
DCreateMembershipRequest.java139 * 2. It must consist of lower case alphanumeric characters or `-`
140 * 3. It must start and end with an alphanumeric character
168 * 2. It must consist of lower case alphanumeric characters or `-`
169 * 3. It must start and end with an alphanumeric character
774 * 2. It must consist of lower case alphanumeric characters or `-`
775 * 3. It must start and end with an alphanumeric character
802 * 2. It must consist of lower case alphanumeric characters or `-`
803 * 3. It must start and end with an alphanumeric character
830 * 2. It must consist of lower case alphanumeric characters or `-`
831 * 3. It must start and end with an alphanumeric character
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/helpers/
Drand.py20 # Alphanumeric characters, similar to regex [:alnum:] class, [a-zA-Z0-9]
22 # Lowercase alphanumeric characters: [a-z0-9]
28 """Return random alphanumeric string of given length.
/external/google-cloud-java/java-securitycenter-settings/proto-google-cloud-securitycenter-settings-v1beta1/src/main/java/com/google/cloud/securitycenter/settings/v1beta1/
DDetectorOrBuilder.java113 * Output only. Google curated detector labels. These are alphanumeric tags that are not
128 * Output only. Google curated detector labels. These are alphanumeric tags that are not
143 * Output only. Google curated detector labels. These are alphanumeric tags that are not
159 * Output only. Google curated detector labels. These are alphanumeric tags that are not
/external/cronet/third_party/ced/src/util/
Dcase_insensitive_hash.h50 // non-alphanumeric characters. This is useful when we want all variants of
69 // Skip until each pointer is pointing to an alphanumeric char or '\0' in operator()
77 return false; // mismatch on alphanumeric char or '\0' in operator()
/external/rust/crates/tonic/benches-disabled/benchmarks/
Dutils.rs1 use rand::distributions::Alphanumeric;
6 .sample_iter(&Alphanumeric) in generate_rnd_string()
/external/google-cloud-java/java-gkehub/proto-google-cloud-gkehub-v1/src/main/java/com/google/cloud/gkehub/v1/
DCreateMembershipRequestOrBuilder.java64 * 2. It must consist of lower case alphanumeric characters or `-`
65 * 3. It must start and end with an alphanumeric character
82 * 2. It must consist of lower case alphanumeric characters or `-`
83 * 3. It must start and end with an alphanumeric character
/external/google-cloud-java/java-gkehub/proto-google-cloud-gkehub-v1beta1/src/main/java/com/google/cloud/gkehub/v1beta1/
DCreateMembershipRequestOrBuilder.java64 * 2. It must consist of lower case alphanumeric characters or `-`
65 * 3. It must start and end with an alphanumeric character
82 * 2. It must consist of lower case alphanumeric characters or `-`
83 * 3. It must start and end with an alphanumeric character
/external/google-cloud-java/java-analytics-admin/proto-google-analytics-admin-v1beta/src/main/java/com/google/analytics/admin/v1beta/
DCustomDimensionOrBuilder.java61 * May only contain alphanumeric and underscore characters, starting with a
81 * May only contain alphanumeric and underscore characters, starting with a
99 * UI. Max length of 82 characters, alphanumeric plus space and underscore
115 * UI. Max length of 82 characters, alphanumeric plus space and underscore
/external/google-cloud-java/java-analytics-admin/proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/
DCustomDimensionOrBuilder.java63 * May only contain alphanumeric and underscore characters, starting with a
85 * May only contain alphanumeric and underscore characters, starting with a
103 * UI. Max length of 82 characters, alphanumeric plus space and underscore
119 * UI. Max length of 82 characters, alphanumeric plus space and underscore
/external/junit/src/main/java/org/junit/runner/manipulation/
DAlphanumeric.java12 public final class Alphanumeric extends Sorter implements Ordering.Factory { class
14 public Alphanumeric() { in Alphanumeric() method in Alphanumeric
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1beta1/src/main/java/com/google/cloud/securitycenter/v1beta1/
DUpdateFindingRequestOrBuilder.java33 * alphanumeric and less than or equal to 32 characters and greater than 0
51 * alphanumeric and less than or equal to 32 characters and greater than 0
69 * alphanumeric and less than or equal to 32 characters and greater than 0
DUpdateFindingRequest.java77 * alphanumeric and less than or equal to 32 characters and greater than 0
98 * alphanumeric and less than or equal to 32 characters and greater than 0
121 * alphanumeric and less than or equal to 32 characters and greater than 0
582 * alphanumeric and less than or equal to 32 characters and greater than 0
602 * alphanumeric and less than or equal to 32 characters and greater than 0
628 * alphanumeric and less than or equal to 32 characters and greater than 0
656 * alphanumeric and less than or equal to 32 characters and greater than 0
682 * alphanumeric and less than or equal to 32 characters and greater than 0
713 * alphanumeric and less than or equal to 32 characters and greater than 0
738 * alphanumeric and less than or equal to 32 characters and greater than 0
[all …]
/external/rust/crates/nom/tests/
Dmultiline.rs2 character::complete::{alphanumeric1 as alphanumeric, line_ending as eol},
17 terminated(alphanumeric, end_of_line)(input) in read_line()
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1p1beta1/src/main/java/com/google/cloud/securitycenter/v1p1beta1/
DUpdateFindingRequestOrBuilder.java33 * alphanumeric and less than or equal to 32 characters and greater than 0
51 * alphanumeric and less than or equal to 32 characters and greater than 0
69 * alphanumeric and less than or equal to 32 characters and greater than 0
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1/src/main/java/com/google/cloud/securitycenter/v1/
DUpdateFindingRequestOrBuilder.java33 * alphanumeric and less than or equal to 32 characters and greater than 0
51 * alphanumeric and less than or equal to 32 characters and greater than 0
69 * alphanumeric and less than or equal to 32 characters and greater than 0
/external/rust/crates/hashbrown/tests/
Dset.rs4 use rand::{distributions::Alphanumeric, rngs::SmallRng, Rng, SeedableRng};
14 rng.sample_iter(&Alphanumeric) in test_hashset_insert_remove()
/external/googleapis/google/iam/v2/
Dpolicy.proto118 // name. For projects, requests can use the alphanumeric or the numeric ID.
188 // name. For projects, you can use the alphanumeric or the numeric ID.
221 // name. For projects, you can use the alphanumeric or the numeric ID.
237 // name. For projects, you can use the alphanumeric or the numeric ID.
271 // name. For projects, you can use the alphanumeric or the numeric ID.

12345678910>>...44