HomeSort by relevance Sort by last modified time
    Searched defs:Prop (Results 1 - 15 of 15) sorted by null

  /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...]
  /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...]
  /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...]
  /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/clang/lib/Index/
USRGeneration.cpp 141 void GenObjCProperty(StringRef prop) {
142 generateUSRForObjCProperty(prop, Out);
867 void clang::index::generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS) {
868 OS << "(py)" << Prop;
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp     [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...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 17 // expr.prop
18 // where 'expr' is an r-value of Objective-C pointer type and 'prop'
22 // [expr prop]
28 // 'expr.prop *= 100' would be translated to:
29 // [expr setProp: [expr prop] * 100]
579 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty();
580 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
583 T = Prop->getType();
616 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
617 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr)
645 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
    [all...]
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...]
  /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...]
  /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...]
  /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...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 249 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
250 if (!Prop)
277 PropertyDotString += Prop->getName();
287 PropertyDotString += Prop->getName();
591 for (auto *Prop : D->instance_properties()) {
593 !Prop->isDeprecated())
594 migratePropertyNsReturnsInnerPointer(Ctx, Prop);
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/
jackson-databind-2.6.6.jar 

Completed in 1878 milliseconds