HomeSort by relevance Sort by last modified time
    Searched defs:first (Results 1 - 25 of 2994) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/ndk/samples/two-libs/jni/
first.c 17 #include "first.h"
19 int first(int x, int y) function
  /external/clang/test/Index/
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/elfutils/libelf/
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/v8/test/webkit/
eval-cache-crash.js 30 var a = "first";
31 var first = eval(str)(); variable
32 shouldBe("first", "'first'");
  /external/valgrind/none/tests/amd64-linux/
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);
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
RecycleAccessibilityEventTest.java 43 AccessibilityEvent first = local
45 assertNotNull(first);
47 first.setClassName(CLASS_NAME);
48 first.setPackageName(PACKAGE_NAME);
49 first.getText().add(TEXT);
50 first.setFromIndex(FROM_INDEX);
51 first.setAddedCount(ADDED_COUNT);
52 first.setRemovedCount(REMOVED_COUNT);
53 first.setChecked(true);
54 first.setContentDescription(CONTENT_DESCRIPTION)
    [all...]
  /external/boringssl/src/crypto/x509/
t_x509a.c 68 char oidstr[80], first; local
73 first = 1;
77 if(!first) BIO_puts(out, ", ");
78 else first = 0;
86 first = 1;
90 if(!first) BIO_puts(out, ", ");
91 else first = 0;
  /external/clang/test/CodeGen/
tbaa-thread-sanitizer.cpp 8 iterator first; member in struct:pair
9 pair(const iterator &a) : first(a) {}
  /external/compiler-rt/test/tsan/Linux/
user_malloc.cc 9 static int first = 0; local
10 if (__sync_lock_test_and_set(&first, 1) == 0)
user_fopen.cc 10 static int first = 0; local
11 if (__sync_lock_test_and_set(&first, 1) == 0)
17 static int first = 0; local
18 if (__sync_lock_test_and_set(&first, 1) == 0)
  /external/testng/src/test/java/test/priority/
WithPrioritySample2Test.java 8 public void first() { method in class:WithPrioritySample2Test
9 add("first");
WithPrioritySampleTest.java 8 public void first() { method in class:WithPrioritySampleTest
9 add("first");
WithoutPrioritySampleTest.java 8 public void first() { method in class:WithoutPrioritySampleTest
9 add("first");
  /art/test/597-deopt-new-string/
deopt.cc 35 // We need to suspend mutator threads first.
37 static bool first = true; local
38 if (first) {
41 first = false;
54 // We need to suspend mutator threads first.
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMAxisTraverser.java 36 * for(int nodeHandle=myTraverser.first(myContext);
50 * an axis, the first function must be used to get the first node.
57 * @return the first node in the traversal.
59 public int first(int context) method in class:DTMAxisTraverser
67 * an axis, the first function must be used to get the first node.
76 * @return the first node in the traversal.
78 public int first(int context, int extendedTypeID) method in class:DTMAxisTraverser
90 * previous traversal step. For the first traversal step, contex
    [all...]
  /external/boringssl/src/crypto/asn1/
t_bitst.c 68 char first = 1; local
72 if(!first) BIO_puts(out, ", ");
74 first = 0;
  /external/clang/test/CodeGenCXX/
pr18635.cpp 11 F first; member in struct:unique_ptr::pair
  /external/compiler-rt/test/BlocksRuntime/
josh.C 19 MyStruct first; // works local
  /external/compiler-rt/test/asan/TestCases/Linux/
unpoison_tls.cc 16 void *first(void *arg) { function
30 assert(0 == pthread_create(&p, 0, first, 0));
  /external/elfutils/libebl/
eblmachineflagname.c 49 int first = 1; local
55 if (! first)
79 first = 0;
  /external/icu/icu4c/source/layout/
ExtensionSubtables.cpp 20 le_uint16* first = ((le_uint16*)&code); local
22 return (le_uint32)((SWAPW(*first) << 16) + SWAPW(*second));
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
23 typename S::const_iterator first = s.cbegin() + pos; local
25 typename S::iterator i = s.erase(first, last);
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_standard_layout.pass.cpp 37 T1 first; member in struct:pair
  /external/v8/test/mjsunit/regress/
regress-1146.js 33 a.first = function() { return 11; }
42 var b = "first";
  /frameworks/av/media/img_utils/include/img_utils/
Pair.h 31 F first; member in class:android::img_utils::Pair
36 Pair(const Pair& o) : first(o.first), second(o.second) {}
38 Pair(const F& f, const S& s) : first(f), second(s) {}

Completed in 1162 milliseconds

1 2 3 4 5 6 7 8 91011>>