Searched refs:name2 (Results 51 - 75 of 128) sorted by relevance

123456

/external/pdfium/core/src/fpdfdoc/
H A Ddoc_form.cpp718 int CPDF_InterForm::CompareFieldName(const CFX_ByteString& name1, const CFX_ByteString& name2) argument
720 FX_LPCSTR ptr1 = name1, ptr2 = name2;
721 if (name1.GetLength() != name2.GetLength()) {
729 if (i == name2.GetLength()) {
734 return name1 == name2 ? 1 : 0;
737 int CPDF_InterForm::CompareFieldName(const CFX_WideString& name1, const CFX_WideString& name2) argument
739 FX_LPCWSTR ptr1 = name1, ptr2 = name2;
740 if (name1.GetLength() != name2.GetLength()) {
748 if (i == name2.GetLength()) {
753 return name1 == name2
[all...]
/external/chromium_org/ash/system/chromeos/
H A Dtray_display_unittest.cc31 const base::string16& name2,
42 if (!name2.empty()) {
45 name2, base::UTF8ToUTF16(data2)));
28 GetTooltipText(const base::string16& headline, const base::string16& name1, const std::string& data1, const base::string16& name2, const std::string& data2) argument
/external/javassist/src/main/javassist/bytecode/
H A DDescriptor.java220 String name2 = (String)map.get(name);
221 if (name2 != null) {
224 newdesc.append(name2);
H A DSignatureAttribute.java133 String name2 = (String)map.get(name);
134 if (name2 != null) {
137 newdesc.append(name2);
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_profile_unittest.cc1289 NameParts name2("Marion", "", "Mitchell Morrison");
1291 std::vector<NameParts> additional_names(1, name2);
1294 expected_result.push_back(name2);
1304 NameParts name2("Juninho", "", "Pernambucano");
1311 starting_names.push_back(name2);
1315 expected_result.push_back(name2);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dudatatst.c803 const char* name2="test"; local
837 result=udata_open(testPath, type, name2, &status);
839 log_data_err("FAIL: udata_open() failed for path=%s name2=%s, type=%s, \n errorcode=%s\n", testPath, name2, type, myErrorName(status));
870 const char* name2="test"; local
895 result=udata_openChoice(testPath, type, name2, isAcceptable3, NULL, &status);
897 log_data_err("FAIL: udata_openChoice() failed for path=%s name=%s, type=%s, \n errorcode=%s\n", testPath, name2, type, myErrorName(status));
H A Dcustrtst.c1703 char name2[40]; local
1723 strcpy(name2, n2);
1743 compareIterNoIndexes(&iter1, name1, iter, name2, middle);
1744 ++name2[strlen(name2)-1];
/external/icu/icu4c/source/test/cintltst/
H A Dudatatst.c803 const char* name2="test"; local
837 result=udata_open(testPath, type, name2, &status);
839 log_data_err("FAIL: udata_open() failed for path=%s name2=%s, type=%s, \n errorcode=%s\n", testPath, name2, type, myErrorName(status));
870 const char* name2="test"; local
895 result=udata_openChoice(testPath, type, name2, isAcceptable3, NULL, &status);
897 log_data_err("FAIL: udata_openChoice() failed for path=%s name=%s, type=%s, \n errorcode=%s\n", testPath, name2, type, myErrorName(status));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStyle.java341 public boolean areEqual(X500Name name1, X500Name name2) argument
344 RDN[] rdns2 = name2.getRDNs();
H A DRFC4519Style.java230 public boolean areEqual(X500Name name1, X500Name name2) argument
233 RDN[] rdns2 = name2.getRDNs();
/external/elfutils/0.153/src/
H A Delfcmp.c364 const char *name2 = elf_strptr (elf2, shdr2->sh_link, local
366 if (unlikely (strcmp (name1, name2) != 0
440 const char *name2 = data2->d_buf + name_offset; local
444 || memcmp (name1, name2, note1.n_namesz))
/external/qemu/target-mips/
H A Dop_helper.c2894 #define FLOAT_TERNOP(name1, name2) \
2895 uint64_t helper_float_ ## name1 ## name2 ## _d(CPUMIPSState *env, \
2900 return float64_ ## name2 (fdt0, fdt2, &env->active_fpu.fp_status); \
2903 uint32_t helper_float_ ## name1 ## name2 ## _s(CPUMIPSState *env, \
2908 return float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2911 uint64_t helper_float_ ## name1 ## name2 ## _ps(CPUMIPSState *env, \
2924 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2925 fsth2 = float32_ ## name2 (fsth0, fsth2, &env->active_fpu.fp_status); \
2934 #define FLOAT_NTERNOP(name1, name2) \
2935 uint64_t helper_float_n ## name1 ## name2 ## _
[all...]
/external/valgrind/main/coregrind/
H A Dm_redir.c1637 HChar name2[64] = ""; local
1638 name1[0] = name2[0] = 0;
1641 ok = VG_(get_fnname_w_offset)(act->to_addr, name2, 64);
1642 if (!ok) VG_(strcpy)(name2, "???");
1649 (ULong)act->to_addr, name2 );
H A Dm_translate.c1390 HChar name2[512] = ""; local
1391 name1[0] = name2[0] = 0;
1394 ok = VG_(get_fnname_w_offset)(addr, name2, 512);
1395 if (!ok) VG_(strcpy)(name2, "???");
1399 addr, name2 );
/external/chromium_org/chrome/service/cloud_print/
H A Dcloud_print_connector.cc652 const std::string& name2) const {
653 return (0 == base::strcasecmp(name1.c_str(), name2.c_str()));
/external/chromium_org/third_party/icu/source/common/unicode/
H A Ducnv.h304 * @param name2 a converter name or alias, zero-terminated
306 * lexically precedes name2, or a positive value if the name1
307 * lexically follows name2.
311 ucnv_compareNames(const char *name1, const char *name2);
/external/icu/icu4c/source/common/unicode/
H A Ducnv.h304 * @param name2 a converter name or alias, zero-terminated
306 * lexically precedes name2, or a positive value if the name1
307 * lexically follows name2.
311 ucnv_compareNames(const char *name1, const char *name2);
/external/yaffs2/yaffs2/direct/
H A Ddtest.c880 char name2[100]; local
1816 int make_file2(const char *name1, const char *name2,int syz) argument
1827 if(name2)
1828 h2 = yaffs_open(name2,O_CREAT | O_TRUNC | O_RDWR, S_IREAD | S_IWRITE);
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_io.cpp467 * @param name2 a converter name or alias, zero-terminated
469 * lexically precedes name2, or a positive value if the name1
470 * lexically follows name2.
475 ucnv_compareNames(const char *name1, const char *name2) { argument
506 while ((c2 = *name2++) != 0) {
514 nextType = GET_CHAR_TYPE(*name2);
H A Dusprep.cpp120 UHashTok name1, name2, path1, path2; local
122 name2.pointer = b2->name;
125 return ((UBool)(uhash_compareChars(name1, name2) &
/external/icu/icu4c/source/common/
H A Ducnv_io.cpp467 * @param name2 a converter name or alias, zero-terminated
469 * lexically precedes name2, or a positive value if the name1
470 * lexically follows name2.
475 ucnv_compareNames(const char *name1, const char *name2) { argument
506 while ((c2 = *name2++) != 0) {
514 nextType = GET_CHAR_TYPE(*name2);
H A Dusprep.cpp120 UHashTok name1, name2, path1, path2; local
122 name2.pointer = b2->name;
125 return ((UBool)(uhash_compareChars(name1, name2) &
/external/icu/icu4c/source/tools/pkgdata/
H A Dpkgdata.cpp978 char name2[SMALL_BUFFER_MAX_SIZE]; /* file name to symlink */ local
1004 sprintf(name2, "%s", libFileNames[LIB_FILE_CYGWIN_VERSION]);
1039 sprintf(name2, "%s", libFileNames[LIB_FILE_VERSION]);
1048 sprintf(name2, "%s", libFileNames[LIB_FILE_VERSION]);
1056 name2,
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java1542 String name2 = resolveClassName(name);
1543 if (!name.equals(name2)) {
1548 name2 = MemberResolver.jvmToJavaName(name2);
1553 sbuf.append('L').append(name2).append(';');
/external/chromium_org/third_party/icu/source/tools/pkgdata/
H A Dpkgdata.cpp969 char name2[SMALL_BUFFER_MAX_SIZE]; /* file name to symlink */ local
995 sprintf(name2, "%s", libFileNames[LIB_FILE_CYGWIN_VERSION]);
1004 sprintf(name2, "%s", libFileNames[LIB_FILE_VERSION]);
1012 name2,

Completed in 755 milliseconds

123456