Searched defs:extension (Results 1 - 25 of 208) sorted by relevance

123456789

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DAuthorityKeyIdentifierStructure.java1 package org.bouncycastle.x509.extension;
29 * @param encodedValue a DER octet encoded string with the extension structure in it.
40 * Constructor which will take an extension
42 * @param extension a X509Extension object containing an AuthorityKeyIdentifier.
46 X509Extension extension)
48 super((ASN1Sequence)extension.getParsedValue());
52 * Constructor which will take an extension
54 * @param extension a X509Extension object containing an AuthorityKeyIdentifier.
57 Extension extension)
59 super((ASN1Sequence)extension
45 AuthorityKeyIdentifierStructure( X509Extension extension) argument
56 AuthorityKeyIdentifierStructure( Extension extension) argument
[all...]
H A DX509ExtensionUtil.java1 package org.bouncycastle.x509.extension;
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
H A Dreplace_extension.pass.cpp32 const char* extension; member in struct:ReplaceExtensionTestcase
62 path& Ref = (p.replace_extension(TC.extension));
/external/lzma/CPP/7zip/UI/Common/
H A DDefaultName.cpp8 const UString &extension, const UString &addSubExtension)
10 const unsigned extLen = extension.Len();
17 if (extension.IsEqualTo_NoCase(fileName.Ptr(dotPos + 1)))
32 const UString &extension, const UString &addSubExtension)
34 UString name = GetDefaultName3(fileName, extension, addSubExtension);
7 GetDefaultName3(const UString &fileName, const UString &extension, const UString &addSubExtension) argument
31 GetDefaultName2(const UString &fileName, const UString &extension, const UString &addSubExtension) argument
/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/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTgles2Ext.cpp68 /* Retrieve GL extension string */
156 @Input extension extension to query for
157 @Returns True if the extension is supported
158 @Description Queries for support of an extension
160 bool CPVRTgles2Ext::IsGLExtensionSupported(const char * const extension) argument
169 where = (GLubyte *) strchr(extension, ' ');
170 if (where || *extension == '\0')
179 where = (GLubyte *) strstr((const char *) start, extension);
182 terminator = where + strlen(extension);
[all...]
/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/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...]
H A DExtensions.java67 * @param extension a single extension.
70 Extension extension)
72 this.ordering.addElement(extension.getExtnId());
73 this.extensions.put(extension.getExtnId(), extension);
94 * return an Enumeration of the extension field's object ids.
102 * return the extension represented by the object identifier
105 * @return the extension if it's present, null otherwise.
114 * return the parsed value of the extension represente
69 Extensions( Extension extension) argument
[all...]
/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp15 const FString &extension, UInt32 value, FString &path)
21 path += extension;
31 FString extension; local
35 extension = path.Ptr(dotPos);
45 if (MakeAutoName(name, extension, mid, temp))
50 return !MakeAutoName(name, extension, right, path);
14 MakeAutoName(const FString &name, const FString &extension, UInt32 value, FString &path) argument
/external/python/cpython2/Lib/distutils/tests/
H A Dsetuptools_extension.py7 Also ensures that no other distutils extension monkeypatched the distutils
47 import sys, distutils.core, distutils.extension namespace
49 distutils.extension.Extension = Extension
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.decompose/
H A Dpath.decompose.pass.cpp25 // path extension() const;
161 std::string extension; member in struct:FilenameDecompTestcase
189 assert(p.extension() == TC.extension);
190 assert(p.has_extension() != TC.extension.empty());
/external/libvncserver/libvncserver/
H A Dcargs.c22 rfbProtocolExtension* extension; local
60 for(extension=rfbGetExtensionIterator();extension;extension=extension->next)
61 if(extension->usage)
62 extension->usage();
215 rfbProtocolExtension* extension; local
218 for(extension=rfbGetExtensionIterator();handled==0 && extension;
[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/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/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_fileutils.cc55 const std::string& extension) {
56 std::string filepath = webrtc::test::ResourcePath(filename, extension);
83 const std::string& extension) {
85 extension;
54 Create(const std::string& filename, const std::string& extension) argument
82 Create(const std::string& filename, const std::string& extension) argument
/external/webrtc/webrtc/modules/remote_bitrate_estimator/tools/
H A Dbwe_rtp.cc102 webrtc::RTPExtensionType extension = webrtc::kRtpExtensionAbsoluteSendTime; local
104 extension = webrtc::kRtpExtensionTransmissionTimeOffset;
109 fprintf(stderr, "Unknown extension type\n");
115 (*parser)->RegisterRtpHeaderExtension(extension, flags::ExtensionId());
117 switch (extension) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509v3CertificateBuilder.java110 * Add a given extension field for the standard extensions tag (tag 3)
112 * @param oid the OID defining the extension type.
113 * @param isCritical true if the extension is critical, false otherwise.
114 * @param value the ASN.1 structure that forms the extension's value.
129 * Add a given extension field for the standard extensions tag (tag 3).
131 * @param extension the full extension value.
135 Extension extension)
138 extGenerator.addExtension(extension);
144 * Add a given extension fiel
134 addExtension( Extension extension) argument
[all...]
/external/clang/tools/scan-build-py/libscanbuild/
H A Drunner.py111 def extension(opts): function in function:report_failure
112 """ Generate preprocessor file extension. """
126 (handle, name) = tempfile.mkstemp(suffix=extension(opts),
222 extension. The decision also influenced by the compiler invocation. """
232 # ... or find out from source file extension
/external/deqp/modules/egl/
H A DteglClientExtensionTests.cpp150 string extension; local
152 while (std::getline(stream, extension, ' '))
154 if (extension == "EGL_EXT_client_extensions")
165 m_testCtx.getLog() << TestLog::Message << "eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS) didn't fail, but extension string doesn't contain EGL_EXT_client_extensions" <<TestLog::EndMessage;
219 m_testCtx.getLog() << TestLog::Message << "'" << clientExtensions[extNdx] << "' is not client extension" << TestLog::EndMessage;
228 m_testCtx.getLog() << TestLog::Message << "'" << displayExtensions[extNdx] << "' is not display extension" << TestLog::EndMessage;
306 m_testCtx.getLog() << TestLog::Message << "Extension '" << *iter << "' exists in client and display extension sets." << TestLog::EndMessage;
/external/deqp/modules/gles2/functional/
H A Des2fApiCase.cpp102 void ApiCase::getSupportedExtensions (const deUint32 numSupportedValues, const deUint32 extension, std::vector<int>& values) argument
112 GLU_CHECK_CALL(glGetIntegerv(extension, &values[0]));
/external/deqp/modules/gles3/functional/
H A Des3fApiCase.cpp104 void ApiCase::getSupportedExtensions (const deUint32 numSupportedValues, const deUint32 extension, std::vector<int>& values) argument
114 GLU_CHECK_CALL(glGetIntegerv(extension, &values[0]));
/external/deqp/modules/gles31/functional/
H A Des31fAndroidExtensionPackES31ATests.cpp67 throw tcu::NotSupportedError("Test requires GL_ANDROID_extension_pack_es31a extension");
122 SubExtensionCase (Context& context, const char* name, const char* description, const char* extension);
130 SubExtensionCase::SubExtensionCase (Context& context, const char* name, const char* description, const char* extension) argument
132 , m_extension (extension)
140 << "Verifying that extension \"" << m_extension << "\" is supported."
156 << "Error, extension is not supported."
159 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Required extension not supported");
168 : TestCaseGroup(context, "android_extension_pack", "ANDROID_extension_pack_es31a extension tests")
252 const std::string description = "Check that extension " + name + " is supported if extension pac
[all...]
/external/emma/core/java12/com/vladium/emma/report/
H A DSourcePathCache.java162 return super.toString () + ", extension = [" + m_extension + "]";
165 FileExtensionFilter (final String extension) argument
167 if (extension == null)
168 throw new IllegalArgumentException ("null input: extension");
171 final String canonical = canonicalizeExtension (extension);
173 if (extension.length () <= 1)
174 throw new IllegalArgumentException ("empty input: extension");
179 private static String canonicalizeExtension (final String extension) argument
181 if (extension.charAt (0) != '.')
182 return ".".concat (extension);
[all...]
/external/emma/core/java12/com/vladium/util/
H A DFiles.java160 * @return String file name without the extension [excluding '.' separator]
161 * [if 'file' does not appear to have an extension, the full name is returned].
181 * @return String extension [including '.' separator] or "" if 'file' does not
182 * appear to have an extension.
294 * This defers to File.createTempFile (prefix, extension, parentDir) after
295 * normalizing 'extension'.<P>
307 * @param extension pattern for the temp file name [null is equivalient to
314 public static File createTempFile (final File parentDir, final String prefix, String extension) argument
322 if (extension == null) extension
[all...]

Completed in 820 milliseconds

123456789