/external/dtc/tests/ |
extra-terminating-null.c | 36 memcpy(checkbuf, TEST_STRING_1, len); 49 check_extranull(fdt, "extranull0", TEST_STRING_1, 1); 50 check_extranull(fdt, "extranull1,1", TEST_STRING_1, 2); 51 check_extranull(fdt, "extranull1,2", TEST_STRING_1, 2); 52 check_extranull(fdt, "extranull2,1", TEST_STRING_1, 3); 53 check_extranull(fdt, "extranull2,2", TEST_STRING_1, 3); 54 check_extranull(fdt, "extranull2,3", TEST_STRING_1, 3); 55 check_extranull(fdt, "extranull2,4", TEST_STRING_1, 3);
|
find_property.c | 38 check_property(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, TEST_STRING_1);
|
getprop.c | 39 check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, TEST_STRING_1);
|
nop_property.c | 56 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, 57 TEST_STRING_1);
|
setprop_inplace.c | 56 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, 57 TEST_STRING_1); 70 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, 71 TEST_STRING_1);
|
testdata.h | 20 #define TEST_STRING_1 "hello world"
|
del_property.c | 61 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, 62 TEST_STRING_1);
|
setprop.c | 65 strp = check_getprop(fdt, 0, "prop-str", strlen(TEST_STRING_1)+1, 66 TEST_STRING_1);
|
appendprop1.c | 63 CHECK(fdt_appendprop_string(fdt, 0, "prop-str", TEST_STRING_1));
|
node_offset_by_prop_value.c | 101 check_search_str(fdt, "prop-str", TEST_STRING_1, 0, -FDT_ERR_NOTFOUND);
|
rw_tree1.c | 67 CHECK(fdt_setprop_string(fdt, 0, "prop-str", TEST_STRING_1));
|
sw_tree1.c | 127 CHECK(fdt_property_string(fdt, "prop-str", TEST_STRING_1));
|
trees.S | 94 PROP_STR(test_tree1, prop_str, TEST_STRING_1)
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
MacAuthenticatedInputStreamTest.java | 34 private static final byte[] TEST_STRING_1 = "Hello, World!".getBytes(); 66 mTestStream1 = new ByteArrayInputStream(TEST_STRING_1); 75 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is))); 86 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is))); 97 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is))); 112 if (numRead > TEST_STRING_1.length) { 116 assertEquals(TEST_STRING_1.length, numRead);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_pty.py | 14 TEST_STRING_1 = "I wish to buy a fish license.\n"
97 os.write(slave_fd, TEST_STRING_1)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_pty.py | 16 TEST_STRING_1 = "I wish to buy a fish license.\n" 99 os.write(slave_fd, TEST_STRING_1)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_pty.py | 16 TEST_STRING_1 = "I wish to buy a fish license.\n" 99 os.write(slave_fd, TEST_STRING_1)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pty.py | 16 TEST_STRING_1 = "I wish to buy a fish license.\n" 99 os.write(slave_fd, TEST_STRING_1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pty.py | 16 TEST_STRING_1 = "I wish to buy a fish license.\n" 99 os.write(slave_fd, TEST_STRING_1)
|