/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/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementCallbackDispatcher.h | 79 // Add a null element as a sentinel. This makes it possible to 82 // is popped when empty, this sentinel will cause a null deref 84 CustomElementCallbackQueue* sentinel = 0; local 86 m_flattenedProcessingStack.append(sentinel); 114 // is a null sentinel value.
|
/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::__anon9936::VarNode 236 if (top.sentinel) { 241 top.sentinel = true; 271 top.sentinel = true;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 9 sentinel = object() variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 9 sentinel = object() variable
|
/development/ide/emacs/ |
android-host.el | 92 (defun android-fastboot-sentinel (process event) 118 (set-process-sentinel proc 'android-fastboot-sentinel)))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/ |
mock.py | 58 'sentinel', 72 class Sentinel(object): 80 sentinel = Sentinel() variable 82 DEFAULT = sentinel.DEFAULT
|
/external/chromium_org/content/renderer/pepper/ |
v8_var_converter.cc | 36 StackEntry(T v) : val(v), sentinel(false) {} 39 bool sentinel; member in struct:__anon8236::StackEntry 270 // visited yet (i.e. sentinel == false) then it is added to the list of parents 297 if (stack.top().sentinel) { 303 stack.top().sentinel = true; 405 if (stack.top().sentinel) { 411 stack.top().sentinel = true;
|
/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/chromium_org/third_party/mesa/src/src/mesa/main/ |
extensions.c | 779 GLboolean *sentinel = base + o(extension_sentinel); local [all...] |
/external/clang/utils/ |
clang-completion-mode.el | 93 ;; sentinel processes the entire string at once. 132 ;; Process "sentinel" that, on successful code completion, replaces the 135 (defun clang-completion-sentinel (proc event) 170 (set-process-sentinel cc-proc 'clang-completion-sentinel)
|
/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...] |
/external/mesa3d/src/mesa/main/ |
extensions.c | 779 GLboolean *sentinel = base + o(extension_sentinel); local [all...] |
/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/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/chromium_org/third_party/ots/src/ |
cff.cc | 743 uint16_t sentinel = 0; local 744 if (!table.ReadU16(&sentinel)) { 747 if (last_gid >= sentinel) { 750 for (uint16_t k = last_gid; k < sentinel; ++k) {
|
/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/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...] |
/external/chromium_org/third_party/pymock/ |
mock.py | 20 'sentinel', 341 "A unique, named, sentinel object." 346 return 'sentinel.%s' % self.name 350 """Access attributes to return a named object, usable as a sentinel.""" 361 sentinel = _Sentinel() variable 363 DEFAULT = sentinel.DEFAULT 364 _missing = sentinel.MISSING 365 _deleted = sentinel.DELETED [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...] |
/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/third_party/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | 932 TiXmlAttribute sentinel; member in class:TiXmlAttributeSet [all...] |
/external/sfntly/cpp/src/test/tinyxml/ |
tinyxml.h | 932 TiXmlAttribute sentinel; member in class:TiXmlAttributeSet [all...] |
/external/tinyxml/ |
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/v8/src/ia32/ |
macro-assembler-ia32.cc | 1932 const int sentinel = SharedFunctionInfo::kDontAdaptArgumentsSentinel; local [all...] |