HomeSort by relevance Sort by last modified time
    Searched refs:Metadata (Results 201 - 225 of 242) sorted by null

1 2 3 4 5 6 7 8910

  /system/media/camera/docs/
metadata_model.py 33 Metadata: Root node that also provides tree construction functionality.
44 Base class for most nodes that are part of the Metadata graph.
191 class Metadata(Node):
193 A node corresponding to a <metadata> entry.
196 parent: An edge to the parent Node. This is always None for Metadata.
205 construct_graph() to build up the Metadata from some source.
246 Insert a tag into the metadata.
253 metadata.insert_tag("BC", "Backwards Compatibility for old API")
265 Insert a type into the metadata.
275 metadata.insert_type('rectangle', 'typedef'
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 41 #include "llvm/IR/Metadata.h"
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
directory_contents.js 260 * Scanner of the entries for the metadata search on Drive File System.
291 * Starts to metadata-search on Drive File System.
322 * @param {MetadataCache} metadataCache Metadata cache service.
409 * @param {MetadataCache} metadataCache Metadata cache service.
605 // Update the filelist without waiting the metadata.
746 * Creates a DirectoryContents instance to show the result of metadata search
file_table.js 212 * @param {MetadataCache} metadataCache To retrieve metadata.
557 * @param {Object} filesystemProps Metadata.
611 * @param {Object} filesystemProps Metadata.
645 * Updates the file metadata in the table item.
657 * Updates list items 'in place' on metadata change.
658 * @param {string} type Type of metadata change.
659 * @param {Object.<sting, Object>} propsMap Map from entry URLs to metadata
961 // The metadata may not yet be ready. In that case, the list item will be
962 // updated when the metadata is ready via updateListItemsMetadata.
1017 * @param {Object} driveProps Metadata
    [all...]
file_transfer_controller.js 19 * @param {MetadataCache} metadataCache Metadata cache service.
237 function(metadata) {
240 metadata).
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 491 Fingerprint::Metadata* metadata = fingerprint->mutable_metadata(); local
492 metadata->set_timestamp_ms(
494 metadata->set_obfuscated_gaia_id(obfuscated_gaia_id_);
495 metadata->set_fingerprinter_version(kFingerprinterVersion);
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 108 case MVT::Metadata: return "MVT::Metadata";
IntrinsicEmitter.cpp 286 case MVT::Metadata: return Sig.push_back(IIT_METADATA);
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
ribbon.js 329 * @param {Object} metadata Metadata.
332 Ribbon.prototype.setThumbnailImage_ = function(thumbnail, url, metadata) {
333 new ThumbnailLoader(url, ThumbnailLoader.LoaderType.IMAGE, metadata).load(
350 if (thumbnail && event.metadata)
351 this.setThumbnailImage_(thumbnail, url, event.metadata);
mosaic_mode.js 11 * @param {MetadataCache} metadataCache Metadata cache.
75 * @param {MetadataCache} metadataCache Metadata cache.
111 * @param {MetadataCache} metadataCache Metadata cache.
281 // Throttle the metadata access so that we do not overwhelm the file system.
314 function(metadata) {
315 tile.init(metadata, onImageMeasured);
481 if (!event.metadata)
489 this.tiles_[index].init(event.metadata, function() {
    [all...]
gallery.js 97 * Types of metadata Gallery uses (to query the metadata cache).
713 event.metadata = null; // Metadata unchanged.
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 36 | Metadata
386 external metadata : llvalue -> int -> llvalue option = "llvm_metadata"
390 (*--... Operations on metadata .......,.....................................--*)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 54 static const char AnnotationSection[] = "llvm.metadata";
791 GV->setSection("llvm.metadata");
817 SmallVectorImpl<llvm::Value *> &Metadata,
821 addLinkOptionsPostorder(CGM, Mod->Parent, Metadata, Visited);
827 addLinkOptionsPostorder(CGM, Mod->Imports[I-1], Metadata, Visited);
842 Metadata.push_back(llvm::MDNode::get(Context, Args));
851 Metadata.push_back(llvm::MDNode::get(Context, OptString));
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 42 #include "llvm/IR/Metadata.h"
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
audio_player.js 149 // Load the selected track metadata first, then load the rest.
159 * Load metadata for a track.
169 * Display track's metadata.
171 * @param {Object} metadata Metadata object.
175 AudioPlayer.prototype.displayMetadata_ = function(track, metadata, opt_error) {
177 setMetadata(metadata, this.container_, opt_error);
179 setMetadata(metadata, this.container_, opt_error);
231 this.fetchMetadata_(entry, function(metadata) {
248 function(generation, metadata) {
    [all...]
media_util.js 15 * @param {Object=} opt_metadata Metadata object.
42 // Fetch the rotation from the Drive metadata (if available).
167 null, // No metadata.
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
id3_parser.js 244 * @param {Object} metadata // TODO(JSDOC).
248 Id3Parser.prototype.parse = function(file, metadata, callback, onError) {
276 var id3v1 = metadata.id3v1 = {};
281 metadata.title = title;
288 metadata.artist = artist;
295 metadata.album = album;
315 * metadata found.
321 var id3v2 = metadata.id3v2 = {};
337 * @param {ByteReader} reader Reader to use for metadata extraction.
340 var id3v2 = metadata.id3v2
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
preview_panel.js 12 * @param {MetadataCache} metadataCache Metadata cache.
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
volume_manager.js 122 * @param {VolumeMetadata} volumeMetadata Metadata instance for the volume.
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
exif_encoder.js 33 * The Exif metadata encoder.
34 * Uses the metadata format as defined by ExifParser.
35 * @param {Object} original_metadata Metadata to encode.
134 * Return a range where the metadata is (or should be) located.
135 * @param {string} encodedImage Raw image data to look for metadata.
183 * @return {ArrayBuffer} serialized metadata ready to write to an image file.
image_util.js 408 * @param {MetadataCache=} opt_metadataCache Metadata cache. Required for
504 // Fetch metadata to detect last modification time for the caching purpose.
image_editor.js 109 * @param {Object} metadata Metadata.
116 url, metadata, effect, saveFunction, displayCallback, loadCallback) {
124 url, metadata, effect, displayCallback, function(loadType, delay, error) {
image_view.js 297 * Takes into account the image orientation encoded in the metadata.
300 * @param {Object} metadata Metadata.
307 ImageView.prototype.load = function(entry, metadata, effect,
319 metadata = metadata || {};
331 var videoPreview = !!(metadata.thumbnail && metadata.thumbnail.url);
334 metadata.thumbnail.url,
336 metadata);
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 24 #include <llvm/IR/Metadata.h>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp 430 else if (equalIgnoringCase(value, "metadata"))
431 m_preload = MediaPlayer::MetaData;
434 // "missing value default", so use it for everything except "none" and "metadata"
    [all...]

Completed in 1175 milliseconds

1 2 3 4 5 6 7 8910