HomeSort by relevance Sort by last modified time
    Searched defs:StrChr (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 58 /// EmitStrChr - Emit a call to the strchr function to the builder, for the
63 if (!TLI->has(LibFunc::strchr))
73 Constant *StrChr = M->getOrInsertFunction("strchr",
78 StrChr, {CastToCStr(Ptr, B), ConstantInt::get(I32Ty, C)}, "strchr");
79 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
  /external/v8/src/base/platform/
platform-posix.cc 527 char* OS::StrChr(char* str, int c) {
528 return strchr(str, c);
692 char* period_pos = strchr(buffer, '.');
platform-win32.cc 670 char* OS::StrChr(char* str, int c) {
671 return const_cast<char*>(strchr(str, c));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 142 #define StrChr __MINGW_NAME_AW(StrChr)
    [all...]

Completed in 698 milliseconds