HomeSort by relevance Sort by last modified time
    Searched refs:sentinel (Results 1 - 25 of 34) sorted by null

1 2

  /external/clang/test/Sema/
sentinel-attribute.c 2 int x __attribute__((sentinel)); //expected-warning{{'sentinel' attribute only applies to functions, methods and blocks}}
4 void f1(int a, ...) __attribute__ ((sentinel));
5 void f2(int a, ...) __attribute__ ((sentinel(1)));
7 void f3(int a, ...) __attribute__ ((sentinel("hello"))); //expected-error{{'sentinel' attribute requires parameter 1 to be an integer constant}}
8 void f4(int a, ...) __attribute__ ((sentinel(1, 2, 3))); //expected-error{{attribute takes no more than 2 arguments}}
9 void f4(int a, ...) __attribute__ ((sentinel(-1))); //expected-error{{parameter 1 less than zero}}
10 void f4(int a, ...) __attribute__ ((sentinel(0, 2))); // expected-error{{parameter 2 not 0 or 1}}
12 void f5(int a) __attribute__ ((sentinel)); //expected-warning{{'sentinel' attribute only supported for variadic functions}
    [all...]
  /external/clang/test/SemaCXX/
attr-sentinel.cpp 3 void f(int, ...) __attribute__((sentinel));
12 S(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
13 void a(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
14 void* operator new(size_t,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
15 void operator()(int,...) __attribute__((sentinel)); // expected-note {{marked sentinel}}
19 S s(1,2,3); // expected-warning {{missing sentinel in function call}
    [all...]
value-dependent-exprs.cpp 32 __attribute__((sentinel(1 + I, 2 + I))),
nullptr.cpp 97 void f(int, ...) __attribute__((sentinel));
100 // nullptr can be used as the sentinel value.
  /frameworks/native/opengl/tools/glgen/specs/egl/
checks.spec 3 eglChooseConfig check configs config_size check num_config 1 sentinel attrib_list EGL_NONE
5 //STUB function: //eglCreateWindowSurface sentinel attrib_list EGL_NONE
6 eglCreatePbufferSurface sentinel attrib_list EGL_NONE
7 //unsupported: eglCreatePixmapSurface sentinel attrib_list EGL_NONE
11 eglCreatePbufferFromClientBuffer sentinel attrib_list EGL_NONE
12 eglCreateContext sentinel attrib_list EGL_NONE
  /external/libxml2/
list.c 40 xmlLinkPtr sentinel; member in struct:_xmlList
104 for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next);
124 for(lk = l->sentinel->prev;lk != l->sentinel && l->linkCompare(lk->data, data) >0 ;lk = lk->prev);
144 if (lk == l->sentinel)
169 if (lk == l->sentinel)
199 /* Add the sentinel */
200 if (NULL ==(l->sentinel = (xmlLinkPtr )xmlMalloc(sizeof(xmlLink)))) {
202 "Cannot initialize memory for sentinel");
    [all...]
  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 86 Sentinel sentinel = new Sentinel(); local
87 enqueueSentinelReference(sentinel);
88 sentinel.awaitFinalization();
91 private static void enqueueSentinelReference(Sentinel sentinel) {
97 if (r.referent == sentinel) {
98 FinalizerReference<Sentinel> sentinelReference = (FinalizerReference<Sentinel>) r
    [all...]
  /external/clang/test/Index/
complete-exprs.c 15 void f3(const char*, ...) __attribute__((sentinel(0)));
  /external/tinyxml/
tinyxml.cpp 1164 // We are using knowledge of the sentinel. The sentinel
1173 // We are using knowledge of the sentinel. The sentinel
1182 // We are using knowledge of the sentinel. The sentinel
1191 // We are using knowledge of the sentinel. The sentinel
1520 sentinel.next = &sentinel;
    [all...]
tinyxml.h 822 const TiXmlAttribute* First() const { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
823 TiXmlAttribute* First() { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; }
824 const TiXmlAttribute* Last() const { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; }
825 TiXmlAttribute* Last() { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev;
836 TiXmlAttribute sentinel; member in class:TiXmlAttributeSet
    [all...]
  /external/tcpdump/missing/
getaddrinfo.c 294 struct addrinfo sentinel; local
315 sentinel.ai_next = NULL;
316 cur = &sentinel;
431 if (sentinel.ai_next)
483 if (sentinel.ai_next)
489 if (sentinel.ai_next) {
491 *res = sentinel.ai_next;
498 if (sentinel.ai_next)
499 freeaddrinfo(sentinel.ai_next);
519 struct addrinfo sentinel, *cur local
691 struct addrinfo sentinel; local
753 struct addrinfo sentinel; local
    [all...]
  /bionic/libc/netbsd/net/
getaddrinfo.c 587 struct addrinfo sentinel; local
600 memset(&sentinel, 0, sizeof(sentinel));
601 cur = &sentinel;
721 if (sentinel.ai_next)
771 if (sentinel.ai_next)
777 if (sentinel.ai_next) {
779 *res = sentinel.ai_next;
786 if (sentinel.ai_next)
787 freeaddrinfo(sentinel.ai_next)
864 struct addrinfo sentinel; local
929 struct addrinfo sentinel; local
1298 struct addrinfo sentinel, *cur; local
1888 struct addrinfo sentinel, *cur; local
2114 struct addrinfo sentinel, *cur; local
    [all...]
  /external/compiler-rt/make/
subdir.mk 39 # Reset subdirectory specific variables to sentinel value.
53 # Check for undefined required variables, and unset sentinel value from optional
lib_platforms.mk 26 # Reset platform specific variables to sentinel value.
  /external/llvm/include/llvm/Support/
DataTypes.h 204 #define END_WITH_NULL __attribute__((sentinel))
DataTypes.h.cmake 194 #define END_WITH_NULL __attribute__((sentinel))
DataTypes.h.in 191 #define END_WITH_NULL __attribute__((sentinel))
  /external/v8/test/mjsunit/
arguments-apply.js 112 var sentinel = 42;
115 assertEquals(42, sentinel);
  /dalvik/vm/
Misc.cpp 762 const char* sentinel = strstr(path, "/./"); local
764 if (sentinel != NULL) {
765 /* It's got the sentinel. Return a pointer to the second slash. */
766 return sentinel + 2;
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
mock.py 58 'sentinel',
72 class Sentinel(object):
80 sentinel = Sentinel() variable
82 DEFAULT = sentinel.DEFAULT
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 215 * @param sentinel a marker value that means the expected value was omitted
217 private void assertOneOf(String expected, String sentinel, String actual) {
218 List<String> optionsList = Arrays.asList(sentinel, expected);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_merge.h 621 sentinel,
636 LT lt(k, sentinel, comp);
711 sentinel,
728 // Move the sequends end behind the sentinel spots. This has the
729 // effect that the sentinel appears to be within the sequence. Then,
731 // non-sentinel elements as we have.
736 (seqs_begin, seqs_end, target, sentinel, length, comp);
903 sentinel,
917 >::__type>(seqs_begin, seqs_end, target, sentinel, length, comp);
940 sentinel,
    [all...]
  /frameworks/native/opengl/libagl/
primitives.cpp 898 unsigned int sentinel = 0; local
918 if (++sentinel >= 3)
929 if (++sentinel >= 3)
964 unsigned int sentinel = 0; local
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 1583 EmailContent.Message sentinel = new EmailContent.Message(); local
    [all...]
  /external/v8/src/
collection.js 36 // Global sentinel to be used instead of undefined keys, which are not

Completed in 517 milliseconds

1 2