/external/protobuf/src/google/protobuf/compiler/java/ |
java_message.cc | 120 // If the type has extensions, an extension with message type could contain 122 // extension exists. 251 ExtensionGenerator(descriptor_->extension(i)) 339 ExtensionGenerator(descriptor_->extension(i)).Generate(printer); 435 // Merge the fields and the extension ranges, both sorted by field number. [all...] |
/external/qemu/hw/ |
goldfish_audio.c | 568 char* extension = strrchr(input_source, '.'); local 569 if (extension && strcasecmp(extension, ".wav") == 0) {
|
/libcore/luni/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 1077 // The current id for extension functions. 1121 Function extension = new FuncExtFunction(ns, funcName, String.valueOf(getNextMethodId())); local [all...] |
/ndk/build/core/ |
build-binary.mk | 126 # after the extension, e.g. 133 # As a special extension, the NDK also supports the .neon extension suffix
|
/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/protobuf/src/google/protobuf/ |
descriptor.cc | [all...] |
wire_format_unittest.cc | 361 unittest::TestMessageSetExtension1::descriptor()->extension(0)->number(), 364 unittest::TestMessageSetExtension2::descriptor()->extension(0)->number(), 437 unittest::TestMessageSetExtension1::descriptor()->extension(0)->number()); 446 unittest::TestMessageSetExtension2::descriptor()->extension(0)->number());
|
/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 | 230 // if we don't know the MIME type, see if the extension can help 234 String extension = url.substring(pos + 1); local 235 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();
|
/external/bluetooth/glib/gio/ |
gdesktopappinfo.c | 339 * .desktop extension. GIO is looking for a desktop file with this name 1925 GIOExtension *extension; local [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
X509CRLEntryObject.java | 16 import org.bouncycastle.x509.extension.X509ExtensionUtil; 57 * has no certificate issuer CRL entry extension
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.cc | 41 // generator that outputs a Python/C extension module that lets 312 // service and extension later in the generation. 403 const FieldDescriptor& extension_field = *file_->extension(i); 576 // Extension ranges 764 FixForeignFieldsInExtension(*file_->extension(i)); 801 FixForeignFieldsInExtension(*descriptor.extension(i)); [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_;
|
/external/webkit/WebKit/mac/WebView/ |
WebViewInternal.h | 140 - (WebBasePluginPackage *)_pluginForExtension:(NSString *)extension;
|
/external/chromium/base/ |
file_path.cc | 287 FilePath::StringType FilePath::Extension() const { 302 StringType ext = Extension(); 303 // It's important to check Extension() since that verifies that the 307 // Since Extension() verified that the extension is in fact in the last path 330 StringType ext = Extension(); 347 FilePath FilePath::ReplaceExtension(const StringType& extension) const { 362 // If the new extension is "" or ".", then just remove the current extension. 363 if (extension.empty() || extension == StringType(1, kExtensionSeparator) [all...] |
/external/webkit/WebKit/chromium/src/ |
ChromiumBridge.cpp | 381 String ChromiumBridge::mimeTypeForExtension(const String& extension) 383 return webKitClient()->mimeRegistry()->mimeTypeForExtension(extension);
|
/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);
|
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509V3CertificateGenerator.java | 21 import org.bouncycastle.x509.extension.X509ExtensionUtil; 222 * add a given extension field for the standard extensions tag (tag 3) 233 * add a given extension field for the standard extensions tag (tag 3) 244 * add a given extension field for the standard extensions tag (tag 3) 246 * with the extension. 257 * add a given extension field for the standard extensions tag (tag 3) 268 * add a given extension field for the standard extensions tag (tag 3) 269 * copying the extension value from another certificate. 270 * @throws CertificateParsingException if the extension cannot be extracted. 282 throw new CertificateParsingException("extension " + oid + " not present") [all...] |