/external/webkit/WebKit/mac/Misc/ |
WebNSViewExtras.m | 187 NSString *extension = @""; 188 dragImage = [[NSWorkspace sharedWorkspace] iconForFileType:extension];
|
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
DumpRenderTreeQt.cpp | 276 bool WebPage::supportsExtension(QWebPage::Extension extension) const 278 if (extension == QWebPage::ErrorPageExtension) 284 bool WebPage::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) function in class:WebCore::WebPage
|
/packages/apps/Email/src/org/apache/commons/io/ |
FilenameUtils.java | 50 * <li>the extension - txt</li>
96 * The extension separator character.
102 * The extension separator String.
568 * Returns the index of the last extension separator character, which is a dot.
823 * Gets the base name, minus the full path and extension, from a full filename.
844 * Gets the extension of a filename.
[all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
Extensions.java | 50 * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension 62 private List<Extension> extensions; 65 // the flag showing is there any unsupported critical extension 69 // Extension objects as values 142 Extension extn = (Extension) extensions.get(i); 157 * @param oid - the OID of needed extension. 160 public Extension getExtensionByOID(String oid) { 168 Extension extn = (Extension) it.next() [all...] |
/external/bluetooth/glib/gio/ |
gappinfo.h | 117 const char *extension, 161 const char *extension,
|
glocaldirectorymonitor.c | 225 GIOExtension *extension = l->data; local 228 klass = G_LOCAL_DIRECTORY_MONITOR_CLASS (g_io_extension_ref_class (extension));
|
/external/v8/src/ |
contexts.h | 130 // [ extension ] A pointer to an extension JSObject, or NULL. Used to 133 // stored in the extension slot of a 'with' context. 135 // to lazily allocated extension object. Context::Lookup 136 // searches the extension object for properties. 239 JSObject* extension() { return JSObject::cast(unchecked_extension()); } function in class:v8::internal::Context 275 return IsCatchContext() && extension() == object; 304 // the result is the JSObject extension context or the global object, 315 // context. Do not consider context extension objects. This is 319 // it is shadowed by a property in an extension object introduced b [all...] |
bootstrapper.cc | 266 v8::Extension* extension, 477 // closure and extension object later (we need the empty function 603 GlobalObject::cast(global_context_->extension())); 630 // Set extension and global object. 800 { // --- context extension 801 // Create a function for the context extension objects. 1297 v8::Extension* extension = current->extension(); local [all...] |
/external/v8/test/mjsunit/ |
with-prototype.js | 29 // extension object contains a property with the name assigned to in
|
debug-script.js | 45 } else if (scripts[i].type == Debug.ScriptType.Extension) { 56 // If no snapshot is used, only the 'gc' extension is loaded. 78 // Test an extension script. 82 assertEquals(Debug.ScriptType.Extension, extension_gc_script.type);
|
try-catch-extension-object.js | 28 // Try catch scopes should be implemented with special extension
|
/packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
Recorder.java | 130 public void startRecording(int outputfileformat, String extension, Context context) { 139 mSampleFile = File.createTempFile(SAMPLE_PREFIX, extension, sampleDir);
|
/external/openssl/crypto/x509v3/ |
v3_conf.c | 58 /* extension creation utilities */ 132 /* Now get internal extension representation based on type */ 213 /* Given an internal structure, nid and critical flag create an extension */ 225 /* Check the extension string for critical flag */ 236 /* Check extension string for generic extension and return the type */ 259 /* Create a generic extension: for now just handle DER type */ 267 X509_EXTENSION *extension=NULL; local 297 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); 303 return extension; [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
X509CRLEntryObject.java | 22 import org.bouncycastle.x509.extension.X509ExtensionUtil; 48 * has no certificate issuer CRL entry extension 110 "Cannot extract directory name from certificate issuer CRL entry extension"); 115 "Cannot extract certificate issuer CRL entry extension "
|
/external/quake/quake/src/WinQuake/ |
common.h | 162 void COM_DefaultExtension (char *path, const char *extension);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppObexServerSession.java | 205 String extension, type; local 208 if (D) Log.w(TAG, "There is no file extension, reject the transfer"); 212 extension = name.substring(dotIndex + 1).toLowerCase(); 214 type = map.getMimeTypeFromExtension(extension); 215 if (V) Log.v(TAG, "Mimetype guessed from extension " + extension + " is " + type);
|
/development/ide/xcode/ports/ |
skia_mac.cp | 56 // Create a Nib reference passing the name of the nib file (without the .nib extension)
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
FrameBufferObjectActivity.java | 31 * Demonstrate the Frame Buffer Object OpenGL ES extension. 231 * This is not the fastest way to check for an extension, but fine if 234 * @param extension 235 * @return true if the extension is present in the current context. 237 private boolean checkIfContextSupportsExtension(GL10 gl, String extension) { 241 // beginning and end of the extensions string and the extension string. 243 // extension, as well as avoid special-case checks when an extension name 244 // is the same as the first part of another extension name. 245 return extensions.indexOf(" " + extension + " ") >= 0 [all...] |
/external/skia/xcode/ports/ |
skia_mac.cp | 57 // Create a Nib reference passing the name of the nib file (without the .nib extension)
|
/external/v8/test/mjsunit/regress/ |
regress-191.js | 28 // Make sure that accessor setters are ignored on context extension
|
regress-193.js | 28 // Test that context extension objects do not have a constructor
|
/external/webkit/WebKit/mac/Plugins/ |
WebPluginDatabase.mm | 153 - (WebBasePluginPackage *)pluginForExtension:(NSString *)extension 155 WebBasePluginPackage *plugin = [self pluginForKey:[extension lowercaseString] 158 // If no plug-in was found from the extension, attempt to map from the extension to a MIME type 160 // an extension <-> MIME type mapping. 161 NSString *MIMEType = WKGetMIMETypeForExtension(extension);
|
/ndk/build/core/ |
build-binary.mk | 101 # after the extension, e.g. 108 # As a special extension, the NDK also supports the .neon extension suffix
|
/packages/apps/Email/src/com/android/exchange/adapter/ |
EmailSyncAdapter.java | 379 * is either the extension or (if none) octet-stream 389 String extension = null; local 391 extension = fileName.substring(lastDot + 1).toLowerCase(); 393 if (extension == null) { 397 mimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension); 399 mimeType = "application/" + extension; [all...] |
/dalvik/libcore/xml/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...] |