/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
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
Extensions.java | 48 * Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension 60 private List<Extension> extensions; 63 // the flag showing is there any unsupported critical extension 67 // Extension objects as values 140 Extension extn = (Extension) extensions.get(i); 155 * @param oid - the OID of needed extension. 158 public Extension getExtensionByOID(String oid) { 166 Extension extn = (Extension) it.next() [all...] |
/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/protobuf/python/google/protobuf/internal/ |
decoder.py | 534 extension = extensions_by_number.get(type_id) 535 if extension is not None: 536 value = field_dict.get(extension) 539 extension, extension.message_type._concrete_class())
|
/external/v8/src/ |
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/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 */ 268 X509_EXTENSION *extension=NULL; local 298 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); 304 return extension; [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509CRLStoreSelector.java | 7 import org.bouncycastle.x509.extension.X509ExtensionUtil; 170 * extension set. Defaults to <code>false</code>. 173 * indicator extension are selected. 182 * CRL indicator CRL extension. 188 * extension must be in the CRL. 293 * which is a missing issuing distribution point extension. 311 * The issuing distribution point extension is a CRL extension which 323 * This is the DER encoded OCTET STRING extension value.
|
/external/protobuf/src/google/protobuf/ |
descriptor.h | 210 // The number of extension ranges in this message type. 212 // Gets an extension range by index, where 0 <= index < 217 // Returns true if the number is in one of the extension ranges. 223 // Get an extension by index, where 0 <= index < extension_count(). 225 const FieldDescriptor* extension(int index) const; 227 // Looks up a named extension (which extends some *other* message type) 284 // an extension, do one of the following: 369 bool is_extension() const; // Is this an extension field? 402 // extension scope's extensions array. 442 // An extension may be declared within the scope of another message. If thi [all...] |
extension_set_unittest.cc | 337 // Scalar primitive extensions should increase the extension set size by a 378 "allocation in order to store it in the extension"); 399 // - Adds a value to the repeated extension, then clears it, establishing 486 // Test adding a dynamic extension to a compiled-in message object. 507 // For each extension that we added... 510 FieldDescriptorProto* extension = dynamic_proto.mutable_extension(i); local 511 extension->set_extendee( 517 if (extension->has_type_name()) { 518 string* type_name = extension->mutable_type_name(); 563 // Now we can parse this using our dynamic extension definitions.. [all...] |
generated_message_reflection.cc | 1074 const FieldDescriptor* extension = type->extension(i); local [all...] |
/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/chromium/net/base/ |
mime_util.cc | 81 { "application/x-chrome-extension", "crx" } 129 // We implement the same algorithm as Mozilla for mapping a file extension to 164 FilePath::StringType file_name_str = file_path.Extension(); 408 FilePath::StringType* extension) { 409 return GetMimeUtil()->GetPreferredExtensionForMimeType(mime_type, extension);
|
/external/protobuf/python/google/protobuf/ |
descriptor.py | 202 is_extendable: Does this type define any extension ranges? 247 for extension in self.extensions: 248 extension.extension_scope = self 306 Somewhat confusingly, for extension fields, this is the 315 is_extension: True iff this describes an extension field. 317 Gives the message that immediately contains this extension field. 318 Will be None iff we're a top-level (file-level) extension field.
|
/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
|
/ndk/build/core/ |
prebuilt-library.mk | 48 # if shouldn't have an .a or .so extension nor contain directory separators.
|
/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);
|
/external/chromium/net/tools/flip_server/ |
balsa_frame.cc | 701 base::StringPiece extension; local 704 SplitStringPiece(all_extensions, ';', &extension, &remaining); 705 while (!extension.empty()) { 708 SplitStringPiece(extension, '=', &key, &value); 720 SplitStringPiece(remaining, ';', &extension, &remaining); [all...] |
/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...] |