Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 6504) sorted by relevance

12345678910>>...261

/external/icu/icu4c/source/data/curr/
DsupplementalData.txt13 from:intvector{
22 from:intvector{
31 from:intvector{
38 from:intvector{
49 from:intvector{
60 from:intvector{
73 from:intvector{
82 from:intvector{
89 from:intvector{
102 from:intvector{
[all …]
/external/chromium_org/third_party/icu/source/data/curr/
DsupplementalData.txt11 * Map from ISO 3166 country codes to ISO 4217 currency codes
18 from:intvector{ /** 1999-01-01 */
25 from:intvector{ /** 1873-01-01 */
36 from:intvector{ /** 1960-01-01 */
47 from:intvector{ /** 1936-01-01 */
60 from:intvector{ /** 1973-05-19 */
69 from:intvector{ /** 2002-10-07 */
76 from:intvector{ /** 1927-03-14 */
89 from:intvector{ /** 1965-10-06 */
98 from:intvector{ /** 1965-10-06 */
[all …]
/external/chromium_org/v8/test/mjsunit/tools/
Dprofviz-test.default12 "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/icu4c/source/data/misc/
DdayPeriods.txt34 from{"0:00"}
38 from{"12:00"}
44 from{"15:00"}
48 from{"3:00"}
52 from{"10:00"}
56 from{"5:00"}
60 from{"18:00"}
66 from{"12:00"}
70 from{"17:00"}
74 from{"3:00"}
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
DAnimationUtilities.h38 inline int blend(int from, int to, double progress) in blend() argument
40 return lround(from + (to - from) * progress); in blend()
45 inline T blend(T from, T to, double progress) in blend() argument
48 …return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress)… in blend()
51 inline double blend(double from, double to, double progress) in blend() argument
53 return from + (to - from) * progress; in blend()
56 inline float blend(float from, float to, double progress) in blend() argument
58 return static_cast<float>(from + (to - from) * progress); in blend()
61 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) in blend() argument
63 return from + (to - from) * progress; in blend()
[all …]
/external/apache-http/src/org/apache/http/message/
DBasicTokenIterator.java168 protected int findNext(int from) in findNext() argument
171 if (from < 0) { in findNext()
177 from = 0; in findNext()
180 from = findTokenSeparator(from); in findNext()
183 int start = findTokenStart(from); in findNext()
230 protected int findTokenStart(int from) { in findTokenStart() argument
231 if (from < 0) { in findTokenStart()
233 ("Search position must not be negative: " + from); in findTokenStart()
240 while (!found && (from < to)) { in findTokenStart()
242 final char ch = this.currentHeader.charAt(from); in findTokenStart()
[all …]
/external/icu/icu4c/source/data/translit/
DFullwidth_Halfwidth.txt8 # 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/chromium_org/third_party/icu/source/data/translit/
DFullwidth_Halfwidth.txt8 # 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/chromium_org/third_party/WebKit/Source/platform/text/
DLineEnding.cpp97 void internalNormalizeLineEndingsToCRLF(const CString& from, OutputBuffer& buffer) in internalNormalizeLineEndingsToCRLF() argument
101 const char* p = from.data(); in internalNormalizeLineEndingsToCRLF()
102 while (p < from.data() + from.length()) { in internalNormalizeLineEndingsToCRLF()
118 if (newLen < from.length()) in internalNormalizeLineEndingsToCRLF()
121 if (newLen == from.length()) { in internalNormalizeLineEndingsToCRLF()
122 buffer.copy(from); in internalNormalizeLineEndingsToCRLF()
126 p = from.data(); in internalNormalizeLineEndingsToCRLF()
130 while (p < from.data() + from.length()) { in internalNormalizeLineEndingsToCRLF()
154 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR);
157 void normalizeToCROrLF(const CString& from, Vector<char>& result, bool toCR) in normalizeToCROrLF() argument
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_bvgraph.h44 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/chromium_org/tools/json_schema_compiler/
Dutil.cc12 bool GetItemFromList(const base::ListValue& from, int index, int* out) { in GetItemFromList() argument
13 return from.GetInteger(index, out); in GetItemFromList()
16 bool GetItemFromList(const base::ListValue& from, int index, bool* out) { in GetItemFromList() argument
17 return from.GetBoolean(index, out); in GetItemFromList()
20 bool GetItemFromList(const base::ListValue& from, int index, double* out) { in GetItemFromList() argument
21 return from.GetDouble(index, out); in GetItemFromList()
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out) { in GetItemFromList() argument
25 return from.GetString(index, out); in GetItemFromList()
28 bool GetItemFromList(const base::ListValue& from, in GetItemFromList() argument
32 if (!from.Get(index, &value)) in GetItemFromList()
[all …]
Dutil.h21 bool GetItemFromList(const base::ListValue& from, int index, int* out);
22 bool GetItemFromList(const base::ListValue& from, int index, bool* out);
23 bool GetItemFromList(const base::ListValue& from, int index, double* out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out);
25 bool GetItemFromList(const base::ListValue& from,
28 bool GetItemFromList(const base::ListValue& from,
34 bool GetItemFromList(const base::ListValue& from, in GetItemFromList() argument
38 if (!from.GetDictionary(index, &dict)) in GetItemFromList()
67 const base::DictionaryValue& from, in PopulateArrayFromDictionary() argument
71 if (!from.GetListWithoutPathExpansion(name, &list)) in PopulateArrayFromDictionary()
[all …]
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
Dwchar_t_out.pass.cpp30 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/chromium_org/content/shell/common/
Dwebkit_test_helpers.cc20 const TestPreferences& from, in ExportLayoutTestSpecificPreferences() argument
23 from.allow_universal_access_from_file_urls; in ExportLayoutTestSpecificPreferences()
24 to->dom_paste_enabled = from.dom_paste_allowed; in ExportLayoutTestSpecificPreferences()
25 to->javascript_can_access_clipboard = from.java_script_can_access_clipboard; in ExportLayoutTestSpecificPreferences()
26 to->xss_auditor_enabled = from.xss_auditor_enabled; in ExportLayoutTestSpecificPreferences()
28 from.editing_behavior); in ExportLayoutTestSpecificPreferences()
29 to->default_font_size = from.default_font_size; in ExportLayoutTestSpecificPreferences()
30 to->minimum_font_size = from.minimum_font_size; in ExportLayoutTestSpecificPreferences()
31 to->default_encoding = from.default_text_encoding_name.utf8().data(); in ExportLayoutTestSpecificPreferences()
32 to->javascript_enabled = from.java_script_enabled; in ExportLayoutTestSpecificPreferences()
[all …]
/external/chromium_org/cc/animation/
Dtransform_operation.cc35 static bool ShareSameAxis(const TransformOperation* from, in ShareSameAxis() argument
41 if (IsOperationIdentity(from) && IsOperationIdentity(to)) in ShareSameAxis()
44 if (IsOperationIdentity(from) && !IsOperationIdentity(to)) { in ShareSameAxis()
52 if (!IsOperationIdentity(from) && IsOperationIdentity(to)) { in ShareSameAxis()
53 *axis_x = from->rotate.axis.x; in ShareSameAxis()
54 *axis_y = from->rotate.axis.y; in ShareSameAxis()
55 *axis_z = from->rotate.axis.z; in ShareSameAxis()
56 *angle_from = from->rotate.angle; in ShareSameAxis()
60 SkMScalar length_2 = from->rotate.axis.x * from->rotate.axis.x + in ShareSameAxis()
61 from->rotate.axis.y * from->rotate.axis.y + in ShareSameAxis()
[all …]
/external/jsilver/src/com/google/streamhtmlparser/impl/
DParserStateTable.java101 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/libsepol/
DChangeLog2 * Allow constraint denial cause to be determined from Richard Haines.
6 * Support overriding Makefile RANLIB from Sven Vermeulen.
7 * Fix man pages from Laurent Bigonville.
36 * Move ebitmap_* functions from mcstrans to libsepol
42 * Separate tunable from boolean during compile.
79 * Fixed typo in error message from Manoj Srivastava.
82 * Add pkgconfig file from Eamon Walsh.
85 * Add support for building Xen policies from Paul Nuzzi.
92 * Add method to check disable dontaudit flag from Christopher Pardy.
95 * Fix boolean state smashing from Joshua Brindle.
[all …]
/external/chromium_org/third_party/sqlite/src/test/
Drandexpr1.test15 # correct value of the expression. So, from one point of view, this
36from t1 where 19 in (t1.b,+11,coalesce((select max((abs(17)/abs(t1.f))) from t1 where ((abs(t1.f)/…
39from t1 where 19 in (t1.b,+11,coalesce((select max((abs(17)/abs(t1.f))) from t1 where ((abs(t1.f)/…
42from t1 where 19 in (t1.b,+11,coalesce((select max((abs(17)/abs(t1.f))) from t1 where ((abs(t1.f)/…
45from t1 where e in (f,case (select cast(avg(t1.a) AS integer) from t1)-t1.d when coalesce((select …
48from t1 where e in (f,case (select cast(avg(t1.a) AS integer) from t1)-t1.d when coalesce((select …
51from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else t1.a end-11 | t1.f,c) or b in (sele…
54from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else t1.a end-11 | t1.f,c) or b in (sele…
57from t1 where e not in (~t1.d,+case when t1.c<b then t1.e else t1.a end-11 & t1.f,c) or b in (sele…
60from t1 where exists(select 1 from t1 where 11-~(d)-c*a*~t1.a-t1.e-t1.e+coalesce((select coalesce(…
[all …]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dtransportdescription.h128 TransportDescription(const TransportDescription& from) in TransportDescription()
129 : transport_type(from.transport_type), in TransportDescription()
130 transport_options(from.transport_options), in TransportDescription()
131 ice_ufrag(from.ice_ufrag), in TransportDescription()
132 ice_pwd(from.ice_pwd), in TransportDescription()
133 ice_mode(from.ice_mode), in TransportDescription()
134 connection_role(from.connection_role), in TransportDescription()
135 identity_fingerprint(CopyFingerprint(from.identity_fingerprint.get())), in TransportDescription()
136 candidates(from.candidates) {} in TransportDescription()
138 TransportDescription& operator=(const TransportDescription& from) {
[all …]
/external/libgsm/src/
Ddebug.c21 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 …]
/external/wpa_supplicant_8/wpa_supplicant/
Dctrl_iface_udp.c59 struct sockaddr_in6 *from, in wpa_supplicant_ctrl_iface_attach() argument
61 struct sockaddr_in *from, in wpa_supplicant_ctrl_iface_attach()
73 os_memcpy(&dst->addr, from, sizeof(*from)); in wpa_supplicant_ctrl_iface_attach()
80 inet_ntop(AF_INET6, &from->sin6_addr, addr, sizeof(*from)), in wpa_supplicant_ctrl_iface_attach()
81 ntohs(from->sin6_port)); in wpa_supplicant_ctrl_iface_attach()
84 inet_ntoa(from->sin_addr), ntohs(from->sin_port)); in wpa_supplicant_ctrl_iface_attach()
92 struct sockaddr_in6 *from, argument
94 struct sockaddr_in *from,
106 if (from->sin6_port == dst->addr.sin6_port &&
107 !os_memcmp(&from->sin6_addr, &dst->addr.sin6_addr,
[all …]
/external/compiler-rt/lib/asan/tests/
Dasan_str_test.cc123 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/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterOperation.cpp34 PassRefPtr<FilterOperation> FilterOperation::blend(const FilterOperation* from, const FilterOperati… in blend() argument
36 ASSERT(from || to); in blend()
38 return to->blend(from, progress); in blend()
39 return from->blend(0, 1 - progress); in blend()
42 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, dou… in blend() argument
45 if (from) { in blend()
46 ASSERT_WITH_SECURITY_IMPLICATION(from->isSameType(*this)); in blend()
47 fromAmount = toBasicColorMatrixFilterOperation(from)->amount(); in blend()
81 …tion> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress) c… in blend() argument
84 if (from) { in blend()
[all …]
/external/bison/m4/
Dgnulib-comp.m426 # 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/checkpolicy/
DChangeLog2 * Fix hyphen usage in man pages from Laurent Bigonville.
3 * handle-unknown / -U required argument fix from Laurent Bigonville.
4 * Support overriding Makefile PATH and LIBDIR from Laurent Bigonville.
5 * Support space and : in filenames from Dan Walsh.
38 * Separate tunable from boolean during compile.
86 * Add support for building Xen policies from Paul Nuzzi.
90 from Caleb Case.
93 * Properly escape regex symbols in the lexer from Stephen Smalley.
96 * Add bounds support from KaiGai Kohei.
99 * Update checkpolicy for user and role mapping support from Joshua Brindle.
[all …]

12345678910>>...261