match 2510 include/v8.h int match(Handle<Value> value);
match 50 src/hashmap.h TemplateHashMapImpl(MatchFun match,
match 116 src/hashmap.h MatchFun match, uint32_t initial_capacity, AllocationPolicy allocator) {
match 117 src/hashmap.h match_ = match;
match 343 src/hashmap.h typename TemplateHashMapImpl<AllocationPolicy>::MatchFun match,
match 346 src/hashmap.h match,
match 3131 src/runtime.cc Handle<Object> match = RegExpImpl::Exec(regexp_handle,
match 3135 src/runtime.cc if (match.is_null()) {
match 3138 src/runtime.cc if (match->IsNull()) {
match 3232 src/runtime.cc match = RegExpImpl::Exec(regexp_handle,
match 3236 src/runtime.cc if (match.is_null()) {
match 3239 src/runtime.cc matched = !match->IsNull();
match 3288 src/runtime.cc Handle<Object> match = RegExpImpl::Exec(regexp_handle,
match 3292 src/runtime.cc if (match.is_null()) return Failure::Exception();
match 3293 src/runtime.cc if (match->IsNull()) return *subject_handle;
match 3362 src/runtime.cc match = RegExpImpl::Exec(regexp_handle,
match 3366 src/runtime.cc if (match.is_null()) return Failure::Exception();
match 3367 src/runtime.cc if (match->IsNull()) break;
match 3780 src/runtime.cc Handle<Object> match = RegExpImpl::Exec(regexp, subject, 0, regexp_info);
match 3782 src/runtime.cc if (match.is_null()) {
match 3785 src/runtime.cc if (match->IsNull()) {
match 3805 src/runtime.cc match = RegExpImpl::Exec(regexp, subject, end, regexp_info);
match 3806 src/runtime.cc if (match.is_null()) {
match 3809 src/runtime.cc } while (!match->IsNull());
match 4035 src/runtime.cc Handle<String> match;
match 4037 src/runtime.cc match = isolate->factory()->NewProperSubString(subject,
match 4041 src/runtime.cc match = isolate->factory()->NewSubString(subject,
match 4045 src/runtime.cc elements->set(0, *match);
match 6076 test/cctest/test-api.cc CHECK_EQ(0, type_switch->match(obj0));
match 6077 test/cctest/test-api.cc CHECK_EQ(1, type_switch->match(obj1));
match 6078 test/cctest/test-api.cc CHECK_EQ(2, type_switch->match(obj2));
match 6079 test/cctest/test-api.cc CHECK_EQ(3, type_switch->match(obj3));
match 6080 test/cctest/test-api.cc CHECK_EQ(3, type_switch->match(obj3));
match 6081 test/cctest/test-api.cc CHECK_EQ(2, type_switch->match(obj2));
match 6082 test/cctest/test-api.cc CHECK_EQ(1, type_switch->match(obj1));
match 6083 test/cctest/test-api.cc CHECK_EQ(0, type_switch->match(obj0));