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

  /external/clang/lib/Analysis/
BodyFarm.cpp 387 const ObjCPropertyDecl *Prop) {
389 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
394 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
406 if (I->getPropertyDecl() != Prop)
420 Prop->getType().getNonReferenceType()))
430 const VarDecl *selfVar = Prop->getGetterMethodDecl()->getSelfDecl();
439 if (!Prop->getType()->isReferenceType())
457 const ObjCPropertyDecl *Prop = D->findPropertyDecl();
458 if (!Prop)
465 Val = createObjCPropertyGetter(C, Prop);
    [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 134 void GenObjCProperty(StringRef prop) {
135 generateUSRForObjCProperty(prop, Out);
838 void clang::index::generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS) {
839 OS << "(py)" << Prop;
  /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)
581 return !Prop->hasAttr<IBOutletAttr>();
583 T = Prop->getType();
616 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty() local
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...]
  /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 248 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
249 if (!Prop)
276 PropertyDotString += Prop->getName();
286 PropertyDotString += Prop->getName();
591 for (auto *Prop : D->properties()) {
593 !Prop->isDeprecated())
594 migratePropertyNsReturnsInnerPointer(Ctx, Prop);
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 418 milliseconds