Home
last modified time | relevance | path

Searched full:canonical (Results 1 – 25 of 7224) sorted by relevance

12345678910>>...289

/aosp_15_r20/external/python/cpython2/Lib/test/decimaltestdata/
DdqCanonical.decTest2 -- dqCanonical.decTest -- test decQuad canonical results --
38 -- assert some standard (canonical) values; this tests that FromString
39 -- produces canonical results (many more in decimalNN)
54 -- Base tests for canonical encodings (individual operator
58 dqcan021 canonical #77ffcff3fcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
59 dqcan022 canonical #77fffff3fcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
60 dqcan023 canonical #77ffcffffcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
61 dqcan024 canonical #77ffcff3ffff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
62 dqcan025 canonical #77ffcff3fcffffcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
63 dqcan026 canonical #77ffcff3fcff3ffff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
[all …]
DddCanonical.decTest2 -- ddCanonical.decTest -- test decDouble canonical results --
37 -- assert some standard (canonical) values; this tests that FromString
38 -- produces canonical results (many more in decimalNN)
53 -- Base tests for canonical encodings (individual operator
57 ddcan021 canonical #77fcff3fcff3fcff -> #77fcff3fcff3fcff
58 ddcan022 canonical #77fcff3fcff3fcff -> #77fcff3fcff3fcff
59 ddcan023 canonical #77ffff3fcff3fcff -> #77fcff3fcff3fcff
60 ddcan024 canonical #77ffff3fcff3fcff -> #77fcff3fcff3fcff
61 ddcan025 canonical #77fcffffcff3fcff -> #77fcff3fcff3fcff
62 ddcan026 canonical #77fcffffcff3fcff -> #77fcff3fcff3fcff
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/decimaltestdata/
DdqCanonical.decTest2 -- dqCanonical.decTest -- test decQuad canonical results --
38 -- assert some standard (canonical) values; this tests that FromString
39 -- produces canonical results (many more in decimalNN)
54 -- Base tests for canonical encodings (individual operator
58 dqcan021 canonical #77ffcff3fcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
59 dqcan022 canonical #77fffff3fcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
60 dqcan023 canonical #77ffcffffcff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
61 dqcan024 canonical #77ffcff3ffff3fcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
62 dqcan025 canonical #77ffcff3fcffffcff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
63 dqcan026 canonical #77ffcff3fcff3ffff3fcff3fcff3fcff -> #77ffcff3fcff3fcff3fcff3fcff3fcff
[all …]
DddCanonical.decTest2 -- ddCanonical.decTest -- test decDouble canonical results --
37 -- assert some standard (canonical) values; this tests that FromString
38 -- produces canonical results (many more in decimalNN)
53 -- Base tests for canonical encodings (individual operator
57 ddcan021 canonical #77fcff3fcff3fcff -> #77fcff3fcff3fcff
58 ddcan022 canonical #77fcff3fcff3fcff -> #77fcff3fcff3fcff
59 ddcan023 canonical #77ffff3fcff3fcff -> #77fcff3fcff3fcff
60 ddcan024 canonical #77ffff3fcff3fcff -> #77fcff3fcff3fcff
61 ddcan025 canonical #77fcffffcff3fcff -> #77fcff3fcff3fcff
62 ddcan026 canonical #77fcffffcff3fcff -> #77fcff3fcff3fcff
[all …]
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
H A DBoolTagTest.java32 assertEquals(Boolean.TRUE, getMapValue("canonical: true", "canonical")); in testBool()
39 assertEquals(Boolean.TRUE, getMapValue("canonical: Yes", "canonical")); in testBoolCanonical()
40 assertEquals(Boolean.TRUE, getMapValue("canonical: yes", "canonical")); in testBoolCanonical()
41 assertEquals(Boolean.TRUE, getMapValue("canonical: YES", "canonical")); in testBoolCanonical()
42 assertEquals("yES", getMapValue("canonical: yES", "canonical")); in testBoolCanonical()
43 assertEquals(Boolean.FALSE, getMapValue("canonical: No", "canonical")); in testBoolCanonical()
44 assertEquals(Boolean.FALSE, getMapValue("canonical: NO", "canonical")); in testBoolCanonical()
45 assertEquals(Boolean.FALSE, getMapValue("canonical: no", "canonical")); in testBoolCanonical()
46 assertEquals(Boolean.FALSE, getMapValue("canonical: off", "canonical")); in testBoolCanonical()
47 assertEquals(Boolean.FALSE, getMapValue("canonical: Off", "canonical")); in testBoolCanonical()
[all …]
H A DTimestampTagTest.java29 getText("canonical: 2001-12-15T02:59:43.1Z", "canonical")); in testTimestamp()
32 getText("canonical: 2001-12-15T02:59:43.000Z", "canonical")); in testTimestamp()
61 getMapValue("canonical: !!timestamp 2001-12-15T02:59:43.1Z", "canonical") instanceof Date); in testTimestampShorthand()
65 assertTrue(getMapValue("canonical: !<tag:yaml.org,2002:timestamp> 2001-12-15T02:59:43.1Z", in testTimestampTag()
66 "canonical") instanceof Date); in testTimestampTag()
84 map.put("canonical", date); in testTimestampOutMap()
86 assertEquals("{canonical: !!timestamp '2008-09-23T10:35:04Z'}\n", output); in testTimestampOutMap()
94 map.put("canonical", cal); in testTimestampNegativeTimezoneOffset()
96 assertEquals("{canonical: !!timestamp '2008-09-23T14:35:04-01:15'}\n", output); in testTimestampNegativeTimezoneOffset()
104 map.put("canonical", cal); in testTimestampDoubleDigitsForOffset()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/AST/
DCanonicalType.h10 // canonical types.
43 // Canonical, qualified type template
46 /// Represents a canonical, potentially-qualified type.
49 /// to the canonical representation of a type, where all typedefs and other
66 /// The actual, canonical type.
70 /// Constructs a NULL canonical type.
74 /// canonical type pointers.
80 /// canonical type.
86 /// canonical type, or nullptr.
103 /// Retrieve a canonical type pointer with a different static type,
[all …]
/aosp_15_r20/external/clang/include/clang/AST/
H A DCanonicalType.h11 // canonical types.
28 // Canonical, qualified type template
31 /// \brief Represents a canonical, potentially-qualified type.
34 /// to the canonical representation of a type, where all typedefs and other
53 /// \brief The actual, canonical type.
57 /// \brief Constructs a NULL canonical type.
61 /// canonical type pointers.
67 /// canonical type.
73 /// canonical type, or NULL.
91 /// \brief Retrieve a canonical type pointer with a different static type,
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/AST/
DCanonicalType.h10 // canonical types.
43 // Canonical, qualified type template
46 /// Represents a canonical, potentially-qualified type.
49 /// to the canonical representation of a type, where all typedefs and other
66 /// The actual, canonical type.
70 /// Constructs a NULL canonical type.
74 /// canonical type pointers.
80 /// canonical type.
86 /// canonical type, or nullptr.
103 /// Retrieve a canonical type pointer with a different static type,
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/clang/AST/
DCanonicalType.h10 // canonical types.
43 // Canonical, qualified type template
46 /// Represents a canonical, potentially-qualified type.
49 /// to the canonical representation of a type, where all typedefs and other
66 /// The actual, canonical type.
70 /// Constructs a NULL canonical type.
74 /// canonical type pointers.
80 /// canonical type.
86 /// canonical type, or nullptr.
103 /// Retrieve a canonical type pointer with a different static type,
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/AST/
DCanonicalType.h10 // canonical types.
43 // Canonical, qualified type template
46 /// Represents a canonical, potentially-qualified type.
49 /// to the canonical representation of a type, where all typedefs and other
66 /// The actual, canonical type.
70 /// Constructs a NULL canonical type.
74 /// canonical type pointers.
80 /// canonical type.
86 /// canonical type, or nullptr.
103 /// Retrieve a canonical type pointer with a different static type,
[all …]
/aosp_15_r20/external/snakeyaml/src/test/resources/issues/
H A Dissue56-1.yaml4 canonical:
11 canonical:
26 canonical: {}
35 canonical:
54 canonical:
67 canonical:
110 canonical:
152 canonical:
163 canonical:
170 canonical:
[all …]
/aosp_15_r20/packages/modules/NeuralNetworks/tools/api/
Dtypes.spec3 %define-kinds canonical ndk hal_1.0 hal_1.1 hal_1.2 hal_1.3 aidl
68 %kind aidl canonical hal*
124 %kind aidl canonical hal_1.2 hal_1.3
164 %kind canonical
211 %kind aidl canonical ndk hal_1.2 hal_1.3
230 %kind aidl canonical ndk hal_1.3
243 %kind aidl canonical hal_1.3+
263 %kind canonical
310 %kind canonical
401 %kind aidl canonical ndk hal_1.2+
[all …]
/aosp_15_r20/system/libbase/
H A Dparsenetaddress_test.cpp24 std::string canonical, host, error; in TEST() local
28 ParseNetAddress("www.google.com", &host, &port, &canonical, &error)); in TEST()
29 EXPECT_EQ("www.google.com:123", canonical); in TEST()
34 ParseNetAddress("www.google.com:666", &host, &port, &canonical, &error)); in TEST()
35 EXPECT_EQ("www.google.com:666", canonical); in TEST()
41 std::string canonical, host, error; in TEST() local
44 EXPECT_TRUE(ParseNetAddress("1.2.3.4", &host, &port, &canonical, &error)); in TEST()
45 EXPECT_EQ("1.2.3.4:123", canonical); in TEST()
49 EXPECT_TRUE(ParseNetAddress("1.2.3.4:666", &host, &port, &canonical, &error)); in TEST()
50 EXPECT_EQ("1.2.3.4:666", canonical); in TEST()
[all …]
/aosp_15_r20/external/clang/test/Driver/
H A Dsparc-as.c15 // RUN: %clang -no-canonical-prefixes -target sparc--netbsd \
19 // RUN: %clang -mcpu=v8 -no-canonical-prefixes -target sparc--netbsd \
23 // RUN: %clang -mcpu=supersparc -no-canonical-prefixes -target sparc--netbsd \
27 // RUN: %clang -mcpu=sparclite -no-canonical-prefixes -target sparc--netbsd \
31 // RUN: %clang -mcpu=f934 -no-canonical-prefixes -target sparc--netbsd \
35 // RUN: %clang -mcpu=hypersparc -no-canonical-prefixes -target sparc--netbsd \
39 // RUN: %clang -mcpu=sparclite86x -no-canonical-prefixes -target sparc--netbsd \
43 // RUN: %clang -mcpu=sparclet -no-canonical-prefixes -target sparc--netbsd \
47 // RUN: %clang -mcpu=tsc701 -no-canonical-prefixes -target sparc--netbsd \
51 // RUN: %clang -mcpu=v9 -no-canonical-prefixes -target sparc--netbsd \
[all …]
H A Dlinux-ld.c4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
18 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
38 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
52 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
73 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
88 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
109 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
130 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
151 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
158 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \
[all …]
H A Dnetbsd.c1 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd \
4 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd \
7 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd \
11 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd \
14 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd7.0.0 \
17 // RUN: %clang -no-canonical-prefixes -target x86_64--netbsd6.0.0 \
20 // RUN: %clang -no-canonical-prefixes -target aarch64--netbsd \
23 // RUN: %clang -no-canonical-prefixes -target aarch64--netbsd7.0.0 \
26 // RUN: %clang -no-canonical-prefixes -target arm--netbsd-eabi \
29 // RUN: %clang -no-canonical-prefixes -target armeb--netbsd-eabi \
[all …]
/aosp_15_r20/external/boringssl/src/crypto/base64/
H A Dbase64_test.cc32 // canonical indicates that the encoding is the expected encoding of the
34 canonical, enumerator
36 // need not be the canonical one.
50 {canonical, "", ""},
51 {canonical, "f", "Zg==\n"},
52 {canonical, "fo", "Zm8=\n"},
53 {canonical, "foo", "Zm9v\n"},
54 {canonical, "foob", "Zm9vYg==\n"},
55 {canonical, "fooba", "Zm9vYmE=\n"},
56 {canonical, "foobar", "Zm9vYmFy\n"},
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DInternersTest.java37 String canonical = "a"; in testStrong_simplistic() local
41 assertSame(canonical, pool.intern(canonical)); in testStrong_simplistic()
42 assertSame(canonical, pool.intern(not)); in testStrong_simplistic()
59 String canonical = "a"; in testWeak_simplistic() local
63 assertSame(canonical, pool.intern(canonical)); in testWeak_simplistic()
64 assertSame(canonical, pool.intern(not)); in testWeak_simplistic()
83 Integer canonical = new Integer(5); in testWeak_afterGC() local
87 assertSame(canonical, pool.intern(canonical)); in testWeak_afterGC()
89 WeakReference<Integer> signal = new WeakReference<>(canonical); in testWeak_afterGC()
90 canonical = null; // Hint to the JIT that canonical is unreachable in testWeak_afterGC()
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DInternersTest.java37 String canonical = "a"; in testStrong_simplistic() local
41 assertSame(canonical, pool.intern(canonical)); in testStrong_simplistic()
42 assertSame(canonical, pool.intern(not)); in testStrong_simplistic()
59 String canonical = "a"; in testWeak_simplistic() local
63 assertSame(canonical, pool.intern(canonical)); in testWeak_simplistic()
64 assertSame(canonical, pool.intern(not)); in testWeak_simplistic()
83 Integer canonical = new Integer(5); in testWeak_afterGC() local
87 assertSame(canonical, pool.intern(canonical)); in testWeak_afterGC()
89 WeakReference<Integer> signal = new WeakReference<>(canonical); in testWeak_afterGC()
90 canonical = null; // Hint to the JIT that canonical is unreachable in testWeak_afterGC()
[all …]
/aosp_15_r20/external/rust/crates/quiche/deps/boringssl/src/crypto/base64/
Dbase64_test.cc32 // canonical indicates that the encoding is the expected encoding of the
34 canonical, enumerator
36 // need not be the canonical one.
50 {canonical, "", ""},
51 {canonical, "f", "Zg==\n"},
52 {canonical, "fo", "Zm8=\n"},
53 {canonical, "foo", "Zm9v\n"},
54 {canonical, "foob", "Zm9vYg==\n"},
55 {canonical, "fooba", "Zm9vYmE=\n"},
56 {canonical, "foobar", "Zm9vYmFy\n"},
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/base64/
H A Dbase64_test.cc32 // canonical indicates that the encoding is the expected encoding of the
34 canonical, enumerator
36 // need not be the canonical one.
50 {canonical, "", ""},
51 {canonical, "f", "Zg==\n"},
52 {canonical, "fo", "Zm8=\n"},
53 {canonical, "foo", "Zm9v\n"},
54 {canonical, "foob", "Zm9vYg==\n"},
55 {canonical, "fooba", "Zm9vYmE=\n"},
56 {canonical, "foobar", "Zm9vYmFy\n"},
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/deps/boringssl/src/crypto/base64/
Dbase64_test.cc32 // canonical indicates that the encoding is the expected encoding of the
34 canonical, enumerator
36 // need not be the canonical one.
50 {canonical, "", ""},
51 {canonical, "f", "Zg==\n"},
52 {canonical, "fo", "Zm8=\n"},
53 {canonical, "foo", "Zm9v\n"},
54 {canonical, "foob", "Zm9vYg==\n"},
55 {canonical, "fooba", "Zm9vYmE=\n"},
56 {canonical, "foobar", "Zm9vYmFy\n"},
[all …]
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/auth/signing/
H A DAwsSigningConfig.java154 …* A set of string constants for various canonical request payload values. If signed body header t…
168 * Controls if signing adds a header containing the canonical request's body value
386 * Sets whether or not signing should uri encode urls as part of canonical request construction.
388 …t decode before checking signature, requiring us to actually double-encode the uri in the canonical
390 * @param useDoubleUriEncode should signing uri encode urls in the canonical request
395 * Gets whether or not signing will uri encode urls during canonical request construction
396 * @return whether or not signing will uri encode urls during canonical request construction
401 * Sets whether or not the uri path should be normalized during canonical request construction
402 …ormalizeUriPath whether or not the uri path should be normalized during canonical request construc…
407 * Gets whether or not the uri path should be normalized during canonical request construction
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/
Dcargo2android_toplevel.bp.fragment135 srcs: ["tests/canonical/le_test_file.pdl"],
163 " $(location tests/canonical/le_test_file.pdl) > $(out);" +
164 …"$(location :pdlc) $(location tests/canonical/le_test_vectors.json) --output-format rust --tests >…
166 "tests/canonical/le_test_file.pdl",
167 "tests/canonical/le_test_vectors.json",
192 …"$(location :pdlc) $(location tests/canonical/be_test_vectors.json) --output-format rust --tests >…
195 "tests/canonical/be_test_vectors.json",
234 // little endian test file located at tests/canonical/le_test_file.pdl.
250 "tests/canonical/le_test_file.pdl",
258 // file derived from tests/canonical/le_test_file.pdl.
[all …]

12345678910>>...289