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

1 2 3 4 5 6 7 8 91011>>

  /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/curl/src/
slist_wc.h 30 struct curl_slist *first; member in struct:slist_wc
40 * first. Returns the new list, after appending.
  /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/mesa3d/src/gallium/state_trackers/nine/
nine_quirk.c 40 static boolean first = TRUE; local
43 if (first) {
44 first = FALSE;
  /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 67 char oidstr[80], first; local
73 first = 1;
76 if (!first)
79 first = 0;
88 first = 1;
91 if (!first)
94 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/runtime/interpreter/
lock_count_data.cc 52 // We arbitrarily choose the first one.
96 // Raise an exception, just give the first object as the sample.
97 mirror::Object* first = (*monitors_)[0]; local
100 mirror::Object::PrettyTypeOf(first).c_str());
  /art/test/597-deopt-new-string/
deopt.cc 37 // We need to suspend mutator threads first.
39 static bool first = true; local
40 if (first) {
43 first = false;
56 // We need to suspend mutator threads first.
  /art/test/626-const-class-linking/src/
ClassPair.java 18 public Class<?> first; field in class:ClassPair
21 public ClassPair(Class<?> first, Class<?> second) {
22 this.first = first;
27 String first_loader_name = first.getClassLoader().getClass().getName();
28 System.out.println("first: " + first.getName() + " class loader: " + first_loader_name);
  /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/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/libcxx/test/std/strings/basic.string/string.modifiers/string_erase/
iter_iter.pass.cpp 12 // iterator erase(const_iterator first, const_iterator last);
24 typename S::const_iterator first = s.cbegin() + pos; local
26 typename S::iterator i = s.erase(first, last);
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_standard_layout.pass.cpp 50 T1 first; member in struct:pair
  /external/tensorflow/tensorflow/core/common_runtime/
allocator_retry.cc 36 bool first = true; local
42 if (first) {
44 first = false;
  /external/v8/src/
type-hints.cc 113 bool first = true;
117 if (!first) os << "|";
118 first = false;
129 bool first = true; local
133 if (!first) ret += "|";
134 first = false;

Completed in 1115 milliseconds

1 2 3 4 5 6 7 8 91011>>