Home
last modified time | relevance | path

Searched refs:Char2 (Results 1 – 10 of 10) sorted by relevance

/netbsd/sys/external/bsd/acpica/dist/tools/acpibin/
H A Dabcompare.c361 UINT8 Char2; in AbCompareAmlFiles() local
440 Actual2 = fread (&Char2, 1, 1, File2); in AbCompareAmlFiles()
445 if (Char1 != Char2) in AbCompareAmlFiles()
448 Offset, Char1, Char2); in AbCompareAmlFiles()
459 Actual2 = fread (&Char2, 1, 1, File2); in AbCompareAmlFiles()
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/
H A Dstring.d948 ptrdiff_t indexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
951 if (isSomeChar!Char1 && isSomeChar!Char2)
962 ptrdiff_t indexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
965 if (isSomeChar!Char1 && isSomeChar!Char2)
1366 ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
1442 ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
1636 if (isSomeChar!Char && isSomeChar!Char2)
1766 ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
1768 if (isSomeChar!Char && isSomeChar!Char2)
1774 ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
[all …]
H A Duni.d5771 @safe pure int comparePropertyName(Char1, Char2)(const(Char1)[] a, const(Char2)[] b)
5772 if (is(Char1 : dchar) && is(Char2 : dchar))
5788 bool propertyNameLess(Char1, Char2)(const(Char1)[] a, const(Char2)[] b) @safe pure
5789 if (is(Char1 : dchar) && is(Char2 : dchar))
H A Dconv.d1285 foreach (Char2; AllChars)
1288 assert(to!(Char2[])(c)[0] == c);
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dstring.d765 ptrdiff_t indexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
768 if (isSomeChar!Char1 && isSomeChar!Char2)
1155 ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
1235 ptrdiff_t lastIndexOf(Char1, Char2)(const(Char1)[] s, const(Char2)[] sub,
1415 if (isSomeChar!Char && isSomeChar!Char2)
1545 ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
1547 if (isSomeChar!Char && isSomeChar!Char2)
1553 ptrdiff_t indexOfAny(Char,Char2)(const(Char)[] haystack, const(Char2)[] needles,
1555 if (isSomeChar!Char && isSomeChar!Char2)
1715 if (isSomeChar!Char && isSomeChar!Char2)
[all …]
H A Duni.d5771 @safe pure int comparePropertyName(Char1, Char2)(const(Char1)[] a, const(Char2)[] b)
5772 if (is(Char1 : dchar) && is(Char2 : dchar))
5788 bool propertyNameLess(Char1, Char2)(const(Char1)[] a, const(Char2)[] b) @safe pure
5789 if (is(Char1 : dchar) && is(Char2 : dchar))
H A Dconv.d1156 foreach (Char2; AllChars)
1159 assert(to!(Char2[])(c)[0] == c);
/netbsd/external/apache2/llvm/dist/clang/lib/Lex/
H A DLexer.cpp3372 char Char2 = getCharAndSize(CurPtr + SizeTmp, SizeTmp2); in LexTokenInternal() local
3375 if (Char2 == '"') in LexTokenInternal()
3380 if (Char2 == '\'' && LangOpts.CPlusPlus17) in LexTokenInternal()
3386 if (Char2 == 'R' && LangOpts.CPlusPlus11) { in LexTokenInternal()
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/uni/
H A Dpackage.d5774 @safe pure int comparePropertyName(Char1, Char2)(const(Char1)[] a, const(Char2)[] b)
5775 if (is(Char1 : dchar) && is(Char2 : dchar))
5791 bool propertyNameLess(Char1, Char2)(const(Char1)[] a, const(Char2)[] b) @safe pure
5792 if (is(Char1 : dchar) && is(Char2 : dchar))
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp11929 const auto &ReadCurElems = [&](APValue &Char1, APValue &Char2) { in VisitBuiltinCallExpr() argument
11931 handleLValueToRValueConversion(Info, E, CharTy2, String2, Char2) && in VisitBuiltinCallExpr()
11932 Char1.isInt() && Char2.isInt(); in VisitBuiltinCallExpr()
11953 APValue Char1, Char2; in VisitBuiltinCallExpr() local
11954 if (!ReadCurElems(Char1, Char2)) in VisitBuiltinCallExpr()
11956 if (Char1.getInt().ne(Char2.getInt())) { in VisitBuiltinCallExpr()
11958 return Success(Char1.getInt() < Char2.getInt() ? -1 : 1, E); in VisitBuiltinCallExpr()
11960 return Success(Char1.getInt().ult(Char2.getInt()) ? -1 : 1, E); in VisitBuiltinCallExpr()
11964 assert(!(StopAtNull && !Char2.getInt())); in VisitBuiltinCallExpr()