HomeSort by relevance Sort by last modified time
    Searched refs:first (Results 1 - 25 of 3901) 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...]
  /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...]
  /development/ndk/samples/two-libs/jni/
first.c 17 #include "first.h"
19 int first(int x, int y) function
first.h 20 extern int first(int x, int y);
second.c 17 #include "first.h"
26 return first(x, y);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Pair.java 32 public final A first; field in class:Pair
35 public Pair(A first, B second) {
36 this.first = first;
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/animation/
AnimationPair.java 26 private final Animation first; field in class:AnimationPair
29 AnimationPair(Animation first, Animation second) {
30 this.first = first;
34 public Animation first() { method in class:AnimationPair
35 return first;
  /frameworks/base/graphics/java/android/graphics/
SumPathEffect.java 23 * (e.g. first(path) + second(path))
25 public SumPathEffect(PathEffect first, PathEffect second) {
26 native_instance = nativeCreate(first.native_instance,
30 private static native int nativeCreate(int first, int second);
  /external/easymock/src/org/easymock/internal/matchers/
Not.java 26 private final IArgumentMatcher first; field in class:Not
28 public Not(IArgumentMatcher first) {
29 this.first = first;
33 return !first.matches(actual);
38 first.appendTo(buffer);
  /external/clang/test/Frontend/
verify-fatal.c 3 #error first fatal
4 // expected-error@-1 {{first fatal}}
  /system/extras/tests/bionic/libc/bionic/
lib_relocs.c 6 struct foo { int first, second; }; member in struct:foo
9 int* FooPtr[] = { &Foo.first, &Foo.second };
  /external/elfutils/lib/
list.h 54 #define CDBL_LIST_ADD_REAR(first, newp) \
59 if (unlikely ((first) == NULL)) \
60 (first) = _newp->next = _newp->previous = _newp; \
63 _newp->next = (first); \
64 _newp->previous = (first)->previous; \
70 #define CDBL_LIST_DEL(first, elem) \
74 assert (first != NULL && _elem != NULL \
75 && (first != elem \
76 || ({ __typeof (elem) _runp = first->next; \
77 while (_runp != first) \
    [all...]
  /ndk/tests/device/multi-static-instances/jni/
main.cpp 15 A* first = A::instance(); local
18 if (first != second) {
19 fprintf(stderr, "ERROR: instance() returned two distinct addresses: %p %p\n", first, second);
22 printf("OK: instance() returned the same address twice: %p\n", first);
  /system/core/
Android.mk 18 include $(call first-makefiles-under,$(LOCAL_PATH))
  /external/mesa3d/src/glsl/
ir_basic_block.h 25 void (*callback)(ir_instruction *first,
  /frameworks/base/core/java/android/util/
Pair.java 27 public final F first; field in class:Pair
33 * @param first the first object in the Pair
36 public Pair(F first, S second) {
37 this.first = first;
55 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode())
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
iterator.h 61 iterator_pair(const Iterator1& first, const Iterator2& second)
62 : base_type(first, second) { }
68 ++base_type::first; member in class:__gnu_parallel::iterator_pair::base_type
76 { return type(base_type::first++, base_type::second++); }
82 --base_type::first;
90 { return type(base_type::first--, base_type::second--); }
99 base_type::first = other.first; member in class:__gnu_parallel::iterator_pair::base_type
106 { return type(base_type::first + delta, base_type::second + delta); }
110 { return base_type::first - other.first;
133 Iterator1 first; member in class:__gnu_parallel::iterator_triple
    [all...]
  /external/webkit/Source/WebCore/css/
Pair.h 40 static PassRefPtr<Pair> create(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
42 return adoptRef(new Pair(first, second));
46 CSSPrimitiveValue* first() const { return m_first.get(); } function in class:WebCore::Pair
49 void setFirst(PassRefPtr<CSSPrimitiveValue> first) { m_first = first; }
54 Pair(PassRefPtr<CSSPrimitiveValue> first, PassRefPtr<CSSPrimitiveValue> second)
55 : m_first(first), m_second(second) { }
FontFamilyValue.cpp 49 unsigned first = 0; local
52 first = i - 1;
54 if (!first)
56 length = first;
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 110 typedef struct { char * first; char * last; } stack_entry; member in struct:__anon12081
111 #define pushLeft {stack[stacktop].first=ffirst;stack[stacktop++].last=last;}
112 #define pushRight {stack[stacktop].first=first;stack[stacktop++].last=llast;}
113 #define doLeft {first=ffirst;llast=last;continue;}
114 #define doRight {ffirst=first;last=llast;continue;}
116 first=ffirst=stack[stacktop].first;\
133 * 3. We choose a pivot by looking at the first, last
187 { size_t l=last-ffirst,r=llast-first; \
325 char *first,*last; local
356 char *first,*last; local
387 char *first,*last; local
    [all...]
  /frameworks/ex/variablespeed/jni/
macros.h 31 ForwardIterator min_element(ForwardIterator first, ForwardIterator last) {
32 ForwardIterator lowest = first;
33 if (first == last) return last;
34 while (++first != last)
35 if (*first < *lowest)
36 lowest = first;
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Queue.c 53 queue->first = (EXYNOS_QElem *)Exynos_OSAL_Malloc(sizeof(EXYNOS_QElem));
54 if (queue->first == NULL)
57 Exynos_OSAL_Memset(queue->first, 0, sizeof(EXYNOS_QElem));
58 currentqelem = queue->last = queue->first;
64 while (queue->first != NULL) {
65 currentqelem = queue->first->qNext;
66 Exynos_OSAL_Free((OMX_PTR)queue->first);
67 queue->first = currentqelem;
77 currentqelem->qNext = queue->first;
93 currentqelem = queue->first->qNext
    [all...]
  /external/clang/test/SemaCXX/
non-empty-class-size-zero.cpp 13 int first; member in struct:Y
  /external/compiler-rt/BlocksRuntime/tests/
josh.C 19 MyStruct first; // works local
  /external/freetype/src/cache/
ftcmru.c 32 FTC_MruNode first = *plist; local
35 if ( first )
37 FTC_MruNode last = first->prev;
42 FTC_MruNode cnode = first;
54 } while ( cnode != first );
58 first->prev = node;
60 node->next = first;
76 FTC_MruNode first = *plist; local
79 FT_ASSERT( first != NULL );
81 if ( first != node
125 FTC_MruNode first = *plist; local
207 FTC_MruNode first, node; local
331 FTC_MruNode first, node, next; local
    [all...]

Completed in 5220 milliseconds

1 2 3 4 5 6 7 8 91011>>