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

1 2 3

  /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))),
  /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/chromium_org/third_party/libxml/src/
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...]
  /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/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementCallbackDispatcher.h 82 // Add a null element as a sentinel. This makes it possible to
85 // is popped when empty, this sentinel will cause a null deref
87 CustomElementCallbackQueue* sentinel = 0; local
89 m_flattenedProcessingStack.append(sentinel);
114 // is a null sentinel value.
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 1172 // We are using knowledge of the sentinel. The sentinel
1182 // We are using knowledge of the sentinel. The sentinel
1192 // We are using knowledge of the sentinel. The sentinel
1202 // We are using knowledge of the sentinel. The sentinel
1502 sentinel.next = &sentinel;
    [all...]
tinyxml.h 932 TiXmlAttribute sentinel; member in class:TiXmlAttributeSet
    [all...]
  /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 588 struct addrinfo sentinel; local
601 memset(&sentinel, 0, sizeof(sentinel));
602 cur = &sentinel;
722 if (sentinel.ai_next)
772 if (sentinel.ai_next)
778 if (sentinel.ai_next) {
780 *res = sentinel.ai_next;
787 if (sentinel.ai_next)
788 freeaddrinfo(sentinel.ai_next)
865 struct addrinfo sentinel; local
930 struct addrinfo sentinel; local
1299 struct addrinfo sentinel, *cur; local
1891 struct addrinfo sentinel, *cur; local
2120 struct addrinfo sentinel, *cur; local
    [all...]
  /external/chromium_org/content/renderer/pepper/
v8_var_converter.cc 32 StackEntry(T v) : val(v), sentinel(false) {}
35 bool sentinel; member in struct:__anon10482::StackEntry
236 // visited yet (i.e. sentinel == false) then it is added to the list of parents
262 if (stack.top().sentinel) {
268 stack.top().sentinel = true;
365 if (stack.top().sentinel) {
371 stack.top().sentinel = true;
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
DynamicSentinelStrategy.java 30 * Determines whether scrolling is possible by checking whether the sentinel
40 * Interface for determining whether sentinel is updated.
60 * Determines whether the sentinel is updated by checking a single unique
61 * String attribute of a child element of the sentinel (or itself).
67 * @param uniqueStringFinder a Finder relative to the sentinel that finds
75 * @param uniqueStringChild the child of sentinel (or itself) that contains
81 private String getUniqueStringFromSentinel(UiElement sentinel) {
83 return getUniqueString(uniqueStringFinder.find(sentinel));
96 Logs.logfmt(Log.WARN, "Unique String under sentinel %s is null", newSentinel);
113 * Determines whether the sentinel is updated by checking the text of a chil
    [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
  /external/llvm/include/llvm/Support/
DataTypes.h 204 #define END_WITH_NULL __attribute__((sentinel))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xrange.py 34 sentinel = object()
35 pairs = itertools.izip_longest(xs, ys, fillvalue=sentinel)
39 elif x == sentinel:
42 elif y == sentinel:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xrange.py 34 sentinel = object()
35 pairs = itertools.izip_longest(xs, ys, fillvalue=sentinel)
39 elif x == sentinel:
42 elif y == sentinel:
  /external/chromium_org/ppapi/shared_impl/
var_value_conversions.cc 35 sentinel(false) {
44 // a sentinel. When it becomes the top element of the stack again, we know
46 bool sentinel; member in struct:ppapi::__anon11944::VarNode
233 if (top.sentinel) {
238 top.sentinel = true;
268 top.sentinel = true;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_hash.c 339 struct cso_node *sentinel; local
351 sentinel = node;
354 if (*bucket != sentinel) {
356 while (prev->next != sentinel)
361 sentinel = a.e;
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_hash.c 339 struct cso_node *sentinel; local
351 sentinel = node;
354 if (*bucket != sentinel) {
356 while (prev->next != sentinel)
361 sentinel = a.e;
  /external/chromium_org/v8/test/mjsunit/
arguments-apply.js 112 var sentinel = 42;
115 assertEquals(42, sentinel);

Completed in 979 milliseconds

1 2 3