Searched defs:substring (Results 26 - 50 of 53) sorted by relevance

123

/external/skia/include/core/
H A DSkString.h33 static int SkStrFind(const char string[], const char substring[]) { argument
34 const char *first = strstr(string, substring);
39 static bool SkStrContains(const char string[], const char substring[]) { argument
41 SkASSERT(substring);
42 return (-1 != SkStrFind(string, substring));
126 bool contains(const char substring[]) const {
127 return SkStrContains(fRec->data(), substring);
132 int find(const char substring[]) const {
133 return SkStrFind(fRec->data(), substring);
/external/robolectric/lib/main/
H A Dhamcrest-core-1.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ LICENSE ...
H A Djunit-dep-4.8.2.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java1012 * Expects a string that contains the given substring as a parameter to a mocked method.
1014 * the provided {@code substring}.
1022 * {@code AndroidMock.expect(mock.getString(AndroidMock.substring("hi"))).andReturn("hello");}
1024 * @param substring the substring which any incoming parameter to the mocked method must contain.
1027 public static String contains(String substring) { argument
1028 return EasyMock.contains(substring);
2145 * Expects a {@code String} that contains a substring that matches the given regular
2153 * @param regex the regular expression which must match some substring of the incoming parameter
2164 * matches the regular expression against any substring o
[all...]
/external/grub/stage2/
H A Dchar_io.c1110 substring (const char *s1, const char *s2) function
1120 /* S1 is a substring of S2. */
1124 /* S1 isn't a substring. */
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp250 String String::substring(unsigned pos, unsigned len) const function in class:WTF::String
254 return m_impl->substring(pos, len);
610 result.append(substring(startPos, endPos - startPos));
614 result.append(substring(startPos));
630 result.append(substring(startPos, endPos - startPos));
634 result.append(substring(startPos));
H A DStringImpl.cpp170 PassRefPtr<StringImpl> StringImpl::substring(unsigned start, unsigned length) function in class:WTF::StringImpl
/external/icu4c/common/
H A Dustring.cpp35 * Test if a substring match inside a string is at code point boundaries.
73 /* the substring consists of a single, non-surrogate BMP code point */
79 /* found first substring UChar, compare rest */
119 /* the substring consists of a single, non-surrogate BMP code point */
127 /* found first substring UChar, compare rest */
159 /* the substring must start before preLimit */
165 /* found first substring UChar, compare rest */
191 u_strstr(const UChar *s, const UChar *substring) { argument
192 return u_strFindFirst(s, -1, substring, -1);
319 /* the substring consist
364 u_strrstr(const UChar *s, const UChar *substring) argument
[all...]
/external/libxml2/
H A Dtriostr.c233 Determine if a string contains a substring.
236 @param substring String to be found.
241 TRIO_ARGS2((string, substring),
243 TRIO_CONST char *substring)
246 assert(substring);
248 return (0 != strstr(string, substring));
853 Search for a substring in a string.
856 @param substring String to be found.
857 @return Pointer to first occurrence of @p substring in @p string, or NULL
862 TRIO_ARGS2((string, substring),
240 trio_contains(string, substring), TRIO_CONST char *string, TRIO_CONST char *substring argument
861 trio_substring(string, substring), TRIO_CONST char *string, TRIO_CONST char *substring argument
885 trio_substring_max(string, max, substring), TRIO_CONST char *string, size_t max, TRIO_CONST char *substring argument
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-matchers.h940 // Implements the polymorphic HasSubstr(substring) matcher, which
948 explicit HasSubstrMatcher(const StringType& substring) argument
949 : substring_(substring) {}
951 // These overloaded methods allow HasSubstr(substring) to be used as a
953 // iff s contains substring_ as a substring.
966 *os << "has substring ";
971 *os << "has no substring ";
981 // Implements the polymorphic StartsWith(substring) matcher, which
1022 // Implements the polymorphic EndsWith(substring) matcher, which
2779 // that contains the given substring
2781 HasSubstr(const internal::string& substring) argument
2856 HasSubstr(const internal::wstring& substring) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... .internal.variables.StringSubstitutionEngine$VariableReference tos String substring String value org.eclipse.core.internal. ...
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/ceres-solver/internal/ceres/gmock/
H A Dgmock.h505 // words. Each maximum substring of the form [A-Za-z][a-z]*|\d+ is
5552 // Implements the polymorphic HasSubstr(substring) matcher, which
5560 explicit HasSubstrMatcher(const StringType& substring) argument
5561 : substring_(substring) {}
5563 // These overloaded methods allow HasSubstr(substring) to be used as a
5565 // iff s contains substring_ as a substring.
5578 *os << "has substring ";
5583 *os << "has no substring ";
5593 // Implements the polymorphic StartsWith(substring) matcher, which
5634 // Implements the polymorphic EndsWith(substring) matche
7393 HasSubstr(const internal::string& substring) argument
7468 HasSubstr(const internal::wstring& substring) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/smack/asmack-master/lib/
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 1896 milliseconds

123