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

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/
H A Dpair.pxd0 from utility cimport pair
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A D__init__.pxd24 # cdef extern from "Python.h":
28 # use the one from the right (pxd-)namespace then.
34 ## using the Python/C API from Cython is as follows.
90 # from being deallocated as long as our variable is pointing to
96 # from Python; the call mechanism guarantees to hold a reference
99 # However, a common pitfall is to extract an object from a list
102 # from the list, decrementing its reference count and possible
106 # user from a Py_DECREF(), so almost any operation is potentially
127 # Do NOT cimport any names directly from the cpython package,
130 # Instead, use the correct sub-module to draw your cimports from
[all...]
/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.java61 /** The iterator from which to obtain the next header. */
107 * Obtains the next token from this iteration.
162 * will be obtained from {@link #headerIt}.
165 * @param from the position in the current header at which to
173 protected int findNext(int from) argument
176 if (from < 0) {
177 // called from the constructor, initialize the first header
182 from = 0;
185 from = findTokenSeparator(from);
235 findTokenStart(int from) argument
291 findTokenSeparator(int from) argument
331 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);

Completed in 349 milliseconds

1234567891011>>