/aosp_15_r20/libcore/ |
H A D | EXPECTED_UPSTREAM | 18 …ernal/ssl/X509ExtendedTrustManager.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/net/ssl/i… 19 …om/sun/nio/file/ExtendedCopyOption.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/nio/file/… 20 …om/sun/nio/file/ExtendedOpenOption.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/nio/file/… 21 …io/file/ExtendedWatchEventModifier.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/nio/file/… 22 …file/SensitivityWatchEventModifier.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/nio/file/… 23 …/cert/internal/x509/X509V1CertImpl.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/com/sun/security/… 24 ojluni/src/main/java/java/awt/font/NumericShaper.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/java… 25 ojluni/src/main/java/java/awt/font/TextAttribute.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/java… 26 ojluni/src/main/java/java/beans/ChangeListenerMap.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/jav… 27 …a/beans/IndexedPropertyChangeEvent.java,jdk8u/jdk8u121-b13,jdk/src/share/classes/java/beans/Indexe… [all …]
|
/aosp_15_r20/external/testng/src/test/resources/ |
H A D | testng.xml | 17 <classes> 19 </classes> 35 <classes> 46 </classes> 55 <classes> 121 </classes> 130 <classes> 134 </classes> 138 <classes> 148 </classes> [all …]
|
H A D | testng.yaml | 7 classes: 13 classes: 26 classes: 80 classes: 88 classes: 92 classes: 97 classes: 104 classes: 109 classes: 130 classes: [all …]
|
/aosp_15_r20/external/sonivox/arm-wt-22k/misc/ |
HD | MMAPI.zip | ... .txt
Sonivox/mmapi/
Sonivox/mmapi/classes/
Sonivox/mmapi/classes/com/
Sonivox ... |
/aosp_15_r20/out/soong/.intermediates/external/oj-libjdwp/jdwpgen/linux_glibc_common/javac/ |
D | jdwpgen.jar.rsp | 1 …classes/build/tools/jdwpgen/AbstractCommandNode.java external/oj-libjdwp/make/src/classes/build/to…
|
/aosp_15_r20/cts/tools/release-parser/tests/resources/ |
H A D | CtsJniTestCases.apk.pb.txt | 159 classes { 168 classes { 184 classes { 196 classes { 203 classes { 233 classes { 310 classes { 382 classes { 403 classes { 423 classes { [all …]
|
H A D | Shell.apk.pb.txt | 184 classes { 232 classes { 240 classes { 247 classes { 271 classes { 506 classes { 522 classes { 549 classes { 628 classes { 645 classes { [all …]
|
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/ |
H A D | candidate_sampling_ops.py | 34 """Samples a set of classes using a uniform base distribution. 36 This operation randomly samples a tensor of sampled classes 48 of the target classes (`true_classes`) and the sampled 49 classes (`sampled_candidates`) is expected to occur in an average 50 tensor of sampled classes. These values correspond to `Q(y|x)` 58 num_true]`. The target classes. 59 num_true: An `int`. The number of target classes per training example. 60 num_sampled: An `int`. The number of classes to randomly sample. The 63 unique: A `bool`. Determines whether all sampled classes in a batch are 65 range_max: An `int`. The number of possible classes. [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/regex-automata-0.4.6/src/util/ |
H A D | alphabet.rs | 13 we collapse the alphabet of an automaton down into equivalence classes, where 17 equivalence classes: `a-z` and everything else. In terms of the transitions on 19 Just the equivalence classes. 21 The downside of equivalence classes is that, of course, searching a haystack 30 of equivalence classes that represents the "end" of a search. We call that 67 /// equivalence classes: 100 /// equivalence classes into a set of all possible byte values. If a DFA 101 /// uses equivalence classes instead of byte values, then the byte given 111 /// classes in the corresponding alphabet. Its maximum value is `256`, 120 "max number of byte-based equivalent classes is 256, but got {}", in eoi() [all …]
|
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/util/ |
H A D | alphabet.rs | 3 /// A representation of byte oriented equivalence classes. 13 /// Creates a new set of equivalence classes where all bytes are mapped to 19 /// Creates a new set of equivalence classes where each byte belongs to 22 let mut classes = ByteClasses::empty(); in singletons() localVariable 24 classes.set(b, b); in singletons() 26 classes in singletons() 42 /// these equivalence classes. Equivalently, this returns the total number 43 /// of equivalence classes. 46 // Add one since the number of equivalence classes is one bigger than in alphabet_len() 52 /// equivalence classes. [all …]
|
/aosp_15_r20/frameworks/base/docs/downloads/training/ |
HD | AndroidTestingFun.zip | ... /BuildConfig.java
AndroidTestingFun/app/build/classes/test/com/example/android/testingfun ... |
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/ |
D | classes.rs | 3 /// A representation of byte oriented equivalence classes. 12 /// Creates a new set of equivalence classes where all bytes are mapped to 18 /// Creates a new set of equivalence classes where each byte belongs to 21 let mut classes = ByteClasses::empty(); in singletons() localVariable 23 classes.set(i as u8, i as u8); in singletons() 25 classes in singletons() 28 /// Copies the byte classes given. The given slice must have length 0 or 37 let mut classes = ByteClasses::empty(); in from_slice() localVariable 39 classes.set(b as u8, class); in from_slice() 41 classes in from_slice() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/ |
D | classes.rs | 3 /// A representation of byte oriented equivalence classes. 12 /// Creates a new set of equivalence classes where all bytes are mapped to 18 /// Creates a new set of equivalence classes where each byte belongs to 21 let mut classes = ByteClasses::empty(); in singletons() localVariable 23 classes.set(i as u8, i as u8); in singletons() 25 classes in singletons() 43 /// these equivalence classes. Equivalently, this returns the total number 44 /// of equivalence classes. 51 /// equivalence class. Equivalently, there are 256 equivalence classes 60 /// equivalent to the number of equivalence classes. Each item is an [all …]
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/quantized/ |
H A D | library.cpp | 61 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv1d(Tensor qx, __torch__.torch.classes.quantized.Conv2… in TORCH_LIBRARY() 62 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv1d_relu(Tensor qx, __torch__.torch.classes.quantized.… in TORCH_LIBRARY() 63 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv2d.new(Tensor qx, __torch__.torch.classes.quantized.C… in TORCH_LIBRARY() 64 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv2d_relu.new(Tensor qx, __torch__.torch.classes.quanti… in TORCH_LIBRARY() 65 …_SCHEMA("quantized::conv2d_add(Tensor qx, Tensor qaccum, __torch__.torch.classes.quantized.Conv2dP… in TORCH_LIBRARY() 66 …MA("quantized::conv2d_add_relu(Tensor qx, Tensor qaccum, __torch__.torch.classes.quantized.Conv2dP… in TORCH_LIBRARY() 67 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv3d.new(Tensor qx, __torch__.torch.classes.quantized.C… in TORCH_LIBRARY() 68 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv3d_relu.new(Tensor qx, __torch__.torch.classes.quanti… in TORCH_LIBRARY() 69 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv2d(Tensor qx, __torch__.torch.classes.quantized.Conv2… in TORCH_LIBRARY() 70 …m.def(TORCH_SELECTIVE_SCHEMA("quantized::conv2d_relu(Tensor qx, __torch__.torch.classes.quantized.… in TORCH_LIBRARY() [all …]
|
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/libffi_osx/x86/ |
D | x86-ffi64.c | 52 /* All reference to register classes here is identical to the code in 56 These represent classes as documented by the PS ABI, with the exception 57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will 91 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes() 95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes() 103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes() 107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes() 116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes() 131 CLASSES will be filled by the register class used to pass each word 134 sized containers, classes[0] will be NO_CLASS and 1 is returned. [all …]
|
/aosp_15_r20/external/python/cpython3/Modules/_ctypes/libffi_osx/x86/ |
D | x86-ffi64.c | 52 /* All reference to register classes here is identical to the code in 56 These represent classes as documented by the PS ABI, with the exception 57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will 91 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes() 95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes() 103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes() 107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes() 116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes() 131 CLASSES will be filled by the register class used to pass each word 134 sized containers, classes[0] will be NO_CLASS and 1 is returned. [all …]
|
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/libffi/src/x86/ |
D | ffi64.c | 70 /* All reference to register classes here is identical to the code in 74 These represent classes as documented by the PS ABI, with the 75 exception of SSESF, SSEDF classes, that are basically SSE class, 110 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes() 114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes() 121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes() 125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes() 133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes() 148 CLASSES will be filled by the register class used to pass each word 151 sized containers, classes[0] will be NO_CLASS and 1 is returned. [all …]
|
/aosp_15_r20/frameworks/layoutlib/create/ |
H A D | README.txt | 21 generated by the Android build, right before the classes are converted to a DEX format. 25 - some classes need to be overridden, for example all the drawing code that is replaced by Java 2D 27 - some of the classes that need to be changed are final and/or we need access to their private 32 - modifies some of the classes directly using some bytecode manipulation, 34 - injects some new classes, 42 platform as new classes are added, changed or removed. See src/com/android/tools/layoutlib/create/C… 61 The goal of the analyzer is to create a graph of all the classes from the input JAR with their 64 To do that, the analyzer is created with a list of base classes to keep -- everything that derives 73 The analyzer is also given a list of classes to exclude. A fake implementation of these classes is 76 With this information, the analyzer parses the input zip to find all the classes. All classes [all …]
|
/aosp_15_r20/art/test/003-omnibus-opcodes/src/ |
H A D | Classes.java | 23 public class Classes { class 31 System.out.println("Classes.checkCast"); in checkCast() 33 Classes classes; in checkCast() local 36 classes = (Classes) thisRef; in checkCast() 37 Main.assertTrue(thisRef instanceof Classes); in checkCast() 38 classes = (Classes) moreRef; in checkCast() 39 Main.assertTrue(moreRef instanceof Classes); in checkCast() 51 Main.assertTrue(cce.getMessage().regionMatches(false, 0, "Classes", 0, 7)); in checkCast() 55 /* hopefully these classes cause a resolve */ in checkCast() 62 Main.assertTrue(cce.getMessage().regionMatches(false, 0, "Classes", 0, 7)); in checkCast() [all …]
|
/aosp_15_r20/external/libxml2/python/ |
H A D | generator.py | 735 # This part writes part of the Python front-end classes based on 736 # mapping rules between types and classes and also based on function 742 # The type automatically remapped to generated classes 1020 # with primary classes 1085 classes = open("libxml2class.py", "w") 1087 txt.write(" Generated Classes for libxml2-python\n\n") 1097 classes.write("#\n# Functions from module %s\n#\n\n" % file) 1100 classes.write("def %s(" % func) 1105 classes.write(", ") 1106 classes.write("%s" % arg[0]) [all …]
|
/aosp_15_r20/out/soong/raw-aosp_shiba/1f/ |
D | 1f8de22c55d8758fac5498f0e72344c5bf68aede | 99 …ut/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/javac/art-run… 100 …ut/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/javac/art-run… 127 …classes/art-run-test-912-classes/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_DIR__/out/lint-s… 130 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/li… 134 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/li… 138 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/li… 142 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/li… 146 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/li… 150 …to: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint/su… 154 …file: "out/soong/.intermediates/art/test/912-classes/art-run-test-912-classes/android_common/lint-… [all …]
|
/aosp_15_r20/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/ |
H A D | BaseTest.java | 65 "com.example.classes.AbstractEmptyClass"); 67 "com.example.classes.AbstractEmptyInterface"); 70 "com.example.classes.PublicAnnotation"); 71 static final TypeElement publicClass = initTypeElement("com.example.classes.PublicClass"); 72 static final TypeElement publicEnum = initTypeElement("com.example.classes.PublicEnum"); 74 "com.example.classes.PublicInterface"); 76 static final TypeElement simpleEnum = initTypeElement("com.example.classes.SimpleEnum"); 79 "com.example.classes.PublicClassWithNests"); 81 "com.example.classes.PublicClassWithNests.Nest1"); 83 "com.example.classes.PublicClassWithNests.Nest1.Nest2"); [all …]
|
/aosp_15_r20/out/soong/raw-aosp_shiba/d9/ |
D | d92de11b20ba6dd69e8649f480dd4b5bb876bb42 | 99 …s/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/android_common/javac/art-run… 100 …s/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/android_common/javac/art-run… 127 …classes/art-run-test-907-get-loaded-classes/android_common/lint-srcs.list.rsp __SBOX_SANDBOX_DIR__… 130 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 134 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 138 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 142 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 146 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 150 …to: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes/… 154 …ile: "out/soong/.intermediates/art/test/907-get-loaded-classes/art-run-test-907-get-loaded-classes… [all …]
|
/aosp_15_r20/art/test/ |
H A D | run_test_build.py | 96 disable_d8 = any((self.test_dir / n).exists() for n in ["classes", "src2", "src-art"]) 208 cp dex_normalize/classes.dex {output} 338 # Make a "dex" file given a directory of classes. This will be 356 (Path(tmp_dir) / "classes.dex").rename(dst_dex) 376 (tmp_dir / "classes.dex").rename(dst_dex) 391 if Path("classes.dex").exists(): 392 zip(Path(self.test_name + ".jar"), Path("classes.dex")) 395 if Path("classes.dm").exists(): 396 zip(Path(self.test_name + ".jar"), Path("classes.dm")) 414 make_java(Path("classes-tmp-all"), Path("src"), *map(Path, extra_srcs)) [all …]
|
/aosp_15_r20/external/kotlinx.serialization/docs/ |
H A D | serialization-guide.md | 10 Once the project is set up, we can start serializing some classes. 19 * <a name='serializable-classes'></a>[Serializable classes](basic-serialization.md#serializable-cla… 32 * <a name='generic-classes'></a>[Generic classes](basic-serialization.md#generic-classes) 36 **Chapter 2.** [Builtin Classes](builtin-classes.md) 38 <!--- TOC_REF builtin-classes.md --> 39 * <a name='primitives'></a>[Primitives](builtin-classes.md#primitives) 40 * <a name='numbers'></a>[Numbers](builtin-classes.md#numbers) 41 * <a name='long-numbers'></a>[Long numbers](builtin-classes.md#long-numbers) 42 …* <a name='long-numbers-as-strings'></a>[Long numbers as strings](builtin-classes.md#long-numbers-… 43 * <a name='enum-classes'></a>[Enum classes](builtin-classes.md#enum-classes) [all …]
|