HomeSort by relevance Sort by last modified time
    Searched full:pdecl (Results 1 - 25 of 51) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
lex.c 526 if ( p->pdecl != NULL || GenAST )
529 fprintf(f, "AST **%s",(p->pdecl!=NULL)?",":"");
531 if ( p->pdecl!=NULL ) fprintf(f, "%s", p->pdecl);
608 if ( p->pdecl != NULL || GenAST )
610 if ( GenAST ) fprintf(f, "ASTBase **%s",(p->pdecl!=NULL)?",":"");
611 if ( p->pdecl!=NULL ) fprintf(f, "%s", p->pdecl);
622 if ( p->pdecl != NULL || GenAST )
624 if ( GenAST ) fprintf(f, "ASTBase **%s",(p->pdecl!=NULL)?",":"");
    [all...]
antlr.g 828 char *pdecl=NULL, *ret=NULL, *a; CurRetDef = CurParmDef = NULL;
858 << pdecl = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
859 require(pdecl!=NULL, "rule rule: cannot allocate param decl");
860 strcpy(pdecl, LATEXT(1));
861 CurParmDef = pdecl;
909 CurRuleBlk->pdecl = pdecl;
    [all...]
antlr.c 502 char *pdecl=NULL, *ret=NULL, *a; CurRetDef = CurParmDef = NULL; local
568 pdecl = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char));
569 require(pdecl!=NULL, "rule rule: cannot allocate param decl");
570 strcpy(pdecl, LATEXT(1));
571 CurParmDef = pdecl;
659 CurRuleBlk->pdecl = pdecl;
    [all...]
syn.h 352 char *pdecl; /* point to declaration of parameters on rule member in struct:Junction::_junct
gen.c     [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssrulecollection.h 25 Data(CFX_CSSSelector* pSel, CFX_CSSDeclaration* pDecl);
cfx_cssrulecollection.cpp 55 CFX_CSSDeclaration* pDecl)
56 : pSelector(pSel), pDeclaration(pDecl) {}
cfx_cssstyleselector.cpp 86 std::unique_ptr<CFX_CSSDeclaration> pDecl;
88 pDecl = pdfium::MakeUnique<CFX_CSSDeclaration>();
91 AppendInlineStyle(pDecl.get(), styleString);
93 pDecl->AddProperty(CFX_GetCSSPropertyByEnum(CFX_CSSProperty::TextAlign),
97 ApplyDeclarations(declArray, pDecl.get(), pDest);
139 void CFX_CSSStyleSelector::AppendInlineStyle(CFX_CSSDeclaration* pDecl,
141 ASSERT(pDecl && !style.IsEmpty());
160 pDecl->AddProperty(table, strValue);
162 pDecl->AddProperty(wsName, WideString(strValue));
cfx_cssstyleselector.h 52 void AppendInlineStyle(CFX_CSSDeclaration* pDecl, const WideString& style);
  /external/clang/test/SemaCXX/
elaborated-type-specifier.cpp 5 // C++ [basic.scope.pdecl]p5.
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 514 ObjCPropertyDecl *PDecl = CreatePropertyDecl(S, CDecl, AtLoc, LParenLoc,
523 ProcessPropertyDecl(PDecl);
524 return PDecl;
527 if (!Context.hasSameType(PIDecl->getType(), PDecl->getType())) {
537 QualType ClassExtPropertyT = Context.getCanonicalType(PDecl->getType());
544 diag::err_type_mismatch_continuation_class) << PDecl->getType();
552 checkAtomicPropertyMismatch(*this, PIDecl, PDecl, true);
555 ProcessPropertyDecl(PDecl);
556 return PDecl;
614 ObjCPropertyDecl *PDecl = ObjCPropertyDecl::Create(Context, DC
    [all...]
SemaDeclObjC.cpp     [all...]
SemaExprObjC.cpp     [all...]
SemaExprMember.cpp 407 static Decl *FindGetterSetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
412 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(
415 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
418 for (const auto *I : PDecl->protocols()) {
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp     [all...]
DeclObjC.cpp     [all...]
  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 206 if (ObjCPropertyDecl *PDecl = PropRefExp->getExplicitProperty()) {
207 if (!SynthesizedProperties.count(PDecl))
ObjCMT.cpp 607 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition())
608 for (const auto *Property : PDecl->instance_properties()) {
636 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition()) {
637 if (PDecl->meth_begin() == PDecl->meth_end())
639 for (const auto *MD : PDecl->methods()) {
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/vulkan-validation-layers/scripts/
generator.py 444 pdecl = self.genOpts.apicall
455 pdecl += noneStr(proto.text)
463 pdecl += self.makeProtoName(text, tail)
466 pdecl += text + tail
500 return [ pdecl + indentdecl, tdecl + paramdecl ]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/
generator.py 435 pdecl = self.genOpts.apicall
446 pdecl += noneStr(proto.text)
454 pdecl += self.makeProtoName(text, tail)
457 pdecl += text + tail
491 return [ pdecl + indentdecl, tdecl + paramdecl ]
  /frameworks/native/opengl/tools/glgen2/registry/
reg.py 472 pdecl = self.genOpts.apicall
483 pdecl += noneStr(proto.text)
491 pdecl += self.genOpts.apientry + text + tail
494 pdecl += text + tail
510 return [ pdecl + paramdecl, tdecl + paramdecl ]
    [all...]
  /external/clang/lib/Parse/
ParseTemplate.cpp 540 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
643 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
691 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
device9.h 679 IDirect3DVertexDeclaration9 *pDecl );

Completed in 907 milliseconds

1 2 3