Searched refs:kNone (Results 1 - 22 of 22) sorted by relevance

/external/v8/src/
H A Ddateparser.cc43 int month = kNone;
44 int day = kNone;
46 if (named_month_ == kNone) {
99 if (hour_offset_ != kNone) {
116 if (sign_ != kNone) {
117 if (hour_ == kNone) hour_ = 0;
118 if (minute_ == kNone) minute_ = 0;
H A Ddateparser.h64 static const int kNone = kMaxInt; member in class:v8::internal::DateParser
311 TimeZoneComposer() : sign_(kNone), hour_(kNone), minute_(kNone) {}
321 return hour_ != kNone && minute_ == kNone && TimeComposer::IsMinute(n);
325 bool IsEmpty() { return hour_ == kNone; }
334 TimeComposer() : index_(0), hour_offset_(kNone) {}
368 DayComposer() : index_(0), named_month_(kNone), is_iso_date_(false) {}
H A Djsregexp.h720 Interval() : from_(kNone), to_(kNone) { }
723 if (that.from_ == kNone)
725 else if (from_ == kNone)
733 bool is_empty() { return from_ == kNone; }
737 static const int kNone = -1; member in class:v8::internal::Interval
H A Ddateparser-inl.h164 tz.SetAbsoluteMinute(kNone);
H A Dpreparser.h175 kNone = 0, enumerator in enum:v8::preparser::PreParser::PropertyType
H A Dhydrogen-instructions.h294 kNone, enumerator in enum:v8::internal::Representation::Kind
302 Representation() : kind_(kNone) { }
304 static Representation None() { return Representation(kNone); }
315 bool IsNone() const { return kind_ == kNone; }
H A Dhydrogen-instructions.cc58 case kNone: return "v";
H A Dapi.cc4977 REGEXP_FLAG_ASSERT_EQ(kNone, NONE);
4985 return v8::RegExp::kNone;
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_unittest.cc12 const int kNone = ACMatchClassification::NONE; member in namespace:__anon1568
51 styles_expected.push_back(ACMatchClassification(0, kNone));
53 styles_expected.push_back(ACMatchClassification(5, kNone));
55 styles_expected.push_back(ACMatchClassification(9, kNone));
90 styles_expected.push_back(ACMatchClassification(5, kNone));
127 styles_expected.push_back(ACMatchClassification(5, kNone));
/external/chromium/base/
H A Dtracked.cc69 static Location kNone("NoFunctionName", "NeedToSetBirthPlace", -1);
70 return kNone;
/external/icu4c/i18n/
H A Dwindtfmt.cpp168 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
185 } else if (fDateStyle != DateFormat::kNone) {
187 } else if (fTimeStyle != DateFormat::kNone) {
204 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
H A Ddatefmt.cpp301 return create(style, kNone, aLocale);
312 if(style != kNone)
316 return create(kNone, (EStyle) (style), aLocale);
326 if(dateStyle != kNone)
364 if(/*((timeStyle!=UDAT_NONE)&&(timeStyle & UDAT_RELATIVE)) || */((dateStyle!=kNone)&&((dateStyle-kDateOffset) & UDAT_RELATIVE))) {
H A Dsmpdtfmt.cpp558 if ((timeStyle != kNone) && (dateStyle != kNone))
643 else if (timeStyle != kNone) {
669 else if (dateStyle != kNone) {
/external/icu4c/i18n/unicode/
H A Ddatefmt.h150 kNone = -1, enumerator in enum:DateFormat::EStyle
198 NONE = kNone,
/external/chromium/net/disk_cache/
H A Dbackend_impl.h29 kNone = 0, enumerator in enum:disk_cache::BackendFlags
H A Dbackend_unittest.cc357 path, false, 0, net::DISK_CACHE, disk_cache::kNone,
1935 store1.path(), false, 0, net::DISK_CACHE, disk_cache::kNone,
1939 store2.path(), false, 0, net::MEDIA_CACHE, disk_cache::kNone,
H A Dbackend_impl.cc303 return BackendImpl::CreateBackend(path, force, max_bytes, type, kNone, thread,
/external/icu4c/samples/ucnv/
H A Dconvsamp.cpp47 static const UChar kNone[] = { 0x0000 }; variable
96 const UChar *uch = kNone,
95 printUChars(const char *name = Ó, const UChar *uch = kNone, int32_t len = -1 ) argument
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-spec-builders.h244 : file_(a_file), line_(a_line), last_clause_(kNone) {}
255 kNone, enumerator in enum:testing::internal::UntypedOnCallSpecBase::Clause
274 // Initially kNone and changes as the statement is parsed.
711 kNone,
/external/chromium/testing/gmock/src/
H A Dgmock-spec-builders.cc81 last_clause_(kNone),
/external/v8/include/
H A Dv8.h1872 kNone = 0, enumerator in enum:v8::RegExp::Flags
/external/v8/test/cctest/
H A Dtest-api.cc15535 v8::Handle<v8::RegExp> re = v8::RegExp::New(v8_str("foo"), v8::RegExp::kNone);
15538 CHECK_EQ(v8::RegExp::kNone, re->GetFlags());
15559 CHECK_EQ(v8::RegExp::kNone, re->GetFlags());
15571 re = v8::RegExp::New(v8_str("foobar"), v8::RegExp::kNone);
15574 CHECK_EQ(v8::RegExp::kNone, re->GetFlags());
15593 re = v8::RegExp::New(v8_str("foo["), v8::RegExp::kNone);

Completed in 633 milliseconds