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

1 2 3

  /external/v8/test/mjsunit/regress/
regress-crbug-490680.js 5 var sentinel = null; variable
8 throw { toString: function() { sentinel = "observed"; } };
13 throw { toString: function() { sentinel = "observed"; } };
18 assertNull(sentinel);
regress-419663.js 14 function sentinel() {} function
20 var script = Debug.findScript(sentinel);
  /external/droiddriver/src/io/appium/droiddriver/scroll/
StaticSentinelStrategy.java 52 UiElement sentinel = getSentinel(driver, containerFinder, direction); local
53 UiElement container = sentinel.getParent();
57 if (visibleBounds.contains(sentinel.getBounds())) {
SentinelStrategy.java 36 * based on a sentinel.
40 * A {@link Finder} for sentinel. Note that unlike {@link Finder}, invisible
56 * Gets the sentinel, which must be an immediate child of {@code container}
57 * - not a descendant. Note sentinel may not exist if {@code container} has
62 UiElement sentinel = getSentinel(container.getChildren(predicate)); local
63 if (sentinel == null) {
66 Logs.log(Log.INFO, "Found sentinel: " + sentinel);
67 return sentinel;
78 * Returns the first child as the sentinel
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_getopt.py 9 sentinel = object() variable
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_getopt.py 9 sentinel = object() variable
  /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/v8/src/compiler/
osr.cc 53 Node* sentinel = graph->NewNode(dead->op()); local
60 new (stuff) NodeVector(original_count, sentinel, tmp_zone);
84 if (copy != sentinel) {
113 if (copy->InputAt(j) == sentinel) {
  /libcore/luni/src/main/java/java/lang/ref/
FinalizerReference.java 86 // Alloate a new sentinel, this creates a FinalizerReference.
87 Sentinel sentinel; local
88 // Keep looping until we safely enqueue our sentinel FinalizerReference.
92 sentinel = new Sentinel();
93 } while (!enqueueSentinelReference(sentinel));
94 sentinel.awaitFinalization(timeout);
97 private static boolean enqueueSentinelReference(Sentinel sentinel) {
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
test_layer2.py 26 from mock import call, Mock, patch, sentinel namespace
258 parts_result = self.vault.list_all_parts(sentinel.upload_id)
259 expected = [call('examplevault', sentinel.upload_id)]
269 parts_result = self.vault.list_all_parts(sentinel.upload_id)
270 expected = [call('examplevault', sentinel.upload_id),
271 call('examplevault', sentinel.upload_id,
293 sentinel.upload_id, file_obj=sentinel.file_obj)
295 self.vault, sentinel.upload_id, part_size, sentinel.file_obj
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/
rjsmin.c 89 const rchar *reset, *sentinel = source + length; local
93 while (source < sentinel) {
105 while (source < sentinel) {
116 if (source < sentinel) {
119 if (c == U('\r') && source < sentinel
133 if (!(source < sentinel)) {
162 while (source < sentinel) {
171 if (source < sentinel) {
179 while (source < sentinel) {
186 if (source < sentinel) {
    [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...]
  /toolchain/binutils/binutils-2.25/bfd/
aout-adobe.c 272 static struct external_segdesc sentinel[1]; /* Initialized to zero. */ local
328 /* Write final `sentinel` section header (with type of 0). */
329 amt = sizeof (*sentinel);
330 if (bfd_bwrite (sentinel, amt, abfd) != amt)
  /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-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/
rcssmin.c 30 const rchar *sentinel; member in struct:__anon6820
188 && source < ctx->sentinel && target < ctx->tsentinel
220 && source < ctx->sentinel && target < ctx->tsentinel
248 copy(const rchar *source, const rchar *sentinel, rchar **target_,
253 while (source < sentinel && target < ctx->tsentinel)
258 return (source == sentinel);
275 if (source < ctx->sentinel && !(target < ctx->tsentinel)) { \
301 if (source < ctx->sentinel && target < ctx->tsentinel) {
310 if (ctx->sentinel - source > 5)
313 hsentinel = ctx->sentinel;
    [all...]
  /external/libpcap/Win32/Src/
getaddrinfo.c 301 struct addrinfo sentinel; local
322 sentinel.ai_next = NULL;
323 cur = &sentinel;
438 if (sentinel.ai_next)
490 if (sentinel.ai_next)
496 if (sentinel.ai_next) {
498 *res = sentinel.ai_next;
505 if (sentinel.ai_next)
506 freeaddrinfo(sentinel.ai_next);
526 struct addrinfo sentinel, *cur local
698 struct addrinfo sentinel; local
760 struct addrinfo sentinel; local
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
bootparam.h 166 __u8 sentinel; member in struct:boot_params
  /development/ndk/platforms/android-21/arch-x86/include/asm/
bootparam.h 165 __u8 sentinel; member in struct:boot_params
  /development/ndk/platforms/android-21/arch-x86_64/include/asm/
bootparam.h 165 __u8 sentinel; member in struct:boot_params
  /external/chromium-trace/catapult/telemetry/third_party/mock/
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...]
  /external/chromium-trace/catapult/third_party/mock/
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...]

Completed in 828 milliseconds

1 2 3