HomeSort by relevance Sort by last modified time
    Searched refs:needle (Results 151 - 175 of 195) sorted by null

1 2 3 4 5 67 8

  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/
string.h 65 extern char* strcasestr(const char *haystack, const char *needle) __purefunc;
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/
string.h 65 extern char* strcasestr(const char *haystack, const char *needle) __purefunc;
  /external/bison/darwin-lib/
wchar.h     [all...]
  /external/bison/linux-lib/
wchar.h     [all...]
  /external/libsepol/src/
conditional.c 169 /* Find a conditional (the needle) within a list of existing ones (the
175 cond_node_t * needle, cond_node_t * haystack,
179 if (cond_expr_equal(needle, haystack)) {
187 return cond_node_create(p, needle);
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 433 char *SDL_strstr(const char *haystack, const char *needle)
435 size_t length = SDL_strlen(needle);
437 if ( SDL_strncmp(haystack, needle, length) == 0 ) {
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_local_predictor.cc 277 bool StringContainsIgnoringCase(string haystack, string needle) {
279 std::transform(needle.begin(), needle.end(), needle.begin(), ::tolower);
280 return haystack.find(needle) != string::npos;
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 312 private static <T, T2> void assertArrayContains(T needle, T2 array) {
322 if (needle.equals(actualElement)) {
328 "could not find element in array (needle %s). "
330 needle,
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_stdinc.h 455 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
Visualization5RS.java 185 mTextures[4] = Allocation.createFromBitmapResource(mRS, mResources, R.drawable.needle,
342 // There are several forces working on the needle: a force applied by the
348 // be induced by the movement of the needle.
349 // The force from the spring is proportional to the position of the needle.
350 // The friction force is a function of the speed of the needle, but so is
351 // the current induced by the movement of the needle, so we can combine
356 // of the needle more realistic
358 // mNeedleSpeed * 3 is for the movement of the needle, which induces an opposite current
360 // mNeedlePos + mSpringForceAtOrigin is for the force of the spring pushing the needle back
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 455 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 455 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_stdinc.h 455 extern DECLSPEC char * SDLCALL SDL_strstr(const char *haystack, const char *needle);
  /external/chromium_org/third_party/webrtc/base/
httpcommon.cc 43 bool find_string(size_t& index, const std::string& needle,
46 if (_stricmp(needle.c_str(), haystack[index]) == 0) {
  /frameworks/av/camera/tests/
ProCameraTests.cpp 445 static bool ExistsItem(T needle, T* array, size_t count) {
451 if (array[i] == needle) {
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 807 /* return pointer to location of substring 'needle' in 'haystack' */
809 bcmstrstr(const char *haystack, const char *needle)
814 if ((haystack == NULL) || (needle == NULL))
817 nlen = strlen(needle);
821 if (memcmp(needle, &haystack[i], nlen) == 0)
    [all...]
  /external/chromium_org/third_party/libxml/src/
xpath.c 8905 xmlXPathObjectPtr hay, needle; local
8939 xmlXPathObjectPtr hay, needle; local
    [all...]
  /external/libxml2/
xpath.c 9030 xmlXPathObjectPtr hay, needle; local
9064 xmlXPathObjectPtr hay, needle; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 362 extern char *bcmstrstr(const char *haystack, const char *needle);
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /external/chromium_org/v8/src/
jsregexp.cc 283 String* needle = String::cast(regexp->DataAt(JSRegExp::kAtomPatternIndex)); local
284 int needle_len = needle->length();
285 DCHECK(needle->IsFlat());
293 String::FlatContent needle_content = needle->GetFlatContent();
    [all...]
string.js 187 // needle is a string rather than a regexp. In this case we can't update
  /frameworks/base/tools/aapt/
ResourceTable.cpp 620 * Returns true if needle is one of the elements in the comma-separated list
623 bool isInProductList(const String16& needle, const String16& haystack) {
624 const char16_t *needle2 = needle.string();
626 size_t needlesize = needle.size();
    [all...]

Completed in 1009 milliseconds

1 2 3 4 5 67 8