HomeSort by relevance Sort by last modified time
    Searched refs:extension (Results 1 - 25 of 2180) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/util/
ExtensionMatcher.java 24 * This StringMatcher tests whether strings end in a given extension, ignoring
31 private final String extension; field in class:ExtensionMatcher
36 * @param extension the extension against which strings will be matched.
38 public ExtensionMatcher(String extension)
40 this.extension = extension;
48 return endsWithIgnoreCase(string, extension);
  /external/lzma/CPP/7zip/UI/Common/
DefaultName.h 9 const UString &extension, const UString &addSubExtension);
DefaultName.cpp 8 const UString &extension, const UString &addSubExtension)
10 int extLength = extension.Len();
16 if (extension.IsEqualToNoCase(fileName.Ptr(dotPos + 1)))
30 const UString &extension, const UString &addSubExtension)
32 UString name = GetDefaultName3(fileName, extension, addSubExtension);
  /external/sl4a/Common/src/com/googlecode/android_scripting/language/
SupportedLanguages.java 60 public static Language getLanguageByExtension(String extension) {
61 extension = extension.toLowerCase();
62 if (!extension.startsWith(".")) {
63 throw new RuntimeException("Extension does not start with a dot: " + extension);
67 Class<? extends Language> clazz = sSupportedLanguages.get(extension);
84 String extension = name.toLowerCase(); local
85 int index = extension.lastIndexOf('.');
87 extension = "." + extension
    [all...]
  /external/protobuf/objectivec/
GPBExtensionInternals.h 39 void GPBExtensionMergeFromInputStream(GPBExtensionDescriptor *extension,
46 GPBExtensionDescriptor *extension, id value);
48 void GPBWriteExtensionValueToOutputStream(GPBExtensionDescriptor *extension,
  /external/vulkan-validation-layers/demos/
cube.frag 22 #extension GL_ARB_separate_shader_objects : enable
23 #extension GL_ARB_shading_language_420pack : enable
cube.vert 22 #extension GL_ARB_separate_shader_objects : enable
23 #extension GL_ARB_shading_language_420pack : enable
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMimeTypeMap.java 14 * Shadow for {@code MimeTypeMap} that allows custom extension <-> mimetype mapping to be set up by tests.
43 public String getMimeTypeFromExtension(String extension) {
44 if (extensionToMimeTypeMap.containsKey(extension))
45 return extensionToMimeTypeMap.get(extension);
58 public void addExtensionMimeTypMapping(String extension, String mimeType) {
59 extensionToMimeTypeMap.put(extension, mimeType);
60 mimeTypeToExtensionMap.put(mimeType, extension);
69 public boolean hasExtension(String extension) {
70 return extensionToMimeTypeMap.containsKey(extension);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
armv2-mp-bad.l 2 [^:]*: extension does not apply to the base architecture
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-4.l 12 .*:29: Warning: the 64-bit microMIPS architecture does not support the `mdmx' extension
15 .*:34: Warning: the 64-bit microMIPS architecture does not support the `mips3d' extension
18 .*:39: Warning: the 64-bit microMIPS architecture does not support the `mt' extension
21 .*:44: Warning: the 64-bit microMIPS architecture does not support the `smartmips' extension
ase-errors-3.l 12 .*:29: Warning: the 32-bit microMIPS architecture does not support the `mdmx' extension
13 .*:29: Warning: the `mdmx' extension requires 64-bit FPRs
16 .*:34: Warning: the 32-bit microMIPS architecture does not support the `mips3d' extension
17 .*:34: Warning: the `mips3d' extension requires 64-bit FPRs
20 .*:39: Warning: the 32-bit microMIPS architecture does not support the `mt' extension
23 .*:44: Warning: the 32-bit microMIPS architecture does not support the `smartmips' extension
ase-errors-1.l 4 .*:9: Warning: the `dsp' extension requires MIPS32 revision 2 or greater
12 .*:25: Warning: the `dspr2' extension requires MIPS32 revision 2 or greater
18 .*:39: Warning: the `mcu' extension requires MIPS32 revision 2 or greater
21 .*:46: Warning: the 32-bit MIPS architecture does not support the `mdmx' extension
22 .*:48: Warning: the `mdmx' extension requires 64-bit FPRs
25 .*:57: Warning: the `mips3d' extension requires 64-bit FPRs
26 .*:58: Warning: the `mips3d' extension requires MIPS32 revision 2 or greater
29 .*:68: Warning: the `mt' extension requires MIPS32 revision 2 or greater
32 .*:77: Warning: the `smartmips' extension requires MIPS32 revision 1 or greater
36 .*:88: Warning: the `virt' extension requires MIPS32 revision 2 or greate
    [all...]
  /external/autotest/client/site_tests/desktopui_ConnectivityDiagnostics/
desktopui_ConnectivityDiagnostics.py 42 extension = cr.autotest_ext
43 extension.EvaluateJavaScript(self.EXT_CODE)
46 lambda: extension.EvaluateJavaScript('complete;'),
49 if not extension.EvaluateJavaScript('success;'):
50 raise error.TestFail(extension.EvaluateJavaScript('error;'))
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
PVRTgles3Ext.cpp 45 /* Retrieve GL extension string */
67 @Input extension extension to query for
68 @Returns True if the extension is supported
69 @Description Queries for support of an extension
71 bool CPVRTgles3Ext::IsGLExtensionSupported(const char * const extension)
79 /* Extension names should not have spaces. */
80 where = (GLubyte *) strchr(extension, ' ');
81 if (where || *extension == '\0')
90 where = (GLubyte *) strstr((const char *) start, extension);
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcmediaengine.cc 98 for (const auto& extension : extensions) {
99 if (extension.id <= 0 || extension.id >= 15) {
100 LOG(LS_ERROR) << "Bad RTP extension ID: " << extension.ToString();
103 if (id_used[extension.id - 1]) {
104 LOG(LS_ERROR) << "Duplicate RTP extension ID: " << extension.ToString();
107 id_used[extension.id - 1] = true;
121 for (const auto& extension : extensions)
    [all...]
  /frameworks/base/core/java/android/webkit/
MimeTypeMap.java 37 * Returns the file extension or an empty string iff there is no
38 * extension. This method is a convenience method for obtaining the
39 * extension of a url and has undefined results for other Strings.
41 * @return The file extension of the given url.
83 * Return the MIME type for the given extension.
84 * @param extension A file extension without the leading '.'
85 * @return The MIME type for the given extension or null iff there is none.
87 public String getMimeTypeFromExtension(String extension) {
88 return MimeUtils.guessMimeTypeFromExtension(extension);
142 String extension = getFileExtensionFromUrl(url); local
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set.cc 102 GOOGLE_LOG(FATAL) << "Multiple extension registrations for type \""
120 const ExtensionInfo* extension = local
122 if (extension == NULL) {
125 *output = *extension;
191 for (map<int, Extension>::iterator iter = extensions_.begin();
204 map<int, Extension>::const_iterator iter = extensions_.find(number);
212 for (map<int, Extension>::const_iterator iter = extensions_.begin();
222 map<int, Extension>::const_iterator iter = extensions_.find(number);
228 map<int, Extension>::const_iterator iter = extensions_.find(number);
230 GOOGLE_LOG(DFATAL) << "Don't lookup extension types if they aren't present (1). "
349 Extension* extension; local
435 Extension* extension; local
464 Extension* extension; local
496 Extension* extension; local
525 Extension* extension; local
566 Extension* extension; local
599 Extension* extension; local
643 Extension* extension; local
739 Extension* extension; local
772 Extension* extension = &iter->second; local
813 Extension* extension = &iter->second; local
823 Extension* extension = &iter->second; local
880 Extension* extension; local
962 Extension* extension; local
1090 const Extension& extension = iter->second; local
1150 ExtensionInfo extension; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtensionsGenerator.java 30 * Add an extension with the given oid and the passed in value to be included
31 * in the OCTET STRING associated with the extension.
33 * @param oid OID for the extension.
35 * @param value the ASN.1 object to be included in the extension.
47 * Add an extension with the given oid and the passed in byte array to be wrapped in the
48 * OCTET STRING associated with the extension.
50 * @param oid OID for the extension.
61 throw new IllegalArgumentException("extension " + oid + " already added");
65 extensions.put(oid, new Extension(oid, critical, new DEROctetString(value)));
69 * Add a given extension
82 extensions.put(extension.getExtnId(), extension); local
    [all...]
  /external/lzma/CPP/7zip/Common/
FilePathAutoRename.cpp 15 const FString &extension, unsigned value, FString &path)
21 path += extension;
36 FString name, extension; local
40 extension = fullProcessedPath.Ptr(dotPos);
49 if (MakeAutoName(name, extension, mid, path))
54 return !MakeAutoName(name, extension, right, fullProcessedPath);
  /hardware/interfaces/tests/extension/light/2.0/default/
Android.mk 4 LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service
5 LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc
17 android.hardware.tests.extension.light@2.0 \
  /external/protobuf/python/google/protobuf/
message_factory.py 82 for extension in result_class.DESCRIPTOR.extensions:
83 if extension.containing_type.full_name not in self._classes:
84 self.GetPrototype(extension.containing_type)
85 extended_class = self._classes[extension.containing_type.full_name]
86 extended_class.RegisterExtension(extension)
114 # While the extension FieldDescriptors are created by the descriptor pool,
119 # extension was already registered on the object and either
123 for name, extension in file_desc.extensions_by_name.items():
124 if extension.containing_type.full_name not in self._classes:
125 self.GetPrototype(extension.containing_type
    [all...]
  /external/autotest/client/site_tests/network_FirewallHolePunch/
network_FirewallHolePunch.py 57 self.extension = self.cr.get_extension(self.extension_path)
58 self.extension.ExecuteJavaScript('tcpUI.create();')
62 self.extension.ExecuteJavaScript(script)
64 self.extension.ExecuteJavaScript('tcpUI.stopServer();')
67 self.extension.ExecuteJavaScript(script)
68 self.extension.ExecuteJavaScript('close();')
94 self.extension = None
  /external/guice/util/
compareBuilds.sh 26 extension=core
27 compareJars "$ANT" "$MVN" $extension
28 #compareJars "./build/no_aop/$ANT" "./core/target/guice-$version-SNAPSHOT-no_aop.jar" "no_aop: $extension"
31 extension=`echo $ANT | awk -F"-" '{print $2 }'`
32 MVN=./extensions/$extension/target/guice-$extension-$version-SNAPSHOT.jar
33 compareJars "$ANT" "$MVN" $extension
42 extension=$3
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ExtensionRegistry.java 81 * privileged class by registering itself as an extension of the right type.
84 * extension until it is first requested, at which point the caller must
86 * it would require a mutex lock any time an extension was accessed, which
116 /** The extension's descriptor. */
120 * A default instance of the extension's type, if it has a message type.
144 * Find an extension for immutable APIs by fully-qualified field name,
148 * @return Information about the extension if found, or {@code null}
156 * Find an extension for mutable APIs by fully-qualified field name,
160 * @return Information about the extension if found, or {@code null}
177 * Find an extension by containing type and field number for immutable APIs
351 extensionsByName.put(extension.descriptor.getFullName(), extension); local
365 extensionsByName.put(field.getMessageType().getFullName(), extension); local
    [all...]
  /external/webrtc/webrtc/modules/video_coding/test/
test_util.cc 37 std::string* extension) {
39 assert(extension);
46 *extension = filename.substr(idx + 1);
49 *extension = "";
58 std::string extension; local
59 SplitFilename(filename, &basename, &extension);
62 << extension; local
78 std::string extension; local
81 extension = "yuv";
83 SplitFilename(base_out_filename, &basename, &extension);
87 << "." << extension; local
104 std::string extension; local
    [all...]

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 91011>>