| /external/rust/beto-rust/nearby/presence/np_adv/resources/test/ |
| D | mic-extended-salt-encrypted-test-vectors.json | 7 "contents": "F111383178463B", string 11 "contents": "77A7CA333048119F23A460ABA89494CF7075CB3CC00E", string 15 "contents": "E7B0F2", string 19 "contents": "7B25D72AF20B8B53495E79E004108C7651C5F9CF07BDCD784874", string 23 "contents": "938EF51180242B59D35CAD0DA09ED9FAA4D809BC", string 61 "contents": "F83D3AAF1566156FAF5128917CAD10CE348BCF", string 65 "contents": "FB04C7C54945BE1F575F", string 81 "contents": "7A306B5925D15D6B43B7", string 85 "contents": "5912AE51A1D62035C323468AF0198079E1A7110FDBA42D", string 89 "contents": "091D6CE6C774BDF76F52CF04688503B8496460F3E90D0880", string [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/distrib/ |
| D | check_redundant_namespace_qualifiers.py | 25 def find_closing_mustache(contents, initial_depth): argument 28 start_len = len(contents) 29 while contents: 31 if contents[0] == '"': 32 contents = contents[1:] 33 while contents[0] != '"': 34 if contents.startswith('\\\\'): 35 contents = contents[2:] 36 elif contents.startswith('\\"'): 37 contents = contents[2:] [all …]
|
| /external/grpc-grpc/tools/distrib/ |
| D | check_redundant_namespace_qualifiers.py | 25 def find_closing_mustache(contents, initial_depth): argument 28 start_len = len(contents) 29 while contents: 31 if contents[0] == '"': 32 contents = contents[1:] 33 while contents[0] != '"': 34 if contents.startswith("\\\\"): 35 contents = contents[2:] 36 elif contents.startswith('\\"'): 37 contents = contents[2:] [all …]
|
| /external/harfbuzz_ng/src/ |
| D | hb-wasm-api-buffer.hh | 39 ptr_d(buffer_contents_t, contents), in HB_WASM_API() 42 HB_PTR_PARAM (buffer_contents_t, contents); in HB_WASM_API() 43 if (unlikely (!contents)) in HB_WASM_API() 46 if (size <= contents->length) in HB_WASM_API() 53 glyph_info_t *info = HB_ARRAY_APP2NATIVE (glyph_info_t, contents->info, contents->length); in HB_WASM_API() 54 glyph_position_t *pos = HB_ARRAY_APP2NATIVE (glyph_position_t, contents->pos, contents->length); in HB_WASM_API() 64 unsigned old_bytes = contents->length * sizeof (glyph_info_t); in HB_WASM_API() 68 module_free (contents->info); in HB_WASM_API() 69 contents->info = new_inforef; in HB_WASM_API() 74 module_free (contents->pos); in HB_WASM_API() [all …]
|
| /external/angle/build/ |
| D | xcode_binaries.yaml | 23 - dir: Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ 24 - dir: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/bison 25 - dir: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/metal/macos 26 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/air-lld 27 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bison 28 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/gm4 29 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/gperf 30 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool 31 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld 32 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool [all …]
|
| /external/cronet/build/ |
| D | xcode_binaries.yaml | 23 - dir: Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ 24 - dir: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/bison 25 - dir: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/metal/macos 26 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/air-lld 27 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bison 28 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/gm4 29 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/gperf 30 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool 31 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld 32 - file: Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool [all …]
|
| /external/guava/android/guava-tests/test/com/google/common/collect/ |
| D | BenchmarkHelpers.java | 44 <E extends Comparable<E>> Collection<E> create(Collection<E> contents); in create() argument 50 <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> contents); in create() argument 56 <E> Interner<E> create(Collection<E> contents); in create() argument 64 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 65 return new HashSet<E>(contents); in create() 70 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 71 return new LinkedHashSet<E>(contents); in create() 76 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 77 return new TreeSet<E>(contents); in create() 82 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument [all …]
|
| D | FilteredCollectionsTestUtil.java | 74 abstract C createUnfiltered(Iterable<Integer> contents); in createUnfiltered() argument 79 for (List<Integer> contents : SAMPLE_INPUTS) { in testIterationOrderPreserved() 80 C unfiltered = createUnfiltered(contents); in testIterationOrderPreserved() 99 for (List<Integer> contents : SAMPLE_INPUTS) { in testReadsThroughAdd() 100 C unfiltered = createUnfiltered(contents); in testReadsThroughAdd() 104 List<Integer> target = Lists.newArrayList(contents); in testReadsThroughAdd() 113 for (List<Integer> contents : SAMPLE_INPUTS) { in testAdd() 115 boolean expectedResult = createUnfiltered(contents).add(toAdd); in testAdd() 117 C filtered = filter(createUnfiltered(contents), EVEN); in testAdd() 129 for (List<Integer> contents : SAMPLE_INPUTS) { in testRemove() [all …]
|
| /external/guava/guava-tests/test/com/google/common/collect/ |
| D | BenchmarkHelpers.java | 44 <E extends Comparable<E>> Collection<E> create(Collection<E> contents); in create() argument 50 <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> contents); in create() argument 56 <E> Interner<E> create(Collection<E> contents); in create() argument 64 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 65 return new HashSet<E>(contents); in create() 70 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 71 return new LinkedHashSet<E>(contents); in create() 76 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument 77 return new TreeSet<E>(contents); in create() 82 public <E extends Comparable<E>> Set<E> create(Collection<E> contents) { in create() argument [all …]
|
| D | FilteredCollectionsTestUtil.java | 75 abstract C createUnfiltered(Iterable<Integer> contents); in createUnfiltered() argument 80 for (List<Integer> contents : SAMPLE_INPUTS) { in testIterationOrderPreserved() 81 C unfiltered = createUnfiltered(contents); in testIterationOrderPreserved() 96 for (List<Integer> contents : SAMPLE_INPUTS) { in testForEach() 97 C unfiltered = createUnfiltered(contents); in testForEach() 114 for (List<Integer> contents : SAMPLE_INPUTS) { in testReadsThroughAdd() 115 C unfiltered = createUnfiltered(contents); in testReadsThroughAdd() 119 List<Integer> target = Lists.newArrayList(contents); in testReadsThroughAdd() 128 for (List<Integer> contents : SAMPLE_INPUTS) { in testAdd() 130 boolean expectedResult = createUnfiltered(contents).add(toAdd); in testAdd() [all …]
|
| /external/google-breakpad/src/processor/ |
| D | synth_minidump_unittest.cc | 66 string contents; in TEST() local 67 ASSERT_TRUE(section.GetContents(&contents)); in TEST() 68 EXPECT_EQ(string("\x78\x56\x34\x12", 4), contents); in TEST() 78 string contents; in TEST() local 79 ASSERT_TRUE(section1.GetContents(&contents)); in TEST() 81 EXPECT_EQ(expected, contents); in TEST() 88 stream.Append("stream contents"); in TEST() 89 section.Append("section contents"); in TEST() 92 string contents; in TEST() local 93 ASSERT_TRUE(section.GetContents(&contents)); in TEST() [all …]
|
| /external/google-breakpad/src/common/ |
| D | test_assembler_unittest.cc | 737 string contents; member in SectionFixture 770 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F() 771 ASSERT_EQ(sizeof(data), contents.size()); in TEST_F() 772 EXPECT_TRUE(0 == memcmp(contents.data(), (const char*) data, sizeof(data))); in TEST_F() 778 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F() 779 ASSERT_EQ(2 * sizeof(data), contents.size()); in TEST_F() 780 ASSERT_TRUE(0 == memcmp(contents.data(), (const char*) data, sizeof(data))); in TEST_F() 781 ASSERT_TRUE(0 == memcmp(contents.data() + sizeof(data), in TEST_F() 790 ASSERT_TRUE(section.GetContents(&contents)); in TEST_F() 791 ASSERT_STREQ(contents.c_str(), "howdy there"); in TEST_F() [all …]
|
| /external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 33 private static final CONTENTS = "abc 123 %^& xxx" 41 entry = new FileEntry(PATH, CONTENTS) 42 verifyContents(CONTENTS) 46 * Test setting the contents of a FileEntry by setting a String 49 entry.setContents(CONTENTS) 50 verifyContents(CONTENTS) 54 * Test setting the contents of a FileEntry by setting a byte[] 57 byte[] contents = CONTENTS.getBytes() 58 entry.setContents(contents) 60 contents[1] = (byte)'#' [all …]
|
| /external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 31 private static final CONTENTS = "abc 123 %^& xxx" 36 entry = new FileEntry(PATH, CONTENTS) 37 verifyContents(CONTENTS) 41 entry.setContents(CONTENTS) 42 verifyContents(CONTENTS) 46 byte[] contents = CONTENTS.getBytes() 47 entry.setContents(contents) 49 contents[1] = (byte) '#' 50 verifyContents(CONTENTS) 54 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 32 private static final CONTENTS = "abc 123 %^& xxx" 37 entry = new FileEntry(PATH, CONTENTS) 38 verifyContents(CONTENTS) 42 entry.setContents(CONTENTS) 43 verifyContents(CONTENTS) 47 byte[] contents = CONTENTS.getBytes() 48 entry.setContents(contents) 50 contents[1] = (byte) '#' 51 verifyContents(CONTENTS) 55 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 31 private static final CONTENTS = "abc 123 %^& xxx" 36 entry = new FileEntry(PATH, CONTENTS) 37 verifyContents(CONTENTS) 41 entry.setContents(CONTENTS) 42 verifyContents(CONTENTS) 46 byte[] contents = CONTENTS.getBytes() 47 entry.setContents(contents) 49 contents[1] = (byte) '#' 50 verifyContents(CONTENTS) 54 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 31 private static final CONTENTS = "abc 123 %^& xxx" 36 entry = new FileEntry(PATH, CONTENTS) 37 verifyContents(CONTENTS) 41 entry.setContents(CONTENTS) 42 verifyContents(CONTENTS) 46 byte[] contents = CONTENTS.getBytes() 47 entry.setContents(contents) 49 contents[1] = (byte) '#' 50 verifyContents(CONTENTS) 54 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 32 private static final CONTENTS = "abc 123 %^& xxx" 37 entry = new FileEntry(PATH, CONTENTS) 38 verifyContents(CONTENTS) 42 entry.setContents(CONTENTS) 43 verifyContents(CONTENTS) 47 byte[] contents = CONTENTS.getBytes() 48 entry.setContents(contents) 50 contents[1] = (byte) '#' 51 verifyContents(CONTENTS) 55 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 32 private static final CONTENTS = "abc 123 %^& xxx" 37 entry = new FileEntry(PATH, CONTENTS) 38 verifyContents(CONTENTS) 42 entry.setContents(CONTENTS) 43 verifyContents(CONTENTS) 47 byte[] contents = CONTENTS.getBytes() 48 entry.setContents(contents) 50 contents[1] = (byte) '#' 51 verifyContents(CONTENTS) 55 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 31 private static final CONTENTS = "abc 123 %^& xxx" 36 entry = new FileEntry(PATH, CONTENTS) 37 verifyContents(CONTENTS) 41 entry.setContents(CONTENTS) 42 verifyContents(CONTENTS) 46 byte[] contents = CONTENTS.getBytes() 47 entry.setContents(contents) 49 contents[1] = (byte) '#' 50 verifyContents(CONTENTS) 54 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntryTest.groovy | 31 private static final CONTENTS = "abc 123 %^& xxx" 36 entry = new FileEntry(PATH, CONTENTS) 37 verifyContents(CONTENTS) 41 entry.setContents(CONTENTS) 42 verifyContents(CONTENTS) 46 byte[] contents = CONTENTS.getBytes() 47 entry.setContents(contents) 49 contents[1] = (byte) '#' 50 verifyContents(CONTENTS) 54 byte[] contents = [65, -99, 91, -115] as byte[] [all …]
|
| /external/angle/build/util/ |
| D | version_test.py | 107 contents = output['contents'] 109 self.assertRegex(contents, r'\bchrome_version_code = "\d+"\s') 110 self.assertRegex(contents, r'\bmonochrome_version_code = "\d+"\s') 111 self.assertRegex(contents, r'\btrichrome_version_code = "\d+"\s') 112 self.assertRegex(contents, r'\bwebview_stable_version_code = "\d+"\s') 113 self.assertRegex(contents, r'\bwebview_beta_version_code = "\d+"\s') 114 self.assertRegex(contents, r'\bwebview_dev_version_code = "\d+"\s') 128 contents = output['contents'] 130 self.assertRegex(contents, r'\bmonochrome_64_32_version_code = "\d+"\s') 131 self.assertRegex(contents, r'\bmonochrome_64_version_code = "\d+"\s') [all …]
|
| /external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/ |
| D | FileEntry.groovy | 53 * Construct a new instance with the specified path and file contents 55 * @param contents - the contents of the file, as a String 57 FileEntry(String path, String contents) { 59 setContents(contents) 79 * Set the contents of the file represented by this entry 80 * @param contents - the String whose bytes are used as the contents 82 void setContents(String contents) { 83 assert contents != null 84 setContentsInternal(contents.getBytes()) 88 * Set the contents of the file represented by this entry [all …]
|
| /external/clang/unittests/libclang/ |
| D | LibclangTest.cpp | 42 const char *Contents; member 45 TestVFO(const char *Contents) : Contents(Contents) { in TestVFO() 60 if (Contents) { in ~TestVFO() 65 EXPECT_STREQ(Contents, BufStr.c_str()); in ~TestVFO() 74 const char *contents = in TEST() local 81 " 'contents': [\n" in TEST() 85 " 'external-contents': \"/real/foo.h\"\n" in TEST() 91 TestVFO T(contents); in TEST() 96 const char *contents = in TEST() local 103 " 'contents': [\n" in TEST() [all …]
|
| /external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/ |
| D | FileEntry.java | 53 * Construct a new instance with the specified path and file contents 56 * @param contents - the contents of the file, as a String 58 public FileEntry(String path, String contents) { in FileEntry() argument 60 setContents(contents); in FileEntry() 82 * Set the contents of the file represented by this entry 84 * @param contents - the String whose bytes are used as the contents 86 public void setContents(String contents) { in setContents() argument 87 byte[] newBytes = (contents != null) ? contents.getBytes() : EMPTY; in setContents() 92 * Set the contents of the file represented by this entry 94 * @param contents - the byte[] used as the contents [all …]
|