Searched refs:from (Results 1 - 25 of 3376) sorted by relevance

1234567891011>>

/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar32_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[] = "some text"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 8) == 8);
29 assert(f.length(mbs, from, from+10, 9) == 9);
30 assert(f.length(mbs, from, from
[all...]
H A Dchar_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char from[10]= {0}; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
H A Dwchar_t_length.pass.cpp14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890"; local
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DAnimationUtilities.h38 inline int blend(int from, int to, double progress) argument
40 return lround(from + (to - from) * progress);
45 inline T blend(T from, T to, double progress) argument
48 return clampTo<T>(round(to > from ? from + (to - from) * progress : from - (from - to) * progress));
51 inline double blend(double from, doubl argument
56 blend(float from, float to, double progress) argument
61 blend(LayoutUnit from, LayoutUnit to, double progress) argument
66 blend(const IntPoint& from, const IntPoint& to, double progress) argument
71 blend(const FloatPoint& from, const FloatPoint& to, double progress) argument
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { argument
7 case 0: do { *to++ = *from++;
8 case 7: *to++ = *from++;
9 case 6: *to++ = *from++;
10 case 5: *to++ = *from++;
11 case 4: *to++ = *from++;
12 case 3: *to++ = *from++;
13 case 2: *to++ = *from++;
14 case 1: *to++ = *from++;
/external/smack/src/org/jivesoftware/smackx/
H A DMessageEventNotificationListener.java36 * @param from the user that sent the notification.
39 public void deliveredNotification(String from, String packetID); argument
44 * @param from the user that sent the notification.
47 public void displayedNotification(String from, String packetID); argument
53 * @param from the user that sent the notification.
56 public void composingNotification(String from, String packetID); argument
61 * @param from the user that sent the notification.
64 public void offlineNotification(String from, String packetID); argument
70 * @param from the user that sent the notification.
73 public void cancelledNotification(String from, Strin argument
[all...]
/external/smack/src/org/jivesoftware/smack/filter/
H A DFromContainsFilter.java26 * Filters for packets where the "from" field contains a specified value.
32 private String from; field in class:FromContainsFilter
35 * Creates a "from" contains filter using the "from" field part.
37 * @param from the from field value the packet must contain.
39 public FromContainsFilter(String from) { argument
40 if (from == null) {
43 this.from = from
[all...]
/external/harfbuzz_ng/test/shaping/
H A Dhb-diff-ngrams3 from hb_test_tools import *
H A Dhb-diff-stat3 from hb_test_tools import *
H A Dhb-unicode-decode3 from hb_test_tools import *
H A Dhb-unicode-encode3 from hb_test_tools import *
/external/valgrind/main/drd/tests/
H A Domp_matinv_racy.stderr.exp1 ERROR SUMMARY: 76 errors from 7 contexts
H A Domp_prime_racy.stderr.exp1 ERROR SUMMARY: 3 errors from 3 contexts
H A Dpth_barrier.stderr.exp1 ERROR SUMMARY: 1 errors from 1 contexts
H A Dpth_once.stderr.exp1 ERROR SUMMARY: 0 errors from 0 contexts
H A Dtc05_simple_race.stderr.exp1 ERROR SUMMARY: 2 errors from 2 contexts
H A Dtc06_two_races.stderr.exp1 ERROR SUMMARY: 4 errors from 4 contexts
H A Dthreaded-fork.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java56 /** The iterator from which to obtain the next header. */
102 * Obtains the next token from this iteration.
157 * will be obtained from {@link #headerIt}.
160 * @param from the position in the current header at which to
168 protected int findNext(int from) argument
171 if (from < 0) {
172 // called from the constructor, initialize the first header
177 from = 0;
180 from = findTokenSeparator(from);
230 findTokenStart(int from) argument
286 findTokenSeparator(int from) argument
326 findTokenEnd(int from) argument
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Dimage_store.cc15 void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) { argument
18 if (!HasKey(from))
21 std::pair<gfx::Image, GURL> image_info = Get(from);
22 Erase(from);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLineEnding.h16 * contributors may be used to endorse or promote products derived from
42 PLATFORM_EXPORT CString normalizeLineEndingsToCRLF(const CString& from);
45 PLATFORM_EXPORT void normalizeLineEndingsToCR(const CString& from, Vector<char>& result);
48 PLATFORM_EXPORT void normalizeLineEndingsToLF(const CString& from, Vector<char>& result);
52 PLATFORM_EXPORT void normalizeLineEndingsToNative(const CString& from, Vector<char>& result);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformationMatrixTest.cpp15 TransformationMatrix from; local
20 result.blend(from, 0.25);
21 EXPECT_TRUE(result == from);
24 result.blend(from, 0.75);
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Drun-webkit-tests15 # contributors may be used to endorse or promote products derived from
31 from webkitpy.common import multiprocessing_bootstrap
H A Dtest-webkitpy16 # contributors may be used to endorse or promote products derived from
30 from webkitpy.common import multiprocessing_bootstrap

Completed in 483 milliseconds

1234567891011>>