HomeSort by relevance Sort by last modified time
    Searched refs:Prop (Results 1 - 25 of 60) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/ArmXenRelocatablePlatformLib/
FdtParser.c 27 CONST INT32 *Prop;
48 Prop = fdt_getprop (DeviceTreeBlob, 0, "#address-cells", &Length);
50 AddressCells = fdt32_to_cpu (*Prop);
53 Prop = fdt_getprop (DeviceTreeBlob, 0, "#size-cells", &Length);
55 SizeCells = fdt32_to_cpu (*Prop);
62 Prop = fdt_getprop (DeviceTreeBlob, MemoryNode, "reg", &Length);
69 *SystemMemoryBase = fdt32_to_cpu (*Prop);
71 *SystemMemoryBase = fdt64_to_cpu (*(UINT64 *)Prop);
73 Prop += AddressCells;
76 *SystemMemorySize = fdt32_to_cpu (*Prop);
    [all...]
  /frameworks/av/media/libmediametrics/include/
MediaAnalyticsItem.h 74 // format "prop1" or "prop/subprop"
224 struct Prop {
239 void initProp(Prop *item);
240 void clearProp(Prop *item);
241 void clearPropValue(Prop *item);
242 void copyProp(Prop *dst, const Prop *src);
248 Prop *findProp(const char *name);
249 Prop *allocateProp(const char *name);
254 Prop *mProps
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/venc/src/
omx_swvenc_mpeg4.cpp 118 SWVENC_PROPERTY Prop;
271 Prop.id = SWVENC_PROPERTY_ID_FRAME_SIZE;
272 Prop.info.frame_size.height = m_sInPortDef.format.video.nFrameHeight;
273 Prop.info.frame_size.width = m_sInPortDef.format.video.nFrameWidth;
275 Ret = swvenc_setproperty(m_hSwVenc, &Prop);
284 Prop.id = SWVENC_PROPERTY_ID_FRAME_ATTRIBUTES;
285 Prop.info.frame_attributes.stride_luma = m_sInPortDef.format.video.nStride;
286 Prop.info.frame_attributes.stride_chroma = m_sInPortDef.format.video.nStride;
287 Prop.info.frame_attributes.offset_luma = 0;
288 Prop.info.frame_attributes.offset_chroma
1797 SWVENC_PROPERTY prop; local
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 386 static const ObjCIvarDecl *findBackingIvar(const ObjCPropertyDecl *Prop) {
387 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
398 if (!Prop->isReadOnly())
401 auto *Container = cast<ObjCContainerDecl>(Prop->getDeclContext());
417 Prop->getIdentifier(), Prop->getQueryKind());
418 if (ShadowingProp && ShadowingProp != Prop) {
426 const ObjCPropertyDecl *Prop) {
428 const ObjCIvarDecl *IVar = findBackingIvar(Prop);
433 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
omx_swvenc_mpeg4.cpp 118 SWVENC_PROPERTY Prop;
271 Prop.id = SWVENC_PROPERTY_ID_FRAME_SIZE;
272 Prop.info.frame_size.height = m_sInPortDef.format.video.nFrameHeight;
273 Prop.info.frame_size.width = m_sInPortDef.format.video.nFrameWidth;
275 Ret = swvenc_setproperty(m_hSwVenc, &Prop);
284 Prop.id = SWVENC_PROPERTY_ID_FRAME_ATTRIBUTES;
285 Prop.info.frame_attributes.stride_luma = m_sInPortDef.format.video.nStride;
286 Prop.info.frame_attributes.stride_chroma = m_sInPortDef.format.video.nStride;
287 Prop.info.frame_attributes.offset_luma = 0;
288 Prop.info.frame_attributes.offset_chroma
    [all...]
  /hardware/qcom/media/sdm845/mm-video-v4l2/vidc/venc/src/
omx_swvenc_mpeg4.cpp 119 SWVENC_PROPERTY Prop;
274 Prop.id = SWVENC_PROPERTY_ID_FRAME_SIZE;
275 Prop.info.frame_size.height = m_sInPortDef.format.video.nFrameHeight;
276 Prop.info.frame_size.width = m_sInPortDef.format.video.nFrameWidth;
278 Ret = swvenc_setproperty(m_hSwVenc, &Prop);
287 Prop.id = SWVENC_PROPERTY_ID_FRAME_ATTRIBUTES;
288 Prop.info.frame_attributes.stride_luma = m_sInPortDef.format.video.nStride;
289 Prop.info.frame_attributes.stride_chroma = m_sInPortDef.format.video.nStride;
290 Prop.info.frame_attributes.offset_luma = 0;
291 Prop.info.frame_attributes.offset_chroma
1761 SWVENC_PROPERTY prop; local
    [all...]
  /external/clang/include/clang/Index/
USRGeneration.h 47 void generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS);
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 110 CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop,
118 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
121 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
128 CheckPropertyAgainstProtocol(S, Prop, P, Known);
    [all...]
ScopeInfo.cpp 137 const ObjCPropertyDecl *Prop)
138 : Base(nullptr, true), Property(Prop) {
156 const ObjCPropertyDecl *Prop) {
157 assert(Msg && Prop);
159 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
203 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) {
206 Prop));
  /frameworks/av/media/libmediametrics/
MediaAnalyticsItem.cpp 246 Prop *prop = &mProps[i]; local
247 if (prop->mNameLen != len) {
250 if (memcmp(name, prop->mName, len) == 0) {
257 MediaAnalyticsItem::Prop *MediaAnalyticsItem::findProp(const char *name) {
266 void MediaAnalyticsItem::Prop::setName(const char *name, size_t len) {
273 MediaAnalyticsItem::Prop *MediaAnalyticsItem::allocateProp(const char *name) {
276 Prop *prop; local
279 prop = &mProps[i]
299 Prop *prop = &mProps[i]; local
314 Prop *prop = allocateProp(name); local
320 Prop *prop = allocateProp(name); local
326 Prop *prop = allocateProp(name); local
333 Prop *prop = allocateProp(name); local
340 Prop *prop = allocateProp(name); local
349 Prop *prop = allocateProp(name); local
363 Prop *prop = allocateProp(name); local
377 Prop *prop = allocateProp(name); local
393 Prop *prop = allocateProp(name); local
408 Prop *prop = findProp(name); local
419 Prop *prop = findProp(name); local
430 Prop *prop = findProp(name); local
451 Prop *prop = findProp(name); local
463 Prop *prop = findProp(name); local
511 Prop *prop = &mProps[i]; local
671 Prop *prop = &mProps[i]; local
763 Prop *prop = &mProps[i]; local
    [all...]
  /frameworks/av/services/mediaanalytics/
MetricsSummarizer.cpp 261 MediaAnalyticsItem::Prop *prop1 = &(single->mProps[i]);
278 MediaAnalyticsItem::Prop *prop2 = summ->findProp(attrName);
334 MediaAnalyticsItem::Prop *ai = (MediaAnalyticsItem::Prop *)a;
335 MediaAnalyticsItem::Prop *bi = (MediaAnalyticsItem::Prop *)b;
343 sizeof(MediaAnalyticsItem::Prop), MetricsSummarizer::PropSorter);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
USRGeneration.h 48 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 84 private static final String PROP_PREFIX = "@prop@"; //$NON-NLS-1$
92 private Map<String, Map<String, Prop>> mAttributesMap =
93 new HashMap<String, Map<String, Prop>>();
202 Map<String, Prop> props = mAttributesMap.get(key);
203 final Prop prop = (props != null) ? props.get(actionId) : null;
205 if (prop != null) {
215 if (prop.isStringEdit()) {
243 if (prop.isToggle()) {
252 } else if (prop.isFlag())
    [all...]
  /device/linaro/bootloader/edk2/ArmVirtPkg/VirtFdtDxe/
VirtFdtDxe.c 156 CONST VOID *Prop;
172 Prop = fdt_getprop (DeviceTreeBase, Node, "bus-range", &Len);
173 if (Prop == NULL || Len != 2 * sizeof(UINT32)) {
178 BusMin = fdt32_to_cpu (((CONST UINT32 *)Prop)[0]);
179 BusMax = fdt32_to_cpu (((CONST UINT32 *)Prop)[1]);
195 Prop = fdt_getprop (DeviceTreeBase, Node, "ranges", &Len);
196 if (Prop == NULL || Len == 0 ||
222 Record = (CONST DTB_PCI_HOST_RANGE_RECORD *)Prop + RecordIdx;
  /external/llvm/utils/TableGen/
CodeGenTarget.h 209 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenTarget.h 186 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /frameworks/base/media/jni/
android_media_MediaMetricsJNI.cpp 58 MediaAnalyticsItem::Prop *prop = &item->mProps[i]; local
59 // build the key parameter from prop->mName
60 jstring keyName = env->NewStringUTF(prop->mName);
62 switch (prop->mType) {
65 keyName, (jint) prop->u.int32Value);
69 keyName, (jlong) prop->u.int64Value);
73 keyName, (jdouble) prop->u.doubleValue);
77 env->NewStringUTF(prop->u.CStringValue));
81 prop->mType, prop->mName)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 372 for (auto *Prop : properties()) {
373 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
374 PO.push_back(Prop);
378 for (auto *Prop : ClassExt->properties()) {
379 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
380 PO.push_back(Prop);
    [all...]

Completed in 1069 milliseconds

1 2 3