Home
last modified time | relevance | path

Searched refs:meta (Results 1 – 24 of 24) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dupload.py87 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 …]
Dregister.py227 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/
Dtest_dist.py258 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/
Dmeta-vladimir.txt13 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/
DEiffel.py7 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/
Dcam_intf.h1074 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/
Dcam_intf.h1074 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/
Dvk_util.h146 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/
Dkernel.te12 # gce.meta.proxy and gce.ex.outer write to /dev/console which for some reason does not appear
/device/google/marlin/camera/QCamera2/HAL3/
DQCamera3HWI.cpp2515 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 …]
DQCamera3Channel.cpp3002 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 …]
DQCamera3HWI.h325 void dumpMetadataToFile(tuning_params_t &meta, uint32_t &dumpFrameCount,
DQCamera3Channel.h474 bool needsFramePostprocessing(metadata_buffer_t* meta);
/device/linaro/bootloader/edk2/DuetPkg/FSVariable/
DFSVariable.inf6 # 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/
Dtest_curses.py178 curses.meta(1)
Dtest_descr.py4560 class meta(type): class
4562 self.assertRaises(AttributeError, getattr, meta, "__abstractmethods__")
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Dconfig.ini217 # 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/
DREADME104 sample/sql.c example of the variable meta characters.
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dantlr.g608 #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(); >>
Dparser.dlg488 warn(eMsg1("unknown meta-op: %s",LATEXT(1))); zzskip();
/device/linaro/bootloader/edk2/BaseTools/UserManuals/
DIntel_UEFI_Packaging_Tool_Man_Page.rtf148 …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…
DBuild_Utility_Man_Page.rtf178 \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/
DCHANGES_FROM_133.txt335 #errclass, the -ge option, and meta-tokens such as epsilon, and
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_133.txt1006 #errclass, the -ge option, and meta-tokens such as epsilon, and