Home | History | Annotate | Download | only in cctest

Lines Matching refs:cd

7993   // "ab" + lead surrogate + "cd" + trail surrogate + "ef"
8099 CHECK_EQ(0, strcmp(utf8buf, "ab\355\240\200cd\355\260\200ef"));
8109 CHECK_EQ(0, strcmp(utf8buf, "ab\357\277\275cd\357\277\275ef"));
14719 const v8::ScriptCompiler::CachedData* cd = source.GetCachedData();
14720 i::byte* serialized_data = i::NewArray<i::byte>(cd->length);
14721 i::MemCopy(serialized_data, cd->data, cd->length);
14724 i::ScriptData* deserialized = new i::ScriptData(serialized_data, cd->length);
14727 CHECK_EQ(cd->length, deserialized->length());
14728 CHECK_EQ(0, memcmp(cd->data, deserialized->data(), cd->length));