OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tolowercase
(Results
76 - 100
of
776
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectory.java
142
longNameIndex.put(name.
toLowerCase
(), entry);
207
longNameIndex.put(name.
toLowerCase
(), e);
228
name = name.trim().
toLowerCase
();
276
longNameIndex.put(current.getName().
toLowerCase
(), current);
380
final String lowerName = entry.getName().
toLowerCase
();
408
this.longNameIndex.put(entry.getName().
toLowerCase
(), entry);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FileCounter.java
74
index = names[i].
toLowerCase
().indexOf(types.nextToken().
toLowerCase
());
/external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js
15
node.nodeName.
toLowerCase
());
56
st = node.nodeName.
toLowerCase
();
/external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegetbaseuri02.js
120
assertEquals("baseURISameAsDocURI","http://www.example.com/sample.xml".
toLowerCase
(),baseURI.
toLowerCase
());
/frameworks/base/core/java/com/android/internal/util/
CharSequences.java
124
if ((result = Character.
toLowerCase
(me.charAt(myPos++))
125
- Character.
toLowerCase
(another.charAt(anotherPos++))) != 0) {
/libcore/luni/src/test/java/libcore/java/lang/
OldCharacterTest.java
139
assertEquals("Failed to change case", 't', Character.
toLowerCase
('t'));
140
assertEquals("Failed to change case", '1', Character.
toLowerCase
('1'));
StringTest.java
247
assertEquals(LATIN_SMALL_I, LATIN_SMALL_I.
toLowerCase
(trTR));
248
assertEquals(LATIN_SMALL_I, LATIN_CAPITAL_I_WITH_DOT_ABOVE.
toLowerCase
(trTR));
249
assertEquals(LATIN_SMALL_DOTLESS_I, LATIN_SMALL_DOTLESS_I.
toLowerCase
(trTR));
256
assertEquals(LATIN_SMALL_DOTLESS_I, LATIN_CAPITAL_I.
toLowerCase
(trTR));
265
assertEquals(LATIN_SMALL_I, LATIN_SMALL_I.
toLowerCase
(enUs));
266
assertEquals(LATIN_SMALL_I, LATIN_CAPITAL_I.
toLowerCase
(enUs));
267
assertEquals(LATIN_SMALL_DOTLESS_I, LATIN_SMALL_DOTLESS_I.
toLowerCase
(enUs));
272
assertEquals(LATIN_SMALL_I + COMBINING_DOT_ABOVE, LATIN_CAPITAL_I_WITH_DOT_ABOVE.
toLowerCase
(enUs));
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
AddressList.java
125
if (line.length() == 0 || line.
toLowerCase
().equals("exit") || line.
toLowerCase
().equals("quit")) {
/external/apache-http/src/org/apache/http/impl/cookie/
RFC2965DomainAttributeHandler.java
72
domain = domain.
toLowerCase
(Locale.ENGLISH);
117
String host = origin.getHost().
toLowerCase
(Locale.ENGLISH);
122
String cookieDomain = cookie.getDomain().
toLowerCase
(Locale.ENGLISH);
181
String host = origin.getHost().
toLowerCase
(Locale.ENGLISH);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java
112
ASN1ObjectIdentifier oid = (ASN1ObjectIdentifier)lookUp.get(Strings.
toLowerCase
(name));
126
str = Strings.
toLowerCase
(str);
278
String value = Strings.
toLowerCase
(s.trim());
286
value = Strings.
toLowerCase
(((ASN1String)obj).getString().trim());
/external/proguard/src/proguard/gui/
ExtensionFileFilter.java
66
String fileName = file.getName().
toLowerCase
();
/frameworks/base/core/java/android/net/
NetworkConfig.java
66
name = fragments[0].trim().
toLowerCase
();
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LayoutTestsAutoRunner.java
62
this.mRebaseline = (r != null && r.
toLowerCase
().equals("true"));
FsUtils.java
87
if ((s.
toLowerCase
().endsWith(".html")
88
|| s.
toLowerCase
().endsWith(".xml")
89
|| s.
toLowerCase
().endsWith(".xhtml"))
/external/apache-http/src/org/apache/http/auth/
AuthSchemeRegistry.java
84
registeredSchemes.put(name.
toLowerCase
(Locale.ENGLISH), factory);
97
registeredSchemes.remove(name.
toLowerCase
(Locale.ENGLISH));
117
AuthSchemeFactory factory = registeredSchemes.get(name.
toLowerCase
(Locale.ENGLISH));
/external/apache-http/src/org/apache/http/cookie/
CookieSpecRegistry.java
79
registeredSpecs.put(name.
toLowerCase
(Locale.ENGLISH), factory);
91
registeredSpecs.remove(id.
toLowerCase
(Locale.ENGLISH));
111
CookieSpecFactory factory = registeredSpecs.get(name.
toLowerCase
(Locale.ENGLISH));
/external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js
81
if (filter && item.name.
toLowerCase
().search(filter) < 0) {
116
return compare(app1.name.
toLowerCase
(), app2.name.
toLowerCase
());
/external/nist-sip/java/gov/nist/javax/sip/header/
NameMap.java
47
headerName.
toLowerCase
(),
52
String className = (String) nameMap.get(headerName.
toLowerCase
());
74
nameMap.put(headerName.
toLowerCase
(), className);
/libcore/luni/src/main/java/java/lang/
CaseMapper.java
42
* Implements String.
toLowerCase
. We need 's' so that we can return the original String instance
46
public static String
toLowerCase
(Locale locale, String s, char[] value, int offset, int count) {
50
return ICU.
toLowerCase
(s, locale.toString());
60
return ICU.
toLowerCase
(s, locale.toString());
64
newCh = Character.
toLowerCase
(ch);
/libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataNotSupportedTest.java
149
DatabaseCreator.TEST_TABLE1.
toLowerCase
(), userTab.getString(
150
"TABLE_NAME").
toLowerCase
());
164
DatabaseCreator.TEST_TABLE1.
toLowerCase
(), userTab.getString(
165
"TABLE_NAME").
toLowerCase
());
281
"INDEX_NAME").
toLowerCase
());
288
"ASC_OR_DESC").
toLowerCase
());
323
.getString("TABLE_CAT").
toLowerCase
());
327
.getString("TABLE_NAME").
toLowerCase
());
329
.
toLowerCase
());
331
+ Support_SQL.sqlHost, rs.getString("GRANTOR").
toLowerCase
());
[
all
...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.11-3.js
24
ECMA Section: 15.5.4.11 String.prototype.
toLowerCase
()
35
Note that the
toLowerCase
function is intentionally generic; it does not require
46
var TITLE = "String.prototype.
toLowerCase
()";
62
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()",
64
eval("var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()") );
67
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
().charCodeAt(0)",
69
eval("var s = new String( String.fromCharCode(i) ); s.
toLowerCase
().charCodeAt(0)") );
15.5.4.11-4.js
24
ECMA Section: 15.5.4.11 String.prototype.
toLowerCase
()
35
Note that the
toLowerCase
function is intentionally generic; it does not require
46
var TITLE = "String.prototype.
toLowerCase
()";
64
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()",
66
eval("var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()") );
69
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
().charCodeAt(0)",
71
eval("var s = new String( String.fromCharCode(i) ); s.
toLowerCase
().charCodeAt(0)") );
15.5.4.11-6.js
24
ECMA Section: 15.5.4.11 String.prototype.
toLowerCase
()
35
Note that the
toLowerCase
function is intentionally generic; it does not require
46
var TITLE = "String.prototype.
toLowerCase
()";
64
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()",
66
eval("var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
()") );
69
"var s = new String( String.fromCharCode("+i+") ); s.
toLowerCase
().charCodeAt(0)",
71
eval("var s = new String( String.fromCharCode(i) ); s.
toLowerCase
().charCodeAt(0)") );
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
String2Test.java
774
* @tests java.lang.String#
toLowerCase
()
777
// Test for method java.lang.String java.lang.String.
toLowerCase
()
778
assertTrue("
toLowerCase
case conversion did not succeed", hwuc
779
.
toLowerCase
().equals(hwlc));
783
"\u03c3", "\u03a3".
toLowerCase
());
786
"a\u03c2", "a\u03a3".
toLowerCase
());
788
assertEquals("
toLowerCase
case conversion did not succeed",
789
"\uD801\uDC44", "\uD801\uDC1C".
toLowerCase
());
793
* @tests java.lang.String#
toLowerCase
(java.util.Locale)
797
// java.lang.String.
toLowerCase
(java.util.Locale
[
all
...]
/external/eigen/bench/btl/generic_bench/
btl.hh
130
BtlString
toLowerCase
( void )
146
str0.
toLowerCase
();
148
str1.
toLowerCase
();
Completed in 845 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>