Home
last modified time | relevance | path

Searched refs:sticky (Results 1 – 25 of 38) sorted by relevance

12

/external/v8/test/mjsunit/harmony/
Dregexp-sticky.js40 var sticky = /foo.bar/y; variable
42 assertTrue(!!"foo*bar".match(sticky));
43 assertEquals(7, sticky.lastIndex);
44 assertFalse(!!"..foo*bar".match(sticky));
78 assertTrue(stickyplainglobal.sticky);
79 stickyplainglobal.sticky = false;
93 assertTrue(stickyglobal.sticky);
94 stickyglobal.sticky = false;
95 assertTrue(stickyglobal.sticky);
109 assertTrue(stickyglobal2.sticky);
[all …]
Dregexp-flags.js26 assertEquals('uy', testGenericFlags({ global: 0, sticky: 1, unicode: 1 })); property
51 get sticky() { getter
Dunicode-escapes-in-regexps.js178 assertTrue(r.sticky);
189 assertFalse(r.sticky);
/external/autotest/client/site_tests/security_SymlinkRestrictions/
Dsecurity_SymlinkRestrictions.py103 def _check_symlinks(self, sticky, userone, usertwo): argument
119 if not sticky:
125 if sticky:
136 if sticky and (uidtwo != 0):
141 if sticky:
151 self.check(os.path.exists(drop) == (sticky and uidtwo != 0),
210 fail=sticky)
223 self._write_as(usertwo_symlink, target, userone, fail=sticky)
237 fail=sticky)
267 self._check_symlinks(sticky=False, userone='root', usertwo='chronos')
[all …]
/external/compiler-rt/lib/builtins/
Dfp_add_impl.inc74 // Shift the significands to give us round, guard and sticky, and or in the
81 // Shift the significand of b by the difference in exponents, with a sticky
86 const bool sticky = bSignificand << (typeWidth - align);
87 bSignificand = bSignificand >> align | sticky;
89 bSignificand = 1; // sticky; b is known to be non-zero.
111 const bool sticky = aSignificand & 1;
112 aSignificand = aSignificand >> 1 | sticky;
124 const bool sticky = aSignificand << (typeWidth - shift);
125 aSignificand = aSignificand >> shift | sticky;
129 // Low three bits are round, guard, and sticky.
Dfp_lib.h254 const bool sticky = *lo << (typeWidth - count); in wideRightShiftWithSticky() local
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; in wideRightShiftWithSticky()
259 const bool sticky = *hi << (2*typeWidth - count) | *lo; in wideRightShiftWithSticky() local
260 *lo = *hi >> (count - typeWidth) | sticky; in wideRightShiftWithSticky()
263 const bool sticky = *hi | *lo; in wideRightShiftWithSticky() local
264 *lo = sticky; in wideRightShiftWithSticky()
Dfp_trunc_impl.inc115 // Right shift by the denormalization amount with sticky.
119 const bool sticky = significand << (srcBits - shift);
120 src_rep_t denormalizedSignificand = significand >> shift | sticky;
/external/v8/test/mjsunit/
Dregexp-not-sticky-yet.js47 assertEquals(void 0, re.sticky);
54 assertEquals(void 0, re.sticky);
55 re.sticky = true; // Has no effect on the regexp, just sets a property.
56 assertTrue(re.sticky);
/external/compiler-rt/lib/builtins/i386/
Dfloatundisf.S63 sticky: label
72 #define STICKY sticky-0b(%ecx,%eax,8)
/external/v8/test/mjsunit/es6/
Dregexp-flags.js12 assertFalse(r1.sticky);
21 assertThrows(function() { r2.sticky; }, TypeError);
/external/harfbuzz_ng/
DMakefile.am65 dist-hook: dist-clear-sticky-bits
67 dist-clear-sticky-bits:
/external/v8/src/js/
Dharmony-regexp.js37 if (this.sticky) result += 'y';
/external/libcap/doc/
Dcapability.notes27 a 'sticky-bit' protected non-root owned directory. Thus, the sticky
/external/chromium-trace/catapult/third_party/Paste/docs/
Dindex.txt38 Paste: making the web sticky.
/external/valgrind/solaris/
Dbuild_solaris_package176 if [[ $publisher == *sticky* ]]; then
/external/v8/test/test262/
Dtest262.status301 'built-ins/RegExp/prototype/exec/get-sticky-coerce': [FAIL],
302 'built-ins/RegExp/prototype/exec/get-sticky-err': [FAIL],
303 'built-ins/RegExp/prototype/test/get-sticky-err': [FAIL],
/external/v8/src/debug/
Dmirrors.js1200 RegExpMirror.prototype.sticky = function() { method in RegExpMirror
1201 return this.value_.sticky;
/external/v8/src/regexp/
Djsregexp.h1509 bool global, bool multiline, bool sticky,
/external/iputils/
DRELNOTES318 ping6: Try using IPV6_PKTINFO sticky option to specify outgoing interface.
/external/v8/
DChangeLog965 [es6] ship regexp sticky flag (issue 4342).
3003 [es6] stage sticky regexps and RegExp.prototype.flags (issue 4342).
3137 [es6] stage sticky regexps and RegExp.prototype.flags (issue 4342).
/external/robolectric/v3/runtime/
Dshadows-core-3.1-SNAPSHOT-22.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...
Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/ ...

12