/external/webkit/LayoutTests/http/tests/resources/ |
redirect.php | 5 if (isset($refresh)) { 12 if (!isset($code))
|
tripmine.php | 51 if (isset($contentType) 59 if (isset($_SERVER['HTTP_X_WEBKIT_TEST'])) {
|
/external/webkit/LayoutTests/http/tests/appcache/resources/auth/ |
setup.php | 2 if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
subresource.php | 2 if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
manifest.php | 2 if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
iframe.php | 2 if (!isset($_SERVER['PHP_AUTH_USER'])) {
|
/external/libvpx/examples/includes/geshi/contrib/ |
langcheck.php | 190 if (isset($_REQUEST['show']) && in_array($_REQUEST['show'], $languages)) { 247 if(!isset($language_data)) { 255 if(!isset($language_data['LANG_NAME'])) { 261 if(!isset($language_data['COMMENT_SINGLE'])) { 267 if(!isset($language_data['COMMENT_MULTI'])) { 273 if(isset($language_data['COMMENT_REGEXP'])) { 279 if(!isset($language_data['QUOTEMARKS'])) { 285 if(isset($language_data['HARDQUOTE'])) { 291 if(!isset($language_data['ESCAPE_CHAR'])) { 299 if(!isset($language_data['CASE_KEYWORDS'])) [all...] |
/external/chromium/base/synchronization/ |
cancellation_flag_unittest.cc | 37 ASSERT_FALSE(flag.IsSet()); 39 ASSERT_TRUE(flag.IsSet()); 44 ASSERT_FALSE(flag.IsSet()); 46 ASSERT_TRUE(flag.IsSet()); 48 ASSERT_TRUE(flag.IsSet());
|
cancellation_flag.cc | 18 bool CancellationFlag::IsSet() const {
|
cancellation_flag.h | 16 // thread. Calling Set() from one thread and IsSet() from a number of threads 31 bool IsSet() const; // Returns true iff the flag was set.
|
/libcore/luni/src/main/java/java/util/ |
GregorianCalendar.java | 679 isSet[i] = true; 717 if (isSet[HOUR_OF_DAY]) { 721 } else if (isSet[HOUR] && (fields[HOUR] < 0 || fields[HOUR] > 11)) { 724 if (isSet[MINUTE] && (fields[MINUTE] < 0 || fields[MINUTE] > 59)) { 727 if (isSet[SECOND] && (fields[SECOND] < 0 || fields[SECOND] > 59)) { 730 if (isSet[MILLISECOND] 734 if (isSet[WEEK_OF_YEAR] 738 if (isSet[DAY_OF_WEEK] 742 if (isSet[DAY_OF_WEEK_IN_MONTH] 746 if (isSet[WEEK_OF_MONTH [all...] |
/external/icu4c/test/intltest/ |
fldset.cpp | 51 if (isSet((UCalendarDateFields)i)) { 176 UBool FieldsSet::isSet(int32_t field) const { 207 if((inheritFrom == NULL) || !inheritFrom->isSet((UCalendarDateFields)field)) { 259 if (isSet((UCalendarDateFields)i)) { 276 if (isSet((UCalendarDateFields)i)) { 312 if(!isSet(DTS_DATE)) { 321 if(!isSet(DTS_TIME)) { 334 if(isSet(field) && U_SUCCESS(status)) {
|
/bionic/libc/bionic/ |
fts.c | 59 #define ISSET(opt) (sp->fts_options & (opt)) 62 #define FCHDIR(sp, fd) (!ISSET(FTS_NOCHDIR) && fchdir(fd)) 92 if (ISSET(FTS_LOGICAL)) 120 p->fts_info = fts_stat(sp, p, ISSET(FTS_COMFOLLOW)); 163 if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = open(".", O_RDONLY, 0)) < 0) 223 rfd = ISSET(FTS_NOCHDIR) ? -1 : sp->fts_rfd; 262 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) 287 if (p->fts_info == FTS_D && !ISSET(FTS_NOCHDIR)) { 301 (ISSET(FTS_XDEV) && p->fts_dev != sp->fts_dev)) { 313 if (sp->fts_child && ISSET(FTS_NAMEONLY)) [all...] |
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/ |
ASCIIMathPHP-2.0.class.php | 74 $this->_id = isset($id) ? $id : md5(uniqid(rand(),1)); 211 if (isset($this->_attr_arr[$attr_nm])) { 235 if (isset($this->_child_arr[$id])) { 270 if (isset($this->_child_arr[$id_arr[$idx]])) { 444 if (isset($expr)) { 489 if (isset($attr_arr)) { 537 if (isset($sym['infix']) && $sym['input'] != '/') { 559 $node_3->setName(isset($sym_0['underover']) ? 'munderover' : 'msubsup'); 571 $node_2->setName(isset($sym_0['underover']) ? 'munder' : 'msub'); 605 if (isset($sym['infix']) && $sym['input'] == '/') [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/ |
index.php | 31 $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != 'on') ? 'http' : 121 if (!isset($_GET['openid_mode'])) { 124 if (isset($_GET['login'])) { 143 if (isset($_REQUEST['popup']) && !isset($_SESSION['redirect_to'])) { 147 } else if (isset($_SESSION['redirect_to'])) { 151 } else if (isset($_REQUEST['queryLicenseServer'])) { 155 } else if (isset($_GET['logout'])) { 180 <?php if (!isset($_SESSION['userId'])): ?> 187 <?php if (isset($_SESSION['attributes'])): ? [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
OAuth.php | 242 $scheme = (!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") 266 && isset($request_headers['Content-Type']) 278 if (isset($request_headers['Authorization']) && substr($request_headers['Authorization'], 0, 6) == 'OAuth ') { 308 if ($allow_duplicates && isset($this->parameters[$name])) { 323 return isset($this->parameters[$name]) ? $this->parameters[$name] : null; 344 if (isset($params['oauth_signature'])) { 384 $scheme = (isset($parts['scheme'])) ? $parts['scheme'] : 'http'; 385 $port = (isset($parts['port'])) ? $parts['port'] : (($scheme == 'https') ? '443' : '80'); 386 $host = (isset($parts['host'])) ? $parts['host'] : ''; 387 $path = (isset($parts['path'])) ? $parts['path'] : '' [all...] |
/external/icu4c/i18n/ |
inputext.h | 36 UBool isSet() const;
|
/external/mksh/src/ |
var.c | 99 if ((vq = global(vp->name))->flag & ISSET) 136 tp->flag = DEFINED|ISSET; 233 vp->flag |= ISSET|INTEGER; 241 vp->flag &= ~(ISSET|INTEGER); 254 vp->flag &= ~(ISSET|INTEGER); 331 if (!(vp->flag&ISSET)) 424 vq->flag &= ~(ISSET|ALLOC); 438 vq->flag |= ISSET; 451 vp->flag = (ISSET|INTEGER); 459 vq->flag |= ISSET; [all...] |
/external/webkit/Source/JavaScriptCore/assembler/ |
AbstractMacroAssembler.h | 264 bool isSet() const { return m_label.isSet(); } 288 bool isSet() const { return m_label.isSet(); } 391 bool isSet() const { return m_jmp.isSet(); }
|
/bionic/libc/regex/ |
regexec.c | 61 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) 87 #undef ISSET 108 #define ISSET(v, n) ((v)[n])
|
/external/libvpx/examples/ |
gen_example_doxy.php | 98 $page_id=(isset($argv[1]))?$argv[1]:""; 99 $page_desc=(isset($argv[2]))?$argv[2]:""; 157 if (!isset($asciimath)) $asciimath = new ASCIIMathPHP($symbol_arr);
|
/external/llvm/lib/Support/ |
regexec.c | 63 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) 89 #undef ISSET 110 #define ISSET(v, n) ((v)[n])
|
/ndk/sources/host-tools/ndk-stack/regex/ |
regexec.c | 61 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0) 87 #undef ISSET 108 #define ISSET(v, n) ((v)[n])
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
openid.php | 143 if (isset($url['query'], $parts['query'])) { 229 if (isset($delegate[2])) $this->identity = trim($delegate[2]); 251 if (isset($delegate[1])) $this->identity = $delegate[1]; 315 if (!isset(self::$ax_to_sreg[$required])) continue; 324 if (!isset(self::$ax_to_sreg[$optional])) continue; 449 $this->claimed_id = isset($this->data['openid_claimed_id'])?$this->data['openid_claimed_id']:$this->data['openid_identity']; 456 if (isset($this->data['openid_op_endpoint'])) { 484 if (isset($this->data['openid_ns_ax']) 512 if (!isset($this->data['openid_' . $alias . '_type_' . $key])) { 535 if (!isset($sreg_to_ax[$key])) [all...] |
/external/libvpx/examples/includes/geshi/ |
geshi.php | 930 if (!isset($this->lexic_permissions['KEYWORDS'][$key])) { [all...] |