HomeSort by relevance Sort by last modified time
    Searched refs:endsWith (Results 26 - 50 of 491) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicPathHandler.java 77 if (topmostPath.length() > 1 && topmostPath.endsWith("/")) {
84 if (!topmostPath.endsWith("/")) {
BasicDomainHandler.java 82 if (!host.endsWith(domain)) {
119 return host.endsWith(domain) || host.equals(domain.substring(1));
RFC2109DomainHandler.java 96 if (!host.endsWith(domain)) {
123 return host.equals(domain) || (domain.startsWith(".") && host.endsWith(domain));
  /external/skia/gm/
cmykjpeg.cpp 30 if (!filename.endsWith("/") && !filename.endsWith("\\")) {
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertFile.java 176 return (path.endsWith(Credentials.EXTENSION_CRT) ||
177 path.endsWith(Credentials.EXTENSION_P12) ||
178 path.endsWith(Credentials.EXTENSION_CER) ||
179 path.endsWith(Credentials.EXTENSION_PFX));
191 if (fileName.endsWith(Credentials.EXTENSION_PFX)
192 || fileName.endsWith(Credentials.EXTENSION_P12)) {
194 } else if (fileName.endsWith(Credentials.EXTENSION_CER)
195 || fileName.endsWith(Credentials.EXTENSION_CRT)) {
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 81 if (className.endsWith(".R") || className.endsWith(".Manifest")) {
119 if (entryName.endsWith(".apk")) {
138 if (source.getPath().endsWith(".apk")) {
163 if (name.endsWith(CLASS_EXTENSION) && isToplevelClass(name)) {
187 if (entryName.endsWith(CLASS_EXTENSION)) {
255 if (entryName.endsWith(CLASS_EXTENSION)) {
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
IpoHelper.java 124 if (rnaPath.endsWith("location")) {
127 if (rnaPath.endsWith("rotation_quaternion")) {
130 if (rnaPath.endsWith("scale")) {
133 if (rnaPath.endsWith("rotation")) {
  /external/webkit/Source/WebCore/page/
OriginAccessEntry.cpp 74 if (origin.host().length() > m_host.length() && origin.host()[origin.host().length() - m_host.length() - 1] == '.' && origin.host().endsWith(m_host))
Navigator.cpp 98 if (!(sourceURL->endsWith("/dqm_script.js") || sourceURL->endsWith("/dqm_loader.js") || sourceURL->endsWith("/tdqm_loader.js")))
  /frameworks/base/test-runner/src/junit/runner/
LoadingTestCollector.java 24 if (classFileName.endsWith(".class")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintDeltaProcessor.java 78 if (mActiveFile == null || !mActiveFile.getName().endsWith(DOT_JAVA)) {
98 if (mActiveFile == null || !mActiveFile.getName().endsWith(DOT_JAVA)) {
116 if (name.endsWith(DOT_JAVA)) {
120 } else if (name.endsWith(DOT_CLASS)) {
  /cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/
TestScanner.java 66 return filename.endsWith(".cpp") || filename.endsWith(".cc")
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ClasspathLocator.java 63 if (!root.endsWith("/"))
97 if (!path.endsWith(name)){
  /external/skia/tests/
StringTest.cpp 64 REPORTER_ASSERT(reporter, a.endsWith("llo"));
65 REPORTER_ASSERT(reporter, a.endsWith('o'));
66 REPORTER_ASSERT(reporter, !a.endsWith("ll" ));
67 REPORTER_ASSERT(reporter, !a.endsWith('l'));
68 REPORTER_ASSERT(reporter, a.endsWith(""));
  /libcore/dalvik/src/main/java/dalvik/system/
DexPathList.java 211 if (name.endsWith(DEX_SUFFIX)) {
218 } else if (name.endsWith(APK_SUFFIX) || name.endsWith(JAR_SUFFIX)
219 || name.endsWith(ZIP_SUFFIX)) {
282 if (!fileName.endsWith(DEX_SUFFIX)) {
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 67 if (!cfhF.getName().endsWith(".cfh") &&
68 !cfhF.getName().endsWith(".dfh")) {
75 boolean isDex = cfhF.getName().endsWith(".dfh");
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 128 if (path.endsWith(".zip") ||
129 path.endsWith(".jar") ||
130 path.endsWith(".apk")) {
  /external/jdiff/src/jdiff/
CommentsHandler.java 131 if (!currentText.endsWith(".") &&
132 !currentText.endsWith("?") &&
133 !currentText.endsWith("!") &&
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
FileFilter.java 256 return testName.endsWith(".html")
257 || testName.endsWith(".xhtml")
258 || testName.endsWith(".php");
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 154 if (len > 8 && input.startsWith("*#*#") && input.endsWith("#*#*")) {
176 if ((len > 1) && (len < 5) && (input.endsWith("#"))) {
199 && input.endsWith("#")) {
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaMetadataRetrieverTest.java 43 if ((MediaNames.ALBUMART_TEST_FILES[i].endsWith(".wma") && !supportWMA) ||
44 (MediaNames.ALBUMART_TEST_FILES[i].endsWith(".wmv") && !supportWMV)
82 if ((MediaNames.THUMBNAIL_METADATA_TEST_FILES[i].endsWith(".wma") && !supportWMA) ||
83 (MediaNames.THUMBNAIL_METADATA_TEST_FILES[i].endsWith(".wmv") && !supportWMV)
121 if ((MediaNames.THUMBNAIL_METADATA_TEST_FILES[i].endsWith(".wma") && !supportWMA) ||
122 (MediaNames.THUMBNAIL_METADATA_TEST_FILES[i].endsWith(".wmv") && !supportWMV)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
BlockCipherFactory.java 81 if (type.endsWith("-cbc"))
86 else if (type.endsWith("-ctr"))
  /frameworks/testing/androidtestlib/src/com/android/test/runner/
ClassPathScanner.java 109 if (!pkgName.endsWith(".")) {
133 if (!pkgName.endsWith(".")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 54 if (attributeName.endsWith(ATTRIBUTE_MIN_SDK_VERSION)
55 || attributeName.endsWith(ATTRIBUTE_TARGET_SDK_VERSION)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegate.java 85 if (bootpath[i][0].endsWith(SdkConstants.FN_FRAMEWORK_LIBRARY)) {
106 if (classpath[i].endsWith(JUNIT_JAR)) {

Completed in 4426 milliseconds

12 3 4 5 6 7 8 91011>>