Searched refs:extension (Results 1 - 25 of 579) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/util/
H A DExtensionMatcher.java24 * 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) argument
40 this.extension = extension;
48 return endsWithIgnoreCase(string, extension);
/external/lzma/CPP/7zip/UI/Common/
H A DDefaultName.h9 const UString &extension, const UString &addSubExtension);
H A DDefaultName.cpp8 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);
7 GetDefaultName3(const UString &fileName, const UString &extension, const UString &addSubExtension) argument
29 GetDefaultName2(const UString &fileName, const UString &extension, const UString &addSubExtension) argument
/external/autotest/client/site_tests/desktopui_ConnectivityDiagnostics/
H A Ddesktopui_ConnectivityDiagnostics.py42 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/sl4a/Common/src/com/googlecode/android_scripting/language/
H A DSupportedLanguages.java60 public static Language getLanguageByExtension(String extension) { argument
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();
85 int index = extension.lastIndexOf('.');
87 extension = "." + extension;
[all...]
/external/protobuf/objectivec/
H A DGPBExtensionInternals.h39 void GPBExtensionMergeFromInputStream(GPBExtensionDescriptor *extension,
46 GPBExtensionDescriptor *extension, id value);
48 void GPBWriteExtensionValueToOutputStream(GPBExtensionDescriptor *extension,
/external/vulkan-validation-layers/demos/
H A Dcube.frag22 #extension GL_ARB_separate_shader_objects : enable
23 #extension GL_ARB_shading_language_420pack : enable
H A Dcube.vert22 #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/
H A DShadowMimeTypeMap.java14 * Shadow for {@code MimeTypeMap} that allows custom extension <-> mimetype mapping to be set up by tests.
43 public String getMimeTypeFromExtension(String extension) { argument
44 if (extensionToMimeTypeMap.containsKey(extension))
45 return extensionToMimeTypeMap.get(extension);
58 public void addExtensionMimeTypMapping(String extension, String mimeType) { argument
59 extensionToMimeTypeMap.put(extension, mimeType);
60 mimeTypeToExtensionMap.put(mimeType, extension);
69 public boolean hasExtension(String extension) { argument
70 return extensionToMimeTypeMap.containsKey(extension);
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
H A DPVRTgles3Ext.cpp45 /* 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) argument
80 where = (GLubyte *) strchr(extension, ' ');
81 if (where || *extension == '\0')
90 where = (GLubyte *) strstr((const char *) start, extension);
93 terminator = where + strlen(extension);
[all...]
/external/protobuf/python/google/protobuf/
H A Dmessage_factory.py82 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
[all...]
/external/webrtc/talk/media/webrtc/
H A Dwebrtcmediaengine.cc98 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
[all...]
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dprevent_unload_popup.js8 script.src = chrome.extension.getURL("custom_event_listener.js");
/external/protobuf/src/google/protobuf/
H A Dextension_set.cc102 GOOGLE_LOG(FATAL) << "Multiple extension registrations for type \""
120 const ExtensionInfo* extension = local
122 if (extension == NULL) {
125 *output = *extension;
230 GOOGLE_LOG(DFATAL) << "Don't lookup extension types if they aren't present (1). ";
234 GOOGLE_LOG(DFATAL) << "Don't lookup extension types if they aren't present (2). ";
280 Extension* extension; \
281 if (MaybeNewExtension(number, descriptor, &extension)) { \
282 extension->type = type; \
283 GOOGLE_DCHECK_EQ(cpp_type(extension
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
1113 FindExtensionInfoFromTag( uint32 tag, ExtensionFinder* extension_finder, int* field_number, ExtensionInfo* extension, bool* was_packed_on_wire) argument
1123 FindExtensionInfoFromFieldNumber( int wire_type, int field_number, ExtensionFinder* extension_finder, ExtensionInfo* extension, bool* was_packed_on_wire) argument
1150 ExtensionInfo extension; local
1160 ParseFieldWithExtensionInfo( int number, bool was_packed_on_wire, const ExtensionInfo& extension, io::CodedInputStream* input, FieldSkipper* field_skipper) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DExtensionsGenerator.java30 * 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");
69 * Add a given extension.
71 * @param extension th
73 addExtension( Extension extension) argument
[all...]
/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp15 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);
14 MakeAutoName(const FString &name, const FString &extension, unsigned value, FString &path) argument
/external/autotest/client/site_tests/network_FirewallHolePunch/
H A Dnetwork_FirewallHolePunch.py57 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/
H A DcompareBuilds.sh26 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/
H A DExtensionRegistry.java81 * 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 b
237 add(final Extension<?, ?> extension) argument
246 newExtensionInfo(final Extension<?, ?> extension) argument
326 add( final ExtensionInfo extension, final Extension.ExtensionType extensionType) argument
[all...]
/external/webrtc/webrtc/modules/video_coding/test/
H A Dtest_util.cc37 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);
35 SplitFilename(const std::string& filename, std::string* basename, std::string* extension) argument
87 << "." << extension; local
104 std::string extension; local
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DExtendableMessageNano.java71 * Checks if there is a value stored for the specified extension in this
74 public final boolean hasExtension(Extension<M, ?> extension) { argument
78 FieldData field = unknownFieldData.get(WireFormatNano.getTagFieldNumber(extension.tag));
83 * Gets the value stored in the specified extension of this message.
85 public final <T> T getExtension(Extension<M, T> extension) { argument
89 FieldData field = unknownFieldData.get(WireFormatNano.getTagFieldNumber(extension.tag));
90 return field == null ? null : field.getValue(extension);
94 * Sets the value of the specified extension of this message.
96 public final <T> M setExtension(Extension<M, T> extension, T value) { argument
97 int fieldNumber = WireFormatNano.getTagFieldNumber(extension
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/
H A DFeaturedInterpreters.java76 String extension = getExtension(fileName);
77 if (extension == null || !mExtensionMap.containsKey(extension)) {
80 return mExtensionMap.get(extension).mmName;
84 String extension = getExtension(fileName);
85 return (extension != null) && (mExtensionMap.containsKey(extension));
112 private FeaturedInterpreter(String name, String extension, String url) argument
115 mmExtension = extension;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_utility.cc240 header->extension.hasTransmissionTimeOffset = false;
241 header->extension.transmissionTimeOffset = 0;
244 header->extension.hasAbsoluteSendTime = false;
245 header->extension.absoluteSendTime = 0;
248 header->extension.hasAudioLevel = false;
249 header->extension.voiceActivity = false;
250 header->extension.audioLevel = 0;
253 header->extension.hasVideoRotation = false;
254 header->extension.videoRotation = 0;
257 /* RTP header extension, RF
[all...]
/external/autotest/client/site_tests/desktopui_CameraApp/
H A Ddesktopui_CameraApp.py33 extension = browser.get_extension(camera_path)
34 extension.ExecuteJavaScript('camera.bg.createForTesting();')
46 condition=lambda: extension.EvaluateJavaScript(js_is_capturing),
/external/protobuf/js/
H A Ddebug_test.js82 var extension = new proto.jspb.test.IsExtension();
83 extension.setExt1('ext1field');
88 extendable.setExtension(proto.jspb.test.IsExtension.extField, extension);

Completed in 1284 milliseconds

1234567891011>>