/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | upload.py | 87 meta = self.distribution.metadata 94 'name': meta.get_name(), 95 'version': meta.get_version(), 105 'summary': meta.get_description(), 106 'home_page': meta.get_url(), 107 'author': meta.get_contact(), 108 'author_email': meta.get_contact_email(), 109 'license': meta.get_licence(), 110 'description': meta.get_long_description(), 111 'keywords': meta.get_keywords(), [all …]
|
D | register.py | 227 meta = self.distribution.metadata 231 'name': meta.get_name(), 232 'version': meta.get_version(), 233 'summary': meta.get_description(), 234 'home_page': meta.get_url(), 235 'author': meta.get_contact(), 236 'author_email': meta.get_contact_email(), 237 'license': meta.get_licence(), 238 'description': meta.get_long_description(), 239 'keywords': meta.get_keywords(), [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/ |
D | test_dist.py | 258 meta = self.format_metadata(dist) 259 self.assertTrue("Metadata-Version: 1.0" in meta) 260 self.assertTrue("provides:" not in meta.lower()) 261 self.assertTrue("requires:" not in meta.lower()) 262 self.assertTrue("obsoletes:" not in meta.lower()) 273 meta = self.format_metadata(dist) 274 self.assertTrue("Metadata-Version: 1.1" in meta) 275 self.assertTrue("requires:" not in meta.lower()) 276 self.assertTrue("obsoletes:" not in meta.lower()) 293 meta = self.format_metadata(dist) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/ |
D | meta-vladimir.txt | 13 the meta-class concept is likely to be difficult to digest by others. 139 d) label mysterious objects "meta-classes". 155 A meta-class is meant to define the common properties of a set of 156 classes. A meta-class is a "package" of properties. The assembly 157 of properties in a meta-class package is sometimes called a meta-class 160 In Python, a meta-class definition would have looked like this: 168 So far, we defined the structure of the meta-class M. The meta-class 177 Creating an object with the properties defined in the meta-class M is 178 called instantiation of the meta-class M. After an instantiation of M, 180 a meta-instance, which has the properties packaged in the meta-class M. [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/ |
D | Eiffel.py | 7 def __new__(meta, name, bases, dict): argument 8 meta.convert_methods(dict) 9 return super(EiffelBaseMetaClass, meta).__new__(meta, name, bases,
|
/device/google/marlin/camera/QCamera2/stack/common/ |
D | cam_intf.h | 1074 static inline void clear_metadata_buffer(metadata_buffer_t *meta) in clear_metadata_buffer() argument 1076 if (meta) { in clear_metadata_buffer() 1077 memset(meta->is_valid, 0, CAM_INTF_PARM_MAX); in clear_metadata_buffer() 1078 meta->is_tuning_params_valid = 0; in clear_metadata_buffer() 1079 meta->is_mobicat_aec_params_valid = 0; in clear_metadata_buffer() 1080 meta->is_statsdebug_ae_params_valid = 0; in clear_metadata_buffer() 1081 meta->is_statsdebug_awb_params_valid = 0; in clear_metadata_buffer() 1082 meta->is_statsdebug_af_params_valid = 0; in clear_metadata_buffer() 1083 meta->is_statsdebug_asd_params_valid = 0; in clear_metadata_buffer() 1084 meta->is_statsdebug_stats_params_valid = 0; in clear_metadata_buffer() [all …]
|
/device/google/marlin/camera/QCamera2/stack/mm-camera-interface/include/ |
D | cam_intf.h | 1074 static inline void clear_metadata_buffer(metadata_buffer_t *meta) in clear_metadata_buffer() argument 1076 if (meta) { in clear_metadata_buffer() 1077 memset(meta->is_valid, 0, CAM_INTF_PARM_MAX); in clear_metadata_buffer() 1078 meta->is_tuning_params_valid = 0; in clear_metadata_buffer() 1079 meta->is_mobicat_aec_params_valid = 0; in clear_metadata_buffer() 1080 meta->is_statsdebug_ae_params_valid = 0; in clear_metadata_buffer() 1081 meta->is_statsdebug_awb_params_valid = 0; in clear_metadata_buffer() 1082 meta->is_statsdebug_af_params_valid = 0; in clear_metadata_buffer() 1083 meta->is_statsdebug_asd_params_valid = 0; in clear_metadata_buffer() 1084 meta->is_statsdebug_stats_params_valid = 0; in clear_metadata_buffer() [all …]
|
/device/generic/goldfish-opengl/system/vulkan_enc/ |
D | vk_util.h | 146 elem_t meta[]; \ 149 #define vk_outarray_typeof_elem(a) __typeof__((a)->meta[0]) 150 #define vk_outarray_sizeof_elem(a) sizeof((a)->meta[0])
|
/device/google/cuttlefish/shared/sepolicy/ |
D | kernel.te | 12 # gce.meta.proxy and gce.ex.outer write to /dev/console which for some reason does not appear
|
/device/google/marlin/camera/QCamera2/HAL3/ |
D | QCamera3HWI.cpp | 2515 CameraMetadata meta; in configureStreamsPerfLocked() local 2516 meta = streamList->session_parameters; in configureStreamsPerfLocked() 2553 if (meta.exists(ANDROID_CONTROL_VIDEO_STABILIZATION_MODE)) { in configureStreamsPerfLocked() 2554 fwkVideoStabMode = meta.find(ANDROID_CONTROL_VIDEO_STABILIZATION_MODE).data.u8[0]; in configureStreamsPerfLocked() 2558 !meta.exists(QCAMERA3_USE_AV_TIMER); in configureStreamsPerfLocked() 2595 if (m_debug_avtimer || meta.exists(QCAMERA3_USE_AV_TIMER)) { in configureStreamsPerfLocked() 2603 meta.find(QCAMERA3_USE_AV_TIMER).data.u8; in configureStreamsPerfLocked() 2618 if (meta.exists(ANDROID_CONTROL_AE_TARGET_FPS_RANGE)) { in configureStreamsPerfLocked() 2619 rc = setHalFpsRange(meta, mParameters); in configureStreamsPerfLocked() 2622 (int32_t) meta.find(ANDROID_CONTROL_AE_TARGET_FPS_RANGE).data.i32[1]; in configureStreamsPerfLocked() [all …]
|
D | QCamera3Channel.cpp | 3002 bool QCamera3YUVChannel::needsFramePostprocessing(metadata_buffer_t *meta) in needsFramePostprocessing() argument 3008 CAM_INTF_META_EDGE_MODE, meta) { in needsFramePostprocessing() 3014 CAM_INTF_META_NOISE_REDUCTION_MODE, meta) { in needsFramePostprocessing() 3020 CAM_INTF_META_SCALER_CROP_REGION, meta) { in needsFramePostprocessing() 4451 metadata_buffer_t *meta = (metadata_buffer_t *)meta_buffer->buffer; in overrideMetadata() local 4453 if (NULL == meta) { in overrideMetadata() 4477 ADD_SET_PARAM_ENTRY_TO_BATCH(meta, CAM_INTF_PARM_ROTATION, rotation_info); in overrideMetadata() 4481 IF_META_AVAILABLE(cam_crop_data_t, crop_data, CAM_INTF_META_CROP_DATA, meta) { in overrideMetadata() 4518 IF_META_AVAILABLE(cam_cds_data_t, cdsInfo, CAM_INTF_META_CDS_DATA, meta) { in overrideMetadata() 4578 metadata_buffer_t *meta = (metadata_buffer_t *) frame->metadata_buffer.buffer; in overrideFwkMetadata() local [all …]
|
D | QCamera3HWI.h | 325 void dumpMetadataToFile(tuning_params_t &meta, uint32_t &dumpFrameCount,
|
D | QCamera3Channel.h | 474 bool needsFramePostprocessing(metadata_buffer_t* meta);
|
/device/linaro/bootloader/edk2/DuetPkg/FSVariable/ |
D | FSVariable.inf | 6 # Duet trusts all meta data from disk. If variable code, variable metadata and variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_curses.py | 178 curses.meta(1)
|
D | test_descr.py | 4560 class meta(type): class 4562 self.assertRaises(AttributeError, getattr, meta, "__abstractmethods__")
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | config.ini | 217 # Check whether each file defined in meta-data exists 219 # Generate a list for all files defined in meta-data files
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
D | README | 104 sample/sql.c example of the variable meta characters.
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | antlr.g | 608 #errclass "meta-symbol" { "\}" "!" ";" "\|" "\~" "^" "\)" } 650 warn("#parser meta-op incompatible with -CC; ignored"); 657 warn("#parser meta-op incompatible with '-gp prefix'; '-gp' ignored"); 776 <<if ( !GenCC ) { err("class meta-op used without C++ option"); }>> 2148 #token "{\\}#[A-Za-z0-9_]*" <<warn(eMsg1("unknown meta-op: %s",LATEXT(1))); zzskip(); >>
|
D | parser.dlg | 488 warn(eMsg1("unknown meta-op: %s",LATEXT(1))); zzskip();
|
/device/linaro/bootloader/edk2/BaseTools/UserManuals/ |
D | Intel_UEFI_Packaging_Tool_Man_Page.rtf | 148 …d9138298 \hich\af39\dbch\af31505\loch\f39 User extensions are provided so meta}{\rtlch\fcs1 \af0\a… 149 …iles can be created which provide functionality identical to the original meta-data. Details about…
|
D | Build_Utility_Man_Page.rtf | 178 \hich\af43\dbch\af13\loch\f43 e-parse all meta-data files. Use this option if you encounter }{\rtlc…
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/ |
D | CHANGES_FROM_133.txt | 335 #errclass, the -ge option, and meta-tokens such as epsilon, and
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/ |
D | CHANGES_FROM_133.txt | 1006 #errclass, the -ge option, and meta-tokens such as epsilon, and
|