/external/icu/icu4c/source/data/misc/ |
D | dayPeriods.txt | 170 from{"19:00"} 177 from{"6:00"} 190 from{"14:00"} 194 from{"18:00"} 198 from{"4:00"} 202 from{"11:00"} 209 from{ 218 from{"12:00"} 222 from{"18:00"} 226 from{"4:00"} [all …]
|
/external/icu/icu4c/source/data/curr/ |
D | supplementalData.txt | 13 from:intvector{ 22 from:intvector{ 29 from:intvector{ 40 from:intvector{ 51 from:intvector{ 64 from:intvector{ 73 from:intvector{ 80 from:intvector{ 93 from:intvector{ 102 from:intvector{ [all …]
|
/external/v8/test/mjsunit/tools/ |
D | profviz-test.default | 12 "set object 1 rect from 87.51699999999991, 7 to 87.60371656249991, 3 fc rgb \"#9944CC\"", 13 "set object 2 rect from 110.7114999999999, 7 to 110.7982165624999, 3 fc rgb \"#9944CC\"", 14 "set object 3 rect from 133.5129999999999, 7 to 133.59971656249988, 3 fc rgb \"#9944CC\"", 15 …"set object 4 rect from 61.49249999999995, 7 to 61.57921656249995, 5.020618556701031 fc rgb \"#994… 16 …"set object 5 rect from 101.40849999999992, 7 to 101.49521656249992, 5.103092783505154 fc rgb \"#9… 17 …"set object 6 rect from 57.242999999999974, 7 to 57.329716562499975, 6.766323024054983 fc rgb \"#9… 18 …"set object 7 rect from 58.751499999999965, 7 to 58.838216562499966, 6.766323024054983 fc rgb \"#9… 19 …"set object 8 rect from 60.72499999999996, 7 to 60.81171656249996, 6.766323024054983 fc rgb \"#994… 21 "set object 9 rect from 42.11000000000001, 12.83 to 42.28050000000001, 12.17 fc rgb \"#000000\"", 22 …"set object 10 rect from 42.298000000000016, 12.83 to 42.30000000000002, 12.17 fc rgb \"#000000\"", [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 23 1 year from now 24 2 years from now 25 3 years from now 26 5 years from now 27 10 years from now 28 11 years from now 29 12 years from now 30 20 years from now 31 21 years from now 32 22 years from now [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/testdata/ |
D | testdata_en.txt | 23 1 year from now 24 2 years from now 25 3 years from now 26 5 years from now 27 10 years from now 28 11 years from now 29 12 years from now 30 20 years from now 31 21 years from now 32 22 years from now [all …]
|
/external/selinux/libsemanage/ |
D | ChangeLog | 2 * semanage_migrate_store: Load libsepol.so.1 instead of libsepol.so, from Laurent Bigonville. 3 * Store homedir_template and users_extra in policy store, from Steve Lawrence 4 * Fix null pointer dereference in semanage_module_key_destroy, from Yuli Khodorkovskiy. 5 * Add semanage_module_extract() to extract a module as CIL or HLL, from Yuli Khodorkovskiy. 6 * semanage_migrate_store: add -r <root> option for migrating inside chroots, from Petr Lautrbach. 7 * Add file_contexts and seusers to the store, from Yuli Khodorkovskiy. 8 * Add policy binary and file_contexts.local to the store, from Yuli Khodorkovskiy. 10 from Petr Lautrbach. 11 * Do not copy contexts in semanage_migrate_store, from Jason Zaman. 12 * Fix logic in bunzip for uncompressed pp files, from Thomas Hurd. [all …]
|
/external/icu/icu4c/source/data/translit/ |
D | Fullwidth_Halfwidth.txt | 8 # Generated from CLDR 38 !↔'!'; # from FULLWIDTH EXCLAMATION MARK 39 "↔'"'; # from FULLWIDTH QUOTATION MARK 40 #↔'#'; # from FULLWIDTH NUMBER SIGN 41 $↔'$'; # from FULLWIDTH DOLLAR SIGN 42 %↔'%'; # from FULLWIDTH PERCENT SIGN 43 &↔'&'; # from FULLWIDTH AMPERSAND 44 '↔''; # from FULLWIDTH APOSTROPHE 45 (↔'('; # from FULLWIDTH LEFT PARENTHESIS 46 )↔')'; # from FULLWIDTH RIGHT PARENTHESIS [all …]
|
/external/selinux/policycoreutils/ |
D | ChangeLog | 2 * newrole: Add description of missing parameter -p in newrole man page, from Lukas Vrabec. 3 * secon: Add missing descriptions for --*-key params in secon man page, from Lukas Vrabec 4 * semanage: List reserve_port_t in semanage port -l, from Petr Lautrbach. 5 * chcat: Add a fallback in case os.getlogin() returns nothing, from Laurent Bigonville. 6 * semanage: fix 'semanage permissions -l' subcommand, from Petr Lautrbach. 7 * semanage: replace string.join() with str.join(), from Petr Lautrbach. 8 * Man page warning fixes, from Ville Skyttä. 9 * sandbox: Fix sandbox to propagate specified MCS/MLS Security Level, from Miroslav Grepl. 10 * semanage: Require at least one argument for 'semanage permissive -d', from Petr Lautrbach. 11 * sepolicy: Improve sepolicy command line interface, from Petr Lautrbach. [all …]
|
/external/v8/test/mjsunit/es6/ |
D | array-from.js | 7 assertEquals(1, Array.from.length); 25 Array.from.call(MyCollection, {length: 5}); 34 Array.from([1], non_strict); 35 Array.from([1], non_strict, void 0); 36 Array.from([1], non_strict, null); 37 Array.from([1], strict); 38 Array.from([1], strict, void 0); 39 Array.from([1], strict_null, null); 42 assertArrayLikeEquals(Array.from.call(thisArg, [], undefined), [], 44 assertArrayLikeEquals(Array.from.call(thisArg, NaN), [], constructor); [all …]
|
D | typedarray-from.js | 18 assertEquals(1, constructor.from.length); 21 assertThrows(function () {constructor.from.call(Array, [])}, TypeError); 37 constructor.from([1], non_strict); 38 constructor.from([1], non_strict, void 0); 39 constructor.from([1], non_strict, null); 40 constructor.from([1], strict); 41 constructor.from([1], strict, void 0); 42 constructor.from([1], strict_null, null); 45 assertThrows(function() {constructor.from.call({}, [])}, TypeError); 46 assertThrows(function() {constructor.from.call([], [])}, TypeError); [all …]
|
/external/apache-http/src/org/apache/http/message/ |
D | BasicTokenIterator.java | 173 protected int findNext(int from) in findNext() argument 176 if (from < 0) { in findNext() 182 from = 0; in findNext() 185 from = findTokenSeparator(from); in findNext() 188 int start = findTokenStart(from); in findNext() 235 protected int findTokenStart(int from) { in findTokenStart() argument 236 if (from < 0) { in findTokenStart() 238 ("Search position must not be negative: " + from); in findTokenStart() 245 while (!found && (from < to)) { in findTokenStart() 247 final char ch = this.currentHeader.charAt(from); in findTokenStart() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bvgraph.h | 44 bool addEdge(uptr from, uptr to) { in addEdge() argument 45 check(from, to); in addEdge() 46 return v[from].setBit(to); in addEdge() 50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], in addEdges() argument 53 t1.copyFrom(from); in addEdges() 69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } in hasEdge() argument 72 bool removeEdge(uptr from, uptr to) { in removeEdge() argument 73 return v[from].clearBit(to); in removeEdge() 79 for (uptr from = 0; from < size(); from++) { in removeEdgesTo() local 80 if (v[from].setDifference(to)) in removeEdgesTo() [all …]
|
/external/selinux/libsepol/ |
D | ChangeLog | 2 * Validate extended avrules and permissionxs in CIL, from Steve Lawrence. 3 * Add support in CIL for neverallowx, from Steve Lawrence. 4 * Fully expand neverallowxperm rules, from Richard Haines. 5 * Add support for unordered classes to CIL, from Yuli Khodorkovskiy. 6 * Add neverallow support for ioctl extended permissions, from Jeff Vander Stoep. 7 * Improve CIL block and macro call recursion detection, from Steve Lawrence 8 * Fix CIL uninitialized false positive in cil_binary, from Yuli Khodorkovskiy 9 * Provide error in CIL if classperms are empty, from Yuli Khodorkovskiy 10 * Add userattribute{set} functionality to CIL, from Yuli Khodorkovskiy 11 * fix CIL blockinherit copying segfault and add macro restrictions, from Steve Lawrence [all …]
|
/external/selinux/libselinux/ |
D | ChangeLog | 2 * Add man information about thread specific functions, from Dan Waslh. 3 * Don't wrap rpm_execcon with DISABLE_RPM with SWIG, from Petr Lautrbach. 4 * Correct line count for property and service context files, from Richard Haines. 5 * Man page warning fixes, from Ville Skyttä. 6 * label_file: fix memory leaks and uninitialized jump, from William Roberts. 7 * Replace selabel_digest hash function, from Richard Haines. 8 * Fix selabel_open(3) services if no digest requested, from Richard Haines. 9 * Add selabel_digest function, from Richard Haines. 10 * Fix parallel build with swig python, from Jason Zaman. 11 * Flush the class/perm string mapping cache on policy reload, from Stephen Smalley. [all …]
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | wchar_t_out.pass.cpp | 30 const std::basic_string<F::intern_type> from(L"some text"); in main() local 31 std::vector<char> to(from.size()+1); in main() 35 F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next, in main() 38 assert(from_next - from.data() == from.size()); in main() 39 assert(to_next - to.data() == from.size()); in main() 43 std::basic_string<F::intern_type> from(L"some text"); in main() local 44 from[4] = '\0'; in main() 45 std::vector<char> to(from.size()+1); in main() 49 F::result r = f.out(mbs, from.data(), from.data() + from.size(), from_next, in main() 52 assert(from_next - from.data() == from.size()); in main() [all …]
|
/external/selinux/sepolgen/ |
D | ChangeLog | 2 * Use key function in sort(), from Petr Lautrbach. 3 * Reset line numbers when parsing files, from Nicolas Iooss. 4 * Convert cmp functions to key functions, from Robert Kuska. 5 * Decode output from Popen in Python3, from Robert Kuska. 6 * Comment constraint rules in output, from Miroslav Grepl via Petr Lautrbach. 7 * Add support for python3, from Robert Kuska. 8 * Add device tree ocontext nodes to Xen policy, from Daniel De Graaf. 11 * Fix bugs found by hardened gcc flags, from Nicolas Iooss. 13 interface vectors, from Steve Lawrence 16 * Add back attributes flag to fix exception crash from Dan Walsh. [all …]
|
/external/selinux/checkpolicy/ |
D | ChangeLog | 2 * Add neverallow support for ioctl extended permissions, from Jeff Vander Stoep. 3 * fix double free on name-based type transitions, from Stephen Smalley. 4 * switch operations to extended perms, from Jeff Vander Stoep. 5 * policy_define.c: fix compiler warnings, from Nick Kralevich. 6 * Remove uses of -Wno-return-type, from Dan Albert. 7 * Fix -Wreturn-type issues, from Dan Albert. 8 * dispol: display operations as ranges, from Jeff Vander Stoep. 9 * dispol: Extend to display operations, from Stephen Smalley. 10 * Add support for ioctl command whitelisting, from Jeff Vander Stoep. 11 * Add option to write CIL policy, from James Carter [all …]
|
/external/jsilver/src/com/google/streamhtmlparser/impl/ |
D | ParserStateTable.java | 101 InternalState getNextState(InternalState from, int currentChar) { in getNextState() argument 103 if (from == null || currentChar < 0) in getNextState() 106 int id = from.getId(); in getNextState() 116 result = defaultStateTable[from.getId()]; in getNextState() 121 void setExpression(String expr, InternalState from, InternalState to) { in setExpression() argument 122 if ((expr == null) || (from == null) || (to == null)) { in setExpression() 128 setDefaultDestination(from, to); in setExpression() 135 setRange(from, expr.charAt(i), expr.charAt(i + 2), to); in setExpression() 138 setDestination(from, expr.charAt(i), to); in setExpression() 144 private void fill(InternalState from, InternalState to) { in fill() argument [all …]
|
/external/bison/m4/ |
D | gnulib-comp.m4 | 26 # to be invoked from configure.ac. 31 # This macro should be invoked from ./configure.ac, in the section 42 # Code from module alloca-opt: 43 # Code from module announce-gen: 44 # Code from module argmatch: 45 # Code from module assert: 46 # Code from module binary-io: 47 # Code from module bitrotate: 48 # Code from module c-ctype: 49 # Code from module c-strcase: [all …]
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | FluentIterableTest.java | 63 Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4)))); in testFrom() 68 FluentIterable<Integer> iterable = FluentIterable.from(asList(1)); in testFrom_alreadyFluentIterable() 69 assertSame(iterable, FluentIterable.from(iterable)); in testFrom_alreadyFluentIterable() 78 assertEquals(1, FluentIterable.from(asList("a")).size()); in testSize1Collection() 88 assertEquals(2, FluentIterable.from(iterable).size()); in testSize2NonCollection() 98 assertEquals(5, FluentIterable.from(collection).size()); in testSize_collectionDoesntIterate() 103 assertTrue(FluentIterable.from(set).contains(null)); in testContains_nullSetYes() 108 assertFalse(FluentIterable.from(set).contains(null)); in testContains_nullSetNo() 113 assertTrue(FluentIterable.from(iterable).contains(null)); in testContains_nullIterableYes() 118 assertFalse(FluentIterable.from(iterable).contains(null)); in testContains_nullIterableNo() [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | ctrl_iface_udp.c | 79 struct sockaddr_in6 *from, in wpa_supplicant_ctrl_iface_attach() argument 81 struct sockaddr_in *from, in wpa_supplicant_ctrl_iface_attach() 93 os_memcpy(&dst->addr, from, sizeof(*from)); in wpa_supplicant_ctrl_iface_attach() 100 inet_ntop(AF_INET6, &from->sin6_addr, addr, sizeof(*from)), in wpa_supplicant_ctrl_iface_attach() 101 ntohs(from->sin6_port)); in wpa_supplicant_ctrl_iface_attach() 104 inet_ntoa(from->sin_addr), ntohs(from->sin_port)); in wpa_supplicant_ctrl_iface_attach() 112 struct sockaddr_in6 *from, argument 114 struct sockaddr_in *from, 126 if (from->sin6_port == dst->addr.sin6_port && 127 !os_memcmp(&from->sin6_addr, &dst->addr.sin6_addr, [all …]
|
/external/webrtc/webrtc/p2p/base/ |
D | transportdescription.h | 99 TransportDescription(const TransportDescription& from) in TransportDescription() 100 : transport_options(from.transport_options), in TransportDescription() 101 ice_ufrag(from.ice_ufrag), in TransportDescription() 102 ice_pwd(from.ice_pwd), in TransportDescription() 103 ice_mode(from.ice_mode), in TransportDescription() 104 connection_role(from.connection_role), in TransportDescription() 105 identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())), in TransportDescription() 106 candidates(from.candidates) {} in TransportDescription() 108 TransportDescription& operator=(const TransportDescription& from) { 110 if (this == &from) [all …]
|
/external/mesa3d/src/mesa/math/ |
D | m_xform_tmp.h | 79 GLfloat *from = from_vec->start; in TAG() local 88 const GLfloat ox = from[0]; in TAG() 105 GLfloat *from = from_vec->start; in TAG() local 112 to[i][0] = from[0]; in TAG() 125 GLfloat *from = from_vec->start; in TAG() local 132 const GLfloat ox = from[0]; in TAG() 147 GLfloat *from = from_vec->start; in TAG() local 153 const GLfloat ox = from[0]; in TAG() 168 GLfloat *from = from_vec->start; in TAG() local 175 const GLfloat ox = from[0]; in TAG() [all …]
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_str_test.cc | 123 char *from = Ident((char*)malloc(from_size)); in TEST() local 125 strcpy(from, "hello"); in TEST() 126 strcpy(to, from); in TEST() 127 strcpy(to + to_size - from_size, from); in TEST() 129 EXPECT_DEATH(Ident(strcpy(from, "hello2")), RightOOBWriteMessage(0)); in TEST() 131 EXPECT_DEATH(Ident(strcpy(to - 1, from)), LeftOOBWriteMessage(1)); in TEST() 132 EXPECT_DEATH(Ident(strcpy(to, from - 1)), LeftOOBReadMessage(1)); in TEST() 133 EXPECT_DEATH(Ident(strcpy(to, from + from_size)), RightOOBReadMessage(0)); in TEST() 134 EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0)); in TEST() 136 from[from_size - 1] = '!'; in TEST() [all …]
|
/external/libgsm/src/ |
D | debug.c | 21 void gsm_debug_words P4( (name, from, to, ptr), 23 int from, 29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to ); 30 while (from <= to) { 31 fprintf(stderr, "%d ", ptr[ from ] ); 32 from++; 35 if (from < to) putc('\n', stderr); 41 void gsm_debug_longwords P4( (name, from, to, ptr), 43 int from, 49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to ); [all …]
|