/external/curl/src/ |
H A D | slist_wc.h | 30 struct curl_slist *first; member in struct:slist_wc 40 * first. Returns the new list, after appending.
|
/external/v8/test/webkit/ |
H A D | eval-cache-crash.js | 30 var a = "first"; 31 var first = eval(str)(); variable 32 shouldBe("first", "'first'");
|
/external/valgrind/none/tests/amd64-linux/ |
H A D | map_32bits.c | 9 void *first = NULL; local 17 if (first == NULL) { 18 first = res; 19 if (first == (void *)-1) { 20 perror ("first mmap"); 23 fprintf(stderr, "first mmap : %p\n", first);
|
/external/clang/test/Index/ |
H A D | recursive-member-access.c | 2 struct rdar8650865 *first; member in struct:rdar8650865 7 return ((((((s->first)->first) 8 ->first) 9 ->first) 10 ->first) 11 ->first) 12 ->first 13 ->first 14 ->first [all...] |
/external/curl/lib/ |
H A D | strequal.c | 34 int curl_strequal(const char *first, const char *second) argument 37 return !(strcasecmp)(first, second); 39 return !(strcmpi)(first, second); 41 return !(stricmp)(first, second); 43 while(*first && *second) { 44 if(toupper(*first) != toupper(*second)) { 47 first++; 50 return toupper(*first) == toupper(*second); 57 int curl_strnequal(const char *first, const char *second, size_t max) argument 60 return !strncasecmp(first, secon [all...] |
/external/elfutils/libelf/ |
H A D | elf_newscn.c | 47 bool first = false; local 75 first = true; 114 /* Remember the index for the first section in this block. */ 148 if (unlikely (first)) 150 /* For the first section we mark the data as already available. */ 152 first = false;
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.binary.search/equal.range/ |
H A D | equal_range.pass.cpp | 16 // equal_range(Iter first, Iter last, const T& value); 26 test(Iter first, Iter last, const T& value) argument 28 std::pair<Iter, Iter> i = std::equal_range(first, last, value); 29 for (Iter j = first; j != i.first; ++j) 31 for (Iter j = i.first; j != last; ++j) 33 for (Iter j = first; j != i.second; ++j)
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.binary.search/lower.bound/ |
H A D | lower_bound.pass.cpp | 15 // lower_bound(Iter first, Iter last, const T& value); 25 test(Iter first, Iter last, const T& value) argument 27 Iter i = std::lower_bound(first, last, value); 28 for (Iter j = first; j != i; ++j)
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.binary.search/upper.bound/ |
H A D | upper_bound.pass.cpp | 15 // upper_bound(Iter first, Iter last, const T& value); 25 test(Iter first, Iter last, const T& value) argument 27 Iter i = std::upper_bound(first, last, value); 28 for (Iter j = first; j != i; ++j)
|
/external/lldb/test/functionalities/data-formatter/rdar-10449092/ |
H A D | main.cpp | 14 int first; member in struct:foo 21 mine.first = 0xAABBCCDD; // Set break point at this line.
|
/external/testng/src/test/java/test/priority/ |
H A D | WithPrioritySample2Test.java | 8 public void first() { method in class:WithPrioritySample2Test 9 add("first");
|
H A D | WithPrioritySampleTest.java | 8 public void first() { method in class:WithPrioritySampleTest 9 add("first");
|
H A D | WithoutPrioritySampleTest.java | 8 public void first() { method in class:WithoutPrioritySampleTest 9 add("first");
|
/external/clang/test/CodeGen/ |
H A D | tbaa-thread-sanitizer.cpp | 8 iterator first; member in struct:pair 9 pair(const iterator &a) : first(a) {}
|
/external/clang/test/CodeGenCXX/ |
H A D | pr18635.cpp | 11 F first; member in struct:unique_ptr::pair
|
/external/clang/test/Parser/ |
H A D | bad-control.c | 11 int pr8880_9 (int first) { argument 12 switch(({ if (first) { first = 0; break; } 1; })) { // expected-error {{'break' statement not in loop or switch statement}}
|
/external/compiler-rt/test/tsan/Linux/ |
H A D | user_malloc.cc | 9 static int first = 0; local 10 if (__sync_lock_test_and_set(&first, 1) == 0)
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
H A D | construct_iter_iter.pass.cpp | 12 // template <class InputIter> vector(InputIter first, InputIter last); 24 test(Iterator first, Iterator last) argument 26 C c(first, last); 28 assert(c.size() == std::distance(first, last)); 30 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i, ++first) 31 assert(*i == *first);
|
/external/libcxx/test/std/containers/sequences/vector.bool/ |
H A D | construct_iter_iter.pass.cpp | 13 // template <class InputIter> vector(InputIter first, InputIter last); 23 test(Iterator first, Iterator last) argument 25 C c(first, last); 27 assert(c.size() == std::distance(first, last)); 28 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i, ++first) 29 assert(*i == *first);
|
H A D | construct_iter_iter_alloc.pass.cpp | 13 // template <class InputIter> vector(InputIter first, InputIter last, 24 test(Iterator first, Iterator last, const typename C::allocator_type& a) argument 26 C c(first, last, a); 28 assert(c.size() == std::distance(first, last)); 29 for (typename C::const_iterator i = c.cbegin(), e = c.cend(); i != e; ++i, ++first) 30 assert(*i == *first);
|
/external/libcxx/test/std/iterators/iterator.primitives/iterator.operations/ |
H A D | distance.pass.cpp | 14 // distance(Iter first, Iter last); 18 // distance(Iter first, Iter last); 27 test(It first, It last, typename std::iterator_traits<It>::difference_type x) argument 29 assert(std::distance(first, last) == x);
|
/external/libcxx/test/std/re/re.regex/re.regex.construct/ |
H A D | iter_iter.pass.cpp | 15 // basic_regex(ForwardIterator first, ForwardIterator last); 24 test(Iter first, Iter last, unsigned mc) argument 26 std::basic_regex<typename std::iterator_traits<Iter>::value_type> r(first, last);
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_append/ |
H A D | iterator.pass.cpp | 13 // basic_string& append(InputIterator first, InputIterator last); 23 test(S s, It first, It last, S expected) argument 25 s.append(first, last);
|
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/ |
H A D | iterator.pass.cpp | 13 // basic_string& assign(InputIterator first, InputIterator last); 23 test(S s, It first, It last, S expected) argument 25 s.assign(first, last);
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
H A D | is_standard_layout.pass.cpp | 37 T1 first; member in struct:pair
|