/external/webkit/Source/WebCore/html/ |
HTMLDocument.cpp | 349 || publicId.startsWith("+//Silmaril//dtd html Pro v0r11 19970101//", false) 350 || publicId.startsWith("-//AdvaSoft Ltd//DTD HTML 3.0 asWedit + extensions//", false) 351 || publicId.startsWith("-//AS//DTD HTML 3.0 asWedit + extensions//", false) 352 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 1//", false) 353 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 2//", false) 354 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 1//", false) 355 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 2//", false) 356 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict//", false) 357 || publicId.startsWith("-//IETF//DTD HTML 2.0//", false) 358 || publicId.startsWith("-//IETF//DTD HTML 2.1E//", false [all...] |
/external/easymock/src/org/easymock/internal/matchers/ |
StartsWith.java | 22 public class StartsWith implements IArgumentMatcher, Serializable {
28 public StartsWith(String prefix) {
34 && ((String) actual).startsWith(prefix);
38 buffer.append("startsWith(\"" + prefix + "\")");
|
/external/javasqlite/src/main/java/SQLite/ |
JDBCDriver.java | 29 if (jvers == null || jvers.startsWith("1.0")) { 31 } else if (jvers.startsWith("1.1")) { 33 } else if (jvers.startsWith("1.2") || jvers.startsWith("1.3")) { 35 } else if (jvers.startsWith("1.4")) { 37 } else if (jvers.startsWith("1.5")) { 64 (shcache.startsWith("y") || shcache.startsWith("Y"))) { 86 return url.startsWith("sqlite:/") || 87 url.startsWith("jdbc:sqlite:/") [all...] |
/external/proguard/src/proguard/ |
GPL.java | 76 if (line.startsWith("at ")) 161 return packageName.startsWith("java") || 162 packageName.startsWith("sun.reflect") || 163 packageName.startsWith("proguard") || 164 packageName.startsWith("org.apache.tools.ant") || 165 packageName.startsWith("org.apache.tools.maven") || 166 packageName.startsWith("org.eclipse") || 167 packageName.startsWith("org.netbeans") || 168 packageName.startsWith("com.sun.kvem") || 169 packageName.startsWith("net.certiv.proguarddt") | [all...] |
ConfigurationParser.java | 104 if (ConfigurationConstants.AT_DIRECTIVE .startsWith(nextWord) || 105 ConfigurationConstants.INCLUDE_DIRECTIVE .startsWith(nextWord)) configuration.lastModified = parseIncludeArgument(configuration.lastModified); 106 else if (ConfigurationConstants.BASE_DIRECTORY_DIRECTIVE .startsWith(nextWord)) parseBaseDirectoryArgument(); 109 else if (ConfigurationConstants.INJARS_OPTION .startsWith(nextWord)) configuration.programJars = parseClassPathArgument(configuration.programJars, false); 110 else if (ConfigurationConstants.OUTJARS_OPTION .startsWith(nextWord)) configuration.programJars = parseClassPathArgument(configuration.programJars, true); 111 else if (ConfigurationConstants.LIBRARYJARS_OPTION .startsWith(nextWord)) configuration.libraryJars = parseClassPathArgument(configuration.libraryJars, false); 112 else if (ConfigurationConstants.RESOURCEJARS_OPTION .startsWith(nextWord)) throw new ParseException("The '-resourcejars' option is no longer supported. Please use the '-injars' option for all input"); 113 else if (ConfigurationConstants.DONT_SKIP_NON_PUBLIC_LIBRARY_CLASSES_OPTION .startsWith(nextWord)) configuration.skipNonPublicLibraryClasses = parseNoArgument(false); 114 else if (ConfigurationConstants.DONT_SKIP_NON_PUBLIC_LIBRARY_CLASS_MEMBERS_OPTION.startsWith(nextWord)) configuration.skipNonPublicLibraryClassMembers = parseNoArgument(false); 115 else if (ConfigurationConstants.TARGET_OPTION .startsWith(nextWord)) configuration.targetClassVersion = parseClassVersion() [all...] |
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui-qt4/ |
scanresults.cpp | 78 if (bss.isEmpty() || bss.startsWith("FAIL")) 90 if ((*it).startsWith("bssid=")) 92 else if ((*it).startsWith("freq=")) 94 else if ((*it).startsWith("qual=")) 96 else if ((*it).startsWith("flags=")) 98 else if ((*it).startsWith("ssid="))
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
scanresults.cpp | 78 if (bss.isEmpty() || bss.startsWith("FAIL")) 90 if ((*it).startsWith("bssid=")) 92 else if ((*it).startsWith("freq=")) 94 else if ((*it).startsWith("qual=")) 96 else if ((*it).startsWith("flags=")) 98 else if ((*it).startsWith("ssid="))
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
PEMUtil.java | 65 if (line.startsWith(_header1) || line.startsWith(_header2)) 73 if (line.startsWith(_footer1) || line.startsWith(_footer2))
|
/external/bouncycastle/src/main/java/org/bouncycastle/openssl/ |
PEMUtilities.java | 78 return algOid.getId().startsWith(PKCSObjectIdentifiers.pkcs_12PbeIds.getId()); 153 if (dekAlgName.startsWith("DES-EDE")) 158 boolean des2 = !dekAlgName.startsWith("DES-EDE3"); 161 else if (dekAlgName.startsWith("DES-")) 166 else if (dekAlgName.startsWith("BF-")) 171 else if (dekAlgName.startsWith("RC2-")) 175 if (dekAlgName.startsWith("RC2-40-")) 179 else if (dekAlgName.startsWith("RC2-64-")) 193 else if (dekAlgName.startsWith("AES-")) 204 if (dekAlgName.startsWith("AES-128-") [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
factory.py | 90 if port_to_use.startswith('test'): 93 elif port_to_use.startswith('dryrun'): 96 elif port_to_use.startswith('mock-'): 99 elif port_to_use.startswith('mac'): 102 elif port_to_use.startswith('win'): 105 elif port_to_use.startswith('gtk'): 108 elif port_to_use.startswith('qt'): 111 elif port_to_use.startswith('chromium-gpu'): 114 elif port_to_use.startswith('chromium-mac'): 117 elif port_to_use.startswith('chromium-linux') [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/ |
OS.java | 27 macOs = "Mac OS X".startsWith(osName); 28 linux = "Linux".startsWith(osName); 29 windows = "Windows".startsWith(osName);
|
/frameworks/base/core/java/android/webkit/ |
URLUtil.java | 53 if (inUrl.startsWith("about:")) return inUrl; 55 if (inUrl.startsWith("data:")) return inUrl; 57 if (inUrl.startsWith("file:")) return inUrl; 59 if (inUrl.startsWith("javascript:")) return inUrl; 173 return (null != url) && url.startsWith(ASSET_BASE); 181 return (null != url) && url.startsWith(RESOURCE_BASE); 191 return (null != url) && url.startsWith(PROXY_BASE); 198 return (null != url) && (url.startsWith(FILE_BASE) && 199 !url.startsWith(ASSET_BASE) && 200 !url.startsWith(PROXY_BASE)) [all...] |
/external/clang/utils/ |
CmpDriver | 77 return (filename.startswith('/tmp/', 1) or 78 filename.startswith('/var/', 1)) 96 ln.startswith('Target: ') or 97 ln.startswith('Configured with: ') or 98 ln.startswith('Thread model: ') or 99 ln.startswith('gcc version') or 100 ln.startswith('clang version')): 102 elif ln.strip().startswith('"'):
|
/external/llvm/utils/git/ |
find-rev | 30 if ln.startswith('commit '): 32 elif ln.startswith(' git-svn-id: '):
|
/libcore/luni/src/test/java/tests/api/java/lang/ |
StringTest.java | 35 assertTrue("abcd".startsWith("abc")); 36 assertFalse("abcd".startsWith("aabc"));
|
/libcore/luni/src/test/java/tests/java/lang/String/ |
Tests.java | 35 assertTrue("abcd".startsWith("abc")); 36 assertFalse("abcd".startsWith("aabc"));
|
/packages/apps/Browser/src/com/android/browser/ |
UrlUtils.java | 152 if (inUrl.startsWith("http://") || inUrl.startsWith("https://")) 154 if (inUrl.startsWith("http:") || 155 inUrl.startsWith("https:")) { 156 if (inUrl.startsWith("http:/") || inUrl.startsWith("https:/")) { 168 if (inUrl.startsWith("content:") 169 || inUrl.startsWith("browser:")) {
|
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/ |
ImapStringTest.java | 54 assertTrue(ImapString.EMPTY.startsWith("")); 56 assertFalse(ImapString.EMPTY.startsWith("a")); 75 assertFalse(s.startsWith(null)); 76 assertTrue(s.startsWith("")); 77 assertTrue(s.startsWith("a")); 78 assertTrue(s.startsWith("abcd")); 79 assertFalse(s.startsWith("Z")); 80 assertFalse(s.startsWith("abcde"));
|
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportParser.java | 35 if (line.startsWith(SECTION_HEADER) || (numLines > MAX_LINES)) { 41 } else if (line.startsWith(sectionWithHeader)) {
|
/external/chromium/build/linux/ |
rewrite_dirs.py | 26 if os.path.isabs(path) and not path.startswith(sysroot): 27 if path.startswith(prefix): 50 elif args[i].startswith(prefix):
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
DdmConstants.java | 53 if (os.startsWith("Mac OS")) { //$NON-NLS-1$ 55 } else if (os.startsWith("Windows")) { //$NON-NLS-1$ 57 } else if (os.startsWith("Linux")) { //$NON-NLS-1$
|
/external/llvm/lib/Support/ |
Triple.cpp | 273 ArchName.startswith("armv") || 277 ArchName.startswith("thumbv")) 279 else if (ArchName.startswith("alpha")) 321 if (OSName.startswith("auroraux")) 323 else if (OSName.startswith("cygwin")) 325 else if (OSName.startswith("darwin")) 327 else if (OSName.startswith("dragonfly")) 329 else if (OSName.startswith("freebsd")) 331 else if (OSName.startswith("ios")) 333 else if (OSName.startswith("linux") [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
Main.java | 47 if (arg.equals("--") || !arg.startsWith("--")) { 59 } else if (arg.startsWith("--ssa-step=")) { 67 } else if (arg.startsWith("--width=")) { 70 } else if (arg.startsWith("--method=")) {
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
BaseUrlValidateFunction.java | 64 if (maybeScheme.startsWith("http://") || maybeScheme.startsWith("https://") 65 || maybeScheme.startsWith("ftp://") || maybeScheme.startsWith("mailto:")) {
|
/external/markdown/markdown/extensions/ |
tables.py | 37 if header[0].startswith('|'): 42 if c.startswith(':') and c.endswith(':'): 44 elif c.startswith(':'): 79 if row.startswith('|'):
|