Home
last modified time | relevance | path

Searched refs:Needle (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DStringRef.cpp134 const char *Needle = Str.data(); in find() local
141 const char *Ptr = (const char *)::memchr(Start, Needle[0], Size); in find()
150 if (std::memcmp(Start, Needle, N) == 0) in find()
165 if (LLVM_UNLIKELY(Last == (uint8_t)Needle[N - 1])) in find()
166 if (std::memcmp(Start, Needle, N - 1) == 0) in find()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp729 const DeclRefExpr *Needle; member in __anondf82a8a60711::ContainsReference
734 ContainsReference(ASTContext &Context, const DeclRefExpr *Needle) in ContainsReference() argument
735 : Inherited(Context), FoundReference(false), Needle(Needle) {} in ContainsReference()
746 if (E == Needle) in VisitDeclRefExpr()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/algorithm/
H A Dsearching.d4954 enum bool canTestStartsWith(Needle) = is(typeof( in canTestStartsWith()
4955 (ref Haystack h, ref Needle n) => startsWith!pred(h, n))); in canTestStartsWith()