Searched defs:caseSensitive (Results 1 - 24 of 24) sorted by relevance

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java353 * @param caseSensitive Whether or not matching should be performed
361 boolean caseSensitive) {
386 if (different(caseSensitive, ch, strArr[i])) {
405 if (different(caseSensitive, ch, strArr[strIdxStart])) {
425 if (different(caseSensitive, ch, strArr[strIdxEnd])) {
463 if (different(caseSensitive, ch,
497 boolean caseSensitive, char ch, char other) {
498 return caseSensitive
360 match(String pattern, String str, boolean caseSensitive) argument
496 different( boolean caseSensitive, char ch, char other) argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp92 PassOwnPtr<ScriptRegexp> createSearchRegex(const String& query, bool caseSensitive, bool isRegex) argument
95 return adoptPtr(new ScriptRegexp(regexSource, caseSensitive ? TextCaseSensitive : TextCaseInsensitive));
117 PassRefPtr<TypeBuilder::Array<TypeBuilder::Page::SearchMatch> > searchInTextByLines(const String& text, const String& query, const bool caseSensitive, const bool isRegex) argument
121 OwnPtr<ScriptRegexp> regex = ContentSearchUtils::createSearchRegex(query, caseSensitive, isRegex);
H A DInspectorDebuggerAgent.cpp590 bool caseSensitive = optionalCaseSensitive ? *optionalCaseSensitive : false; local
594 results = ContentSearchUtils::searchInTextByLines(it->value.source, query, caseSensitive, isRegex);
H A DInspectorPageAgent.cpp601 bool caseSensitive = optionalCaseSensitive ? *optionalCaseSensitive : false; local
620 results = ContentSearchUtils::searchInTextByLines(content, query, caseSensitive, isRegex);
/external/chromium_org/third_party/WebKit/public/web/
H A DWebPlugin.h155 virtual bool startFind(const WebString& searchText, bool caseSensitive, int identifier) { return false; } argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSelectorChecker.cpp368 static bool attributeValueMatches(const Attribute* attributeItem, CSSSelector::Match match, const AtomicString& selectorValue, bool caseSensitive) argument
376 if (caseSensitive ? selectorValue != value : !equalIgnoringCase(selectorValue, value))
387 size_t foundPos = value.find(selectorValue, startSearchAt, caseSensitive);
402 if (!value.contains(selectorValue, caseSensitive) || selectorValue.isEmpty())
406 if (!value.startsWith(selectorValue, caseSensitive) || selectorValue.isEmpty())
410 if (!value.endsWith(selectorValue, caseSensitive) || selectorValue.isEmpty())
416 if (!value.startsWith(selectorValue, caseSensitive))
446 bool caseSensitive = !element.document().isHTMLDocument() || HTMLDocument::isCaseSensitiveAttribute(selectorAttr); local
454 if (attributeValueMatches(attributeItem, match, selectorValue, caseSensitive))
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSegmentedString.h381 inline LookAheadResult lookAheadInline(const String& string, bool caseSensitive) argument
385 if (currentSubstring.startsWith(string, caseSensitive))
389 return lookAheadSlowCase(string, caseSensitive);
392 LookAheadResult lookAheadSlowCase(const String& string, bool caseSensitive) argument
401 if (consumedString.startsWith(string, caseSensitive))
/external/chromium_org/third_party/sqlite/src/src/
H A Dfunc.c1437 ** Register the built-in LIKE and GLOB functions. The caseSensitive
1441 void sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive){ argument
1443 if( caseSensitive ){
1454 caseSensitive ? (SQLITE_FUNC_LIKE | SQLITE_FUNC_CASE) : SQLITE_FUNC_LIKE);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMWindow.cpp1069 bool DOMWindow::find(const String& string, bool caseSensitive, bool backwards, bool wrap, bool /*wholeWord*/, bool /*searchInFrames*/, bool /*showDialog*/) const argument
1079 return m_frame->editor().findString(string, !backwards, caseSensitive, wrap, false);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.cpp1461 ALWAYS_INLINE static bool equalInner(const StringImpl* stringImpl, unsigned startOffset, const char* matchString, unsigned matchLength, bool caseSensitive) argument
1467 if (caseSensitive) {
1482 bool StringImpl::startsWith(const char* matchString, unsigned matchLength, bool caseSensitive) const
1487 return equalInner(this, 0, matchString, matchLength, caseSensitive);
1490 bool StringImpl::endsWith(StringImpl* matchString, bool caseSensitive) argument
1495 return (caseSensitive ? find(matchString, start) : findIgnoringCase(matchString, start)) == start;
1505 bool StringImpl::endsWith(const char* matchString, unsigned matchLength, bool caseSensitive) const
1511 return equalInner(this, startOffset, matchString, matchLength, caseSensitive);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c83347 sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c87588 sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c87624 sqlite3RegisterLikeFunctions(sqlite3 *db, int caseSensitive) argument
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/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/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1138 milliseconds