/external/qemu/hw/ |
goldfish_audio.c | 568 char* extension = strrchr(input_source, '.'); local 569 if (extension && strcasecmp(extension, ".wav") == 0) {
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
CubeMapActivity.java | 45 * Demonstrate how to use the OES_texture_cube_map extension, available on some 201 * This is not the fastest way to check for an extension, but fine if 204 * @param extension 205 * @return true if the extension is present in the current context. 207 private boolean checkIfContextSupportsExtension(GL10 gl, String extension) { 211 // beginning and end of the extensions string and the extension string. 213 // extension, as well as avoid special-case checks when an extension name 214 // is the same as the first part of another extension name. 215 return extensions.indexOf(" " + extension + " ") >= 0 [all...] |
/external/v8/test/mjsunit/ |
const-eval-init.js | 92 // Introduce 100 properties on the context extension object to force
|
debug-referenced-by.js | 84 // Dynamically create a variable. This should create a context extension.
|
/external/webkit/WebCore/loader/ |
MainResourceLoader.cpp | 299 String extension = filename.substring(extensionPos + 1); 300 String mimeType = PluginDatabase::installedPlugins()->MIMETypeForExtension(extension);
|
/external/webkit/WebCore/platform/graphics/ |
MediaPlayer.cpp | 227 // if we don't know the MIME type, see if the extension can help 231 String extension = url.substring(pos + 1); local 232 String mediaType = MIMETypeRegistry::getMediaMIMETypeForExtension(extension);
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebFrameLoaderClient.mm | [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
ExportVCardActivity.java | 256 for (String extension : additionalExtensions.split(",")) { 257 String trimed = extension.trim();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeyCheckPage.java | 425 // remove the extension from the user-chosen filename 428 String extension = filename.substring(index); local 435 entry.getKey() + extension;
|
/external/bluetooth/glib/gio/ |
gdesktopappinfo.c | 339 * .desktop extension. GIO is looking for a desktop file with this name 1925 GIOExtension *extension; local [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/ |
X509V3CertificateGenerator.java | 36 import org.bouncycastle.x509.extension.X509ExtensionUtil; 183 * add a given extension field for the standard extensions tag (tag 3) 194 * add a given extension field for the standard extensions tag (tag 3) 223 * add a given extension field for the standard extensions tag (tag 3) 225 * with the extension. 236 * add a given extension field for the standard extensions tag (tag 3) 254 * add a given extension field for the standard extensions tag (tag 3) 255 * copying the extension value from another certificate. 256 * @throws CertificateParsingException if the extension cannot be extracted. 268 throw new CertificateParsingException("extension " + oid + " not present") [all...] |
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/src/ |
genericper.cpp | 655 // (In CHOICE, gets choice index when extension is ON.) 677 // (In SEQUENCE, this skips over a single unknown extension. 679 // the extension, assuming the choice index has already 727 // Reads the extension bit and choice index from the input 732 // extmarker (0 if no extension marker, 1 otherwise) 736 uint8 extension; local 739 extension = 0; 740 if (extmarker) /* Get extension bit */ 742 extension = ReadBits(1, stream); 745 if (!extension) /* ---Item in root--- * [all...] |
/external/quake/quake/src/QW/client/ |
common.h | 183 void COM_DefaultExtension (char *path, char *extension);
|
/external/v8/src/ |
compiler.h | 238 v8::Extension* extension,
|
runtime.cc | 478 // Create a catch context extension object. [all...] |
api.h | 154 explicit RegisteredExtension(Extension* extension); 156 Extension* extension() { return extension_; } function in class:v8::RegisteredExtension 163 Extension* extension_;
|
parser.cc | 94 v8::Extension* extension, ParserMode is_pre_parsing, 144 v8::Extension* extension_; 1025 v8::Extension* extension, ScriptDataImpl* pre_data) 1026 : Parser(script, allow_natives_syntax, extension, PARSE, [all...] |
/external/webkit/WebKit/mac/WebView/ |
WebViewInternal.h | 140 - (WebBasePluginPackage *)_pluginForExtension:(NSString *)extension;
|
/cts/tools/vm-tests/src/util/build/ |
BuildDalvikSuite.java | 841 String extension) { 843 return new File(path, "Main_" + methodName + extension).getPath();
|
/external/webkit/WebKit/chromium/src/ |
ChromiumBridge.cpp | 381 String ChromiumBridge::mimeTypeForExtension(const String& extension) 383 return webKitClient()->mimeRegistry()->mimeTypeForExtension(extension);
|
FrameLoaderClientImpl.cpp | 1418 String extension = filename.substring(extensionPos + 1); local [all...] |
/external/webkit/WebKit/win/Interfaces/ |
IWebViewPrivate.idl | 180 @abstract Returns the mime type for a certian file extension. 181 @param path The extension of the file to check. 182 @result The mime type of the specified extension. 185 HRESULT MIMETypeForExtension([in] BSTR extension, [out, retval] BSTR* mimeType);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
X509CRLObject.java | 35 import org.bouncycastle.x509.extension.X509ExtensionUtil;
|
/external/webkit/WebCore/bindings/v8/ |
V8Proxy.h | 120 // Information about an extension that is registered for use with V8. If 121 // scheme is non-empty, it contains the URL scheme the extension should be 122 // used with. If group is non-zero, the extension will only be loaded into 123 // script contexts that belong to that group. Otherwise, the extension is 128 v8::Extension* extension; member in struct:WebCore::V8ExtensionInfo 330 // Registers a v8 extension to be available on webpages. The two forms 331 // offer various restrictions on what types of contexts the extension is 333 // scheme will match. If extensionGroup is provided, the extension will 336 // call. Takes ownership of the v8::Extension object passed [all...] |
/external/webkit/WebKitLibraries/ |
WebKitSystemInterface.h | 30 NSString *WKGetMIMETypeForExtension(NSString *extension);
|