Home
last modified time | relevance | path

Searched defs:suffix (Results 1 – 25 of 3199) sorted by relevance

12345678910>>...128

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.ends_with/
H A Dranges.ends_with.pass.cpp71 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 3))); in test_iterators() local
86 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 3))); in test_iterators() local
101 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 1))); in test_iterators() local
116 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 1))); in test_iterators() local
131 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 6))); in test_iterators() local
146 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 8))); in test_iterators() local
161 auto suffix = std::ranges::subrange(Iter2(p.data()), Sent2(Iter2(p.data()))); in test_iterators() local
176 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 8))); in test_iterators() local
191 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 2))); in test_iterators() local
206 auto suffix = std::ranges::subrange(Iter2(p), Sent2(Iter2(p + 4))); in test_iterators() local
[all …]
/aosp_15_r20/external/vixl/tools/test_generator/
H A Ddata_types.py233 def PrintInput(suffix = ""): argument
249 def InstantiateResult(suffix = ""): argument
257 def InstantiateInput(suffix = ""): argument
265 def InstantiateReference(suffix = ""): argument
317 def PrintInput(self, suffix = ""): argument
326 def InstantiateResult(self, suffix = ""): argument
330 def InstantiateInput(self, suffix = ""): argument
334 def InstantiateReference(self, suffix = ""): argument
376 def PrintInput(self, suffix = ""): argument
566 def PrintInput(self, suffix = ""): argument
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/StringJoiner/
H A DStringJoinerTest.java286 private void testCombos(String infix, String prefix, String suffix) { in testCombos()
288 assertEquals(sj.toString(), prefix + suffix); in testCombos() local
297 assertEquals(sj.toString(), prefix + suffix); in testCombos() local
300 assertEquals(sj.toString(), prefix + infix + suffix); in testCombos() local
302 assertEquals(sj.toString(), prefix + infix + infix + "1" + suffix); in testCombos() local
305 assertEquals(sj.toString(), prefix + infix + infix + "1" + infix + suffix); in testCombos() local
309 assertEquals(sj.toString(), prefix + "1" + suffix); in testCombos() local
311 assertEquals(sj.toString(), prefix + "1" + infix + "2" + suffix); in testCombos() local
313 assertEquals(sj.toString(), prefix + "1" + infix + "2" + infix + suffix); in testCombos() local
315 assertEquals(sj.toString(), prefix + "1" + infix + "2" + infix + infix + "3" + suffix); in testCombos() local
/aosp_15_r20/external/libaom/aom_dsp/
H A Dfft_common.h118 #define GEN_FFT_2(ret, suffix, T, T_VEC, load, store) \ argument
126 #define GEN_FFT_4(ret, suffix, T, T_VEC, load, store, constant, add, sub) \ argument
143 #define GEN_FFT_8(ret, suffix, T, T_VEC, load, store, constant, add, sub, mul) \ argument
178 #define GEN_FFT_16(ret, suffix, T, T_VEC, load, store, constant, add, sub, \ argument
270 #define GEN_FFT_32(ret, suffix, T, T_VEC, load, store, constant, add, sub, \ argument
514 #define GEN_IFFT_2(ret, suffix, T, T_VEC, load, store) \ argument
522 #define GEN_IFFT_4(ret, suffix, T, T_VEC, load, store, constant, add, sub) \ argument
539 #define GEN_IFFT_8(ret, suffix, T, T_VEC, load, store, constant, add, sub, \ argument
583 #define GEN_IFFT_16(ret, suffix, T, T_VEC, load, store, constant, add, sub, \ argument
698 #define GEN_IFFT_32(ret, suffix, T, T_VEC, load, store, constant, add, sub, \ argument
/aosp_15_r20/external/vixl/src/aarch64/
H A Ddisasm-aarch64.cc1438 const char *suffix = ", ['Xns'ILSi]!"; in VisitLoadStorePreIndex() local
1454 const char *suffix = ", ['Xns]'ILSi"; in VisitLoadStorePostIndex() local
1470 const char *suffix = ", ['Xns'ILU]"; in VisitLoadStoreUnsignedOffset() local
1507 const char *suffix = ", ['Xns, 'Offsetreg]"; in VisitLoadStoreRegisterOffset() local
1525 const char *suffix = ", ['Xns'ILS]"; in VisitLoadStoreUnscaledOffset() local
1565 const char *suffix = ", 'ILLiteral 'LValue"; in VisitLoadLiteral() local
1724 const char *suffix = ", ['Xns]"; in VisitLoadStoreExclusive() local
1756 const char *suffix = ""; in VisitLoadStorePAC() local
1769 const char *suffix = ", ['Xns]"; in VisitAtomicMemory() local
1856 const char *suffix = ", 'IFP"; in VisitFPImmediate() local
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-1.0.109/src/
H A Dlit.rs81 suffix: Box<str>, field
94 suffix: Box<str>, field
109 suffix: Box<str>, field
241 pub fn suffix(&self) -> &str { in suffix() method
276 pub fn suffix(&self) -> &str { in suffix() method
311 pub fn suffix(&self) -> &str { in suffix() method
346 pub fn suffix(&self) -> &str { in suffix() method
413 pub fn suffix(&self) -> &str { in suffix() method
489 pub fn suffix(&self) -> &str { in suffix() method
1023 pub fn suffix(&self) -> &str { in suffix() method
[all …]
/aosp_15_r20/libcore/ojluni/src/test/java/util/HexFormat/
H A DHexFormatTest.java255 public void testToBytesThrowing(String value, String sep, String prefix, String suffix) { in testToBytesThrowing()
339 public void testFormatter(String delimiter, String prefix, String suffix, in testFormatter()
387 public void testParseHexStringRange(String delimiter, String prefix, String suffix, in testParseHexStringRange()
408 public void testParseHexEmptyString(String delimiter, String prefix, String suffix, in testParseHexEmptyString()
485 public void testFormatHexCharArrayIndexed(String delimiter, String prefix, String suffix, in testFormatHexCharArrayIndexed()
509 public void testFormatterToString(String delimiter, String prefix, String suffix, in testFormatterToString()
520 public void testFormatterParameterMethods(String delimiter, String prefix, String suffix, in testFormatterParameterMethods()
525 assertEquals(hex.suffix(), suffix); in testFormatterParameterMethods() local
530 public void testFormatterTestEquals(String delimiter, String prefix, String suffix, in testFormatterTestEquals()
541 assertEquals(actual.suffix(), suffix, "suffix"); in testFormatterTestEquals() local
[all …]
/aosp_15_r20/external/libffi/
H A Dgenerate-darwin-source-and-headers.py20 suffix = "\n\n#endif" variable in simulator_platform
33 suffix = "\n\n#endif" variable in simulator64_platform
46 suffix = "\n\n#endif" variable in device_platform
59 suffix = "\n\n#endif" variable in device64_platform
74 suffix = "\n\n#endif" variable in desktop32_platform
85 suffix = "\n\n#endif" variable in desktop64_platform
98 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): argument
126 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix argument
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/libffi/
Dgenerate-darwin-source-and-headers.py20 suffix = "\n\n#endif" variable in simulator_platform
33 suffix = "\n\n#endif" variable in simulator64_platform
46 suffix = "\n\n#endif" variable in device_platform
59 suffix = "\n\n#endif" variable in device64_platform
74 suffix = "\n\n#endif" variable in desktop32_platform
85 suffix = "\n\n#endif" variable in desktop64_platform
100 def move_file(src_dir, dst_dir, filename, file_suffix=None, prefix='', suffix=''): argument
125 def copy_files(src_dir, dst_dir, pattern=None, filelist=None, file_suffix=None, prefix=None, suffix argument
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/lib/cmake/llvm/
DLLVMDistributionSupport.cmake128 set(suffix "Exports") # legacy variable
130 set(suffix "Targets") variable
159 set(suffix "Exports.cmake") # legacy variable
161 set(suffix "Targets.cmake") variable
189 set(suffix "Exports") # legacy variable
192 set(suffix "Targets") variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/lib/cmake/llvm/
DLLVMDistributionSupport.cmake128 set(suffix "Exports") # legacy variable
130 set(suffix "Targets") variable
159 set(suffix "Exports.cmake") # legacy variable
161 set(suffix "Targets.cmake") variable
189 set(suffix "Exports") # legacy variable
192 set(suffix "Targets") variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/lib/cmake/llvm/
DLLVMDistributionSupport.cmake128 set(suffix "Exports") # legacy variable
130 set(suffix "Targets") variable
159 set(suffix "Exports.cmake") # legacy variable
161 set(suffix "Targets.cmake") variable
189 set(suffix "Exports") # legacy variable
192 set(suffix "Targets") variable
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/lib/cmake/llvm/
DLLVMDistributionSupport.cmake128 set(suffix "Exports") # legacy variable
130 set(suffix "Targets") variable
159 set(suffix "Exports.cmake") # legacy variable
161 set(suffix "Targets.cmake") variable
189 set(suffix "Exports") # legacy variable
192 set(suffix "Targets") variable
/aosp_15_r20/external/rust/android-crates-io/crates/syn/src/
Dlit.rs82 suffix: Box<str>, field
95 suffix: Box<str>, field
110 suffix: Box<str>, field
234 let suffix = self.suffix(); in parse_with() localVariable
253 pub fn suffix(&self) -> &str { in suffix() method
288 pub fn suffix(&self) -> &str { in suffix() method
323 pub fn suffix(&self) -> &str { in suffix() method
358 pub fn suffix(&self) -> &str { in suffix() method
421 pub fn suffix(&self) -> &str { in suffix() method
493 pub fn suffix(&self) -> &str { in suffix() method
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-2.0.55/src/
H A Dlit.rs82 suffix: Box<str>, field
95 suffix: Box<str>, field
110 suffix: Box<str>, field
234 let suffix = self.suffix(); in parse_with() localVariable
253 pub fn suffix(&self) -> &str { in suffix() method
288 pub fn suffix(&self) -> &str { in suffix() method
323 pub fn suffix(&self) -> &str { in suffix() method
358 pub fn suffix(&self) -> &str { in suffix() method
421 pub fn suffix(&self) -> &str { in suffix() method
493 pub fn suffix(&self) -> &str { in suffix() method
[all …]
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/output/
H A DDeferredFileOutputStream.java70 private String suffix; field in DeferredFileOutputStream.Builder
157 public Builder setSuffix(final String suffix) { in setSuffix()
223 private final String suffix; field in DeferredFileOutputStream
259 …m(final int threshold, final File outputFile, final String prefix, final String suffix, final File… in DeferredFileOutputStream()
296 …l int threshold, final int initialBufferSize, final String prefix, final String suffix, final File… in DeferredFileOutputStream()
311 …m(final int threshold, final Path outputFile, final String prefix, final String suffix, final Path… in DeferredFileOutputStream()
334 …public DeferredFileOutputStream(final int threshold, final String prefix, final String suffix, fin… in DeferredFileOutputStream()
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dllvm_loop.cc34 ForLoop::ForLoop(absl::string_view prefix, absl::string_view suffix, in ForLoop()
178 std::unique_ptr<ForLoop> ForLoopNest::AddLoop(absl::string_view suffix, in AddLoop()
188 absl::string_view suffix, llvm::Value* start_index, llvm::Value* end_index, in AddLoop()
214 absl::string_view suffix, in AddLoop()
225 absl::string_view suffix, in AddLoop()
236 absl::string_view suffix) { in AddLoopsForShape()
245 absl::string_view suffix) { in AddLoopsForShapeOnDimensions()
/aosp_15_r20/frameworks/libs/systemui/monet/tests/com/android/systemui/monet/
DColorSchemeTest.kt175 val suffix = if (isDark) "_dark" else "_light" in generateDefaultValues() constant
193 val suffix = if (isDark) "_dark" else "_light" in generateDefaultValues() constant
235 arrayOf("_light", "_dark").forEach { suffix -> in generateSymbols() method
263 val suffix = if (isDark) "_dark" else "_light" in generateDynamicColors() constant
270 val suffix = if (isDark) "_dark" else "_light" in generateDynamicColors() constant
298 arrayOf("_light", "_dark").forEach { suffix -> in generatePublic() method
/aosp_15_r20/external/mesa3d/src/util/tests/format/
H A Du_format_test.c60 const char *suffix) in print_packed()
79 const char *suffix) in print_unpacked_rgba_doubl()
101 const char *suffix) in print_unpacked_rgba_float()
123 const char *suffix) in print_unpacked_rgba_8unorm()
144 const char *suffix) in print_unpacked_z_float()
166 const char *suffix) in print_unpacked_z_32unorm()
187 const char *suffix) in print_unpacked_s_8uint()
742 const char *suffix) in test_one_func()
767 const char *suffix) in test_format_metadata()
/aosp_15_r20/libcore/luni/src/test/java/libcore/sun/security/x509/
H A DUtils.java37 String suffix) { in test_toString_bitArrayBasedClass()
45 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) { in testWithEachSinglePart()
61 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) { in testWithAllParts()
74 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) { in testWithNoParts()
83 String[] parts, Function<byte[], Object> objectCreator, String prefix, String suffix) { in testWithEveryOtherPart()
/aosp_15_r20/external/angle/src/compiler/translator/
H A Dbuiltin_variables.json719 "suffix": "APPLE" string
821 "suffix":"300", string
882 "suffix":"NV", string
1043 "suffix":"VS", string
1058 "suffix":"300", string
1134 "suffix": "APPLE" string
1222 "suffix":"GS", string
1233 "suffix":"GS", string
1269 "suffix":"OutBlock", string
1285 "suffix":"GS", string
[all …]
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/
Dparse.go82 type suffix struct { struct
83 remains string
84 sep string
85 num int
/aosp_15_r20/external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/span/
H A Dparse.go82 type suffix struct { struct
83 remains string
84 sep string
85 num int
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
H A Dparse.go82 type suffix struct { struct
83 remains string
84 sep string
85 num int
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/text/
H A DStrSubstitutor.java224 …ace(final Object source, final Map<String, V> valueMap, final String prefix, final String suffix) { in replace()
289 …ublic <V> StrSubstitutor(final Map<String, V> valueMap, final String prefix, final String suffix) { in StrSubstitutor()
303 … public <V> StrSubstitutor(final Map<String, V> valueMap, final String prefix, final String suffix, in StrSubstitutor()
320 … public <V> StrSubstitutor(final Map<String, V> valueMap, final String prefix, final String suffix, in StrSubstitutor()
343 …ublic StrSubstitutor(final StrLookup<?> variableResolver, final String prefix, final String suffix, in StrSubstitutor()
363 …ublic StrSubstitutor(final StrLookup<?> variableResolver, final String prefix, final String suffix, in StrSubstitutor()
1079 public StrSubstitutor setVariableSuffix(final char suffix) { in setVariableSuffix()
1094 public StrSubstitutor setVariableSuffix(final String suffix) { in setVariableSuffix()

12345678910>>...128