OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:StrChr
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp
91
/// EmitStrChr - Emit a call to the
strchr
function to the builder, for the
96
if (!TLI->has(LibFunc::
strchr
))
107
Constant *
StrChr
= M->getOrInsertFunction("
strchr
",
111
CallInst *CI = B.CreateCall2(
StrChr
, CastToCStr(Ptr, B),
112
ConstantInt::get(I32Ty, C), "
strchr
");
113
if (const Function *F = dyn_cast<Function>(
StrChr
->stripPointerCasts()))
SimplifyLibCalls.cpp
446
// Verify the "
strchr
" function prototype.
482
if (I == StringRef::npos) // Didn't find the char.
strchr
returns null.
485
//
strchr
(s+n,c) -> gep(s+n+i,c)
486
return B.CreateGEP(SrcStr, B.getInt64(I), "
strchr
");
509
// strrchr(s, 0) ->
strchr
(s, 0)
783
// strpbrk(s, "a") ->
strchr
(s, 'a')
[
all
...]
/external/v8/src/
platform-posix.cc
343
char* OS::
StrChr
(char* str, int c) {
344
return
strchr
(str, c);
platform-win32.cc
805
char* OS::
StrChr
(char* str, int c) {
806
return const_cast<char*>(
strchr
(str, c));
[
all
...]
/external/chromium_org/v8/src/
platform-posix.cc
537
char* OS::
StrChr
(char* str, int c) {
538
return
strchr
(str, c);
697
char* period_pos =
strchr
(buffer, '.');
platform-win32.cc
787
char* OS::
StrChr
(char* str, int c) {
788
return const_cast<char*>(
strchr
(str, c));
[
all
...]
Completed in 283 milliseconds