Searched defs:Id (Results 76 - 100 of 104) sorted by relevance

12345

/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp503 TopoSigId Id; local
508 Id.push_back(I->first->EnumValue);
509 Id.push_back(I->second->TopoSig);
516 TopoSig = RegBank.getTopoSig(Id);
/external/svox/pico/lib/
H A Dpicocep.c963 picoos_uint16 Id[2], Idd[3]; local
980 Id[0] = Idd[0] = i - 1;
981 Id[1] = Idd[2] = i + 1;
987 Id[0] = Idd[0] = 1;
993 Id[0] = Idd[1] = 2;
1000 Id[0] = Idd[0] = N - 3;
1006 Id[0] = Idd[0] = N - 2;
1025 vecstart = indices[b + Id[j]] * vecsize;
/external/tcpdump/
H A Dprint-snmp.c230 const char **Id; member in struct:__anon31549
542 Class[class].Id[id]);
586 Class[class].Id[id]);
612 Class[class].name, Class[class].Id[id]);
632 printf("C/U/%s", Class[class].Id[id]);
646 Class[class].name, Class[class].Id[id]);
818 printf("[%s]", Class[EXCEPTIONS].Id[elem->id]);
823 Class[CONTEXT].Id[elem->id], elem->asnlen);
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h390 unsigned getID() const { return Id; }
396 Id = static_cast<unsigned short>(I);
423 unsigned short Id; member in class:clang::threadSafety::Variable
532 BlockID(0), Id(0), NumUses(0) {
538 Definition(D), Cvdecl(Cvd), BlockID(0), Id(0), NumUses(0) {
544 BlockID(0), Id(0), NumUses(0) {
1691 Identifier(StringRef Id): SExpr(COP_Identifier), Name(Id) { } argument
/external/clang/include/clang/Serialization/
H A DASTReader.h548 IdentifierInfo *Id; member in class:clang::ASTReader::HiddenName
551 HiddenName(Decl *D) : Kind(Declaration), D(D), Id() { }
554 : Kind(Macro), MMI(MMI), Id(II) { }
565 return std::make_pair(Id, MMI);
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp561 const DeclarationNameInfo &Id) {
562 LookupResult Lookup(*this, Id, LookupOrdinaryName);
572 CorrectTypo(Id, LookupOrdinaryName, CurScope, nullptr, Validator,
578 << Id.getName());
581 Diag(Id.getLoc(), Lookup.empty() ? diag::err_undeclared_var_use
583 << Id.getName();
588 Diag(Id.getLoc(), diag::err_omp_expected_var_arg) << Id.getName();
598 Diag(Id.getLoc(), diag::err_omp_global_var_arg)
615 Diag(Id
559 ActOnOpenMPIdExpression(Scope *CurScope, CXXScopeSpec &ScopeSpec, const DeclarationNameInfo &Id) argument
[all...]
H A DSemaCodeComplete.cpp483 /// Determine whether \p Id is a name reserved for the implementation (C99
485 static bool isReservedName(const IdentifierInfo *Id) { argument
486 if (Id->getLength() < 2)
488 const char *Name = Id->getNameStart();
522 if (const IdentifierInfo *Id = ND->getIdentifier())
523 if (isReservedName(Id) &&
4339 Known.insert(C.Id);
5031 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5032 if (!Id)
5065 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id
[all...]
H A DSemaDeclObjC.cpp3328 IdentifierInfo *Id,
3353 VarDecl *New = VarDecl::Create(Context, CurContext, StartLoc, IdLoc, Id,
3325 BuildObjCExceptionDecl(TypeSourceInfo *TInfo, QualType T, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, bool Invalid) argument
H A DSemaTemplate.cpp2281 IdentifierInfo *Id = D->getIdentifier(); local
2282 assert(Id && "templated class must have an identifier");
2285 TagLoc, *Id)) {
8140 if (const IdentifierInfo *Id = Params->getParam(I)->getIdentifier()) {
8141 Out << Id->getName();
H A DSemaDecl.cpp1519 /// \param Id The name of the Objective-C class we're looking for. If
1520 /// typo-correction fixes this name, the Id will be updated
1530 ObjCInterfaceDecl *Sema::getObjCInterfaceDecl(IdentifierInfo *&Id, argument
1535 NamedDecl *IDecl = LookupSingleName(TUScope, Id, IdLoc, LookupOrdinaryName);
1541 if (TypoCorrection C = CorrectTypo(DeclarationNameInfo(Id, IdLoc),
1544 diagnoseTypo(C, PDiag(diag::err_undef_interface_suggest) << Id);
1546 Id = IDecl->getIdentifier();
12683 IdentifierInfo *Id,
12847 return EnumConstantDecl::Create(Context, Enum, IdLoc, Id, EltTy,
12853 SourceLocation IdLoc, IdentifierInfo *Id,
12680 CheckEnumConstant(EnumDecl *Enum, EnumConstantDecl *LastEnumConst, SourceLocation IdLoc, IdentifierInfo *Id, Expr *Val) argument
12852 ActOnEnumConstant(Scope *S, Decl *theEnumDecl, Decl *lastEnumConst, SourceLocation IdLoc, IdentifierInfo *Id, AttributeList *Attr, SourceLocation EqualLoc, Expr *Val) argument
[all...]
H A DTreeTransform.h893 const IdentifierInfo *Id,
903 Id);
908 *Id, IdLoc);
915 LookupResult Result(SemaRef, Id, IdLoc, Sema::LookupTagName);
946 LookupResult Result(SemaRef, Id, IdLoc, Sema::LookupTagName);
963 << Kind << Id << DC << QualifierLoc.getSourceRange();
970 IdLoc, *Id)) {
971 SemaRef.Diag(KeywordLoc, diag::err_use_with_wrong_tag) << Id;
1563 IdentifierInfo *Id) {
1565 StartLoc, IdLoc, Id);
890 RebuildDependentNameType(ElaboratedTypeKeyword Keyword, SourceLocation KeywordLoc, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Id, SourceLocation IdLoc) argument
1559 RebuildExceptionDecl(VarDecl *ExceptionDecl, TypeSourceInfo *Declarator, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id) argument
[all...]
H A DSemaExpr.cpp1700 Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id, argument
1704 if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1705 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1706 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1708 ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(),
1709 Id.TemplateId->NumArgs);
1712 TemplateName TName = Id.TemplateId->Template.get();
1713 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
1717 NameInfo = GetNameFromUnqualifiedId(Id);
1996 UnqualifiedId &Id,
1993 ActOnIdExpression(Scope *S, CXXScopeSpec &SS, SourceLocation TemplateKWLoc, UnqualifiedId &Id, bool HasTrailingLParen, bool IsAddressOfOperand, CorrectionCandidateCallback *CCC, bool IsInlineAsmIdentifier) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp624 unsigned Id = AFI->createPICLabelUId(); local
625 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id,
637 MIB.addImm(Id);
655 .addImm(Id);
/external/clang/include/clang/AST/
H A DDeclObjC.h519 IdentifierInfo *Id, SourceLocation nameLoc,
521 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
592 ObjCIvarDecl *getIvarDecl(IdentifierInfo *Id) const;
738 IdentifierInfo *Id, SourceLocation CLoc,
772 IdentifierInfo *Id,
1398 SourceLocation IdLoc, IdentifierInfo *Id,
1401 : FieldDecl(ObjCIvar, DC, StartLoc, IdLoc, Id, T, TInfo, BW,
1408 IdentifierInfo *Id, QualType T,
1454 SourceLocation IdLoc, IdentifierInfo *Id,
1456 : FieldDecl(ObjCAtDefsField, DC, StartLoc, IdLoc, Id,
518 ObjCContainerDecl(Kind DK, DeclContext *DC, IdentifierInfo *Id, SourceLocation nameLoc, SourceLocation atStartLoc) argument
1397 ObjCIvarDecl(ObjCContainerDecl *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, AccessControl ac, Expr *BW, bool synthesized) argument
1453 ObjCAtDefsFieldDecl(DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, Expr *BW) argument
1727 ObjCCategoryDecl(DeclContext *DC, SourceLocation AtLoc, SourceLocation ClassNameLoc, SourceLocation CategoryNameLoc, IdentifierInfo *Id, ObjCInterfaceDecl *IDecl, SourceLocation IvarLBraceLoc=SourceLocation(), SourceLocation IvarRBraceLoc=SourceLocation()) argument
1908 IdentifierInfo *Id; member in class:clang::ObjCCategoryImplDecl
1913 ObjCCategoryImplDecl(DeclContext *DC, IdentifierInfo *Id, ObjCInterfaceDecl *classInterface, SourceLocation nameLoc, SourceLocation atStartLoc, SourceLocation CategoryNameLoc) argument
2148 ObjCCompatibleAliasDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id, ObjCInterfaceDecl* aliasedClass) argument
2217 ObjCPropertyDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id, SourceLocation AtLocation, SourceLocation LParenLocation, TypeSourceInfo *T) argument
[all...]
/external/clang/lib/AST/
H A DDecl.cpp1688 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1690 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
1703 IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo,
1705 return new (C, DC) VarDecl(Var, C, DC, StartL, IdL, Id, T, TInfo, S);
2184 SourceLocation IdLoc, IdentifierInfo *Id,
2187 return new (C, DC) ParmVarDecl(ParmVar, C, DC, StartLoc, IdLoc, Id, T, TInfo,
3239 IdentifierInfo *Id, QualType T,
3242 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo,
3414 IdentifierInfo *Id,
3417 EnumDecl *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDec
1686 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass SC) argument
1701 Create(ASTContext &C, DeclContext *DC, SourceLocation StartL, SourceLocation IdL, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S) argument
2182 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, StorageClass S, Expr *DefArg) argument
3237 Create(const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, QualType T, TypeSourceInfo *TInfo, Expr *BW, bool Mutable, InClassInitStyle InitStyle) argument
3412 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, bool IsScoped, bool IsScopedUsingClassTag, bool IsFixed) argument
3487 RecordDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, RecordDecl *PrevDecl) argument
3500 Create(const ASTContext &C, TagKind TK, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, RecordDecl* PrevDecl) argument
3672 Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, IdentifierInfo *Id, QualType Type) argument
3726 Create(ASTContext &C, EnumDecl *CD, SourceLocation L, IdentifierInfo *Id, QualType T, Expr *E, const llvm::APSInt &V) argument
3742 Create(ASTContext &C, DeclContext *DC, SourceLocation L, IdentifierInfo *Id, QualType T, NamedDecl **CH, unsigned CHS) argument
3764 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, TypeSourceInfo *TInfo) argument
3777 Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, IdentifierInfo *Id, TypeSourceInfo *TInfo) argument
[all...]
H A DASTContext.cpp7705 QualType ASTContext::GetBuiltinType(unsigned Id, argument
7708 const char *TypeStr = BuiltinInfo.GetTypeString(Id);
7742 if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h452 void setNodeId(int Id) { NodeId = Id; } argument
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3996 int64_t Id = getParser().getTok().getIntVal();
3997 Kind = (MCLOHType)Id;
3998 // Check that Id does not overflow MCLOHType.
3999 if (!isValidMCLOHType(Kind) || Id != Kind)
4005 int Id = MCLOHNameToId(Name); local
4007 if (Id == -1)
4009 Kind = (MCLOHType)Id;
/external/clang/include/clang/Sema/
H A DDeclSpec.h931 /// \param Id the parsed identifier.
933 void setIdentifier(const IdentifierInfo *Id, SourceLocation IdLoc) { argument
935 Identifier = const_cast<IdentifierInfo *>(Id);
972 /// \param Id the parsed identifier.
977 void setLiteralOperatorId(const IdentifierInfo *Id, SourceLocation OpLoc, argument
980 Identifier = const_cast<IdentifierInfo *>(Id);
1848 void SetIdentifier(IdentifierInfo *Id, SourceLocation IdLoc) { argument
1849 Name.setIdentifier(Id, IdLoc);
2166 IdentifierInfo *Id; member in struct:LambdaIntroducer::LambdaCapture
2171 IdentifierInfo *Id, SourceLocatio
2170 LambdaCapture(LambdaCaptureKind Kind, SourceLocation Loc, IdentifierInfo *Id, SourceLocation EllipsisLoc, ExprResult Init, ParsedType InitCaptureType) argument
2186 addCapture(LambdaCaptureKind Kind, SourceLocation Loc, IdentifierInfo* Id, SourceLocation EllipsisLoc, ExprResult Init, ParsedType InitCaptureType) argument
[all...]
H A DSema.h1882 IdentifierInfo *Id,
1889 SourceLocation IdLoc, IdentifierInfo *Id,
2618 bool checkLiteralOperatorId(const CXXScopeSpec &SS, const UnqualifiedId &Id);
2671 ObjCInterfaceDecl *getObjCInterfaceDecl(IdentifierInfo *&Id,
3114 UnqualifiedId &Id,
3130 SourceLocation IdLoc, IdentifierInfo *Id,
3157 IdentifierInfo *Id);
3360 UnqualifiedId &Id,
3365 void DecomposeUnqualifiedId(const UnqualifiedId &Id,
3520 UnqualifiedId &Id; member in struct:clang::Sema::ActOnMemberAccessExtraArgs
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1144 CAMLprim value llvm_set_function_call_conv(value Id, LLVMValueRef Fn) { argument
1145 LLVMSetFunctionCallConv(Fn, Int_val(Id));
/external/chromium_org/third_party/dom_distiller_js/package/js/
H A Ddomdistiller.js355 function Id(a,b,c,d){var f;Gd();var e;e=new Hd(a,b,c);f=new Nd(e);mb(new nb(f),d);return e.b}
529 function J(a,b){var c,d,e,f,g,h,i,j,k,l;f=ib();d=(g=new Wm,h=new db(g),i=new rb(h),mb(new nb(i),a.c),Rm(g),j=(Rm(g),new Cl(g.u)),I(a),zl(j,a.b),Bl(j,i.d),Al(j,i.b),j);Cg(a.e,ib()-f);f=ib();c=(Fl(d,true,'Start'),Hl(d),Wl(new Yl(d.b),d),l=Gl(d),Fl(d,l,'Classification Complete'),l=Dm((Cm(),Bm),d),Fl(d,l,'Ignore Strictly Not Content blocks'),l=km(rm(sm(tm(pm(new um),0.5))),d),Fl(d,l,'SimilarSiblingContentExpansion: Cross headings'),l=km(rm(sm(tm(qm(pm(new um)),0))),d),Fl(d,l,'SimilarSiblingContentExpansion: Mixed tags'),l=$l(d),Fl(d,l,'HeadingFusion'),l=Ol((Nl(),Ml),d),Fl(d,l,'BlockProximityFusion: Distance 1'),l=ym((xm(),wm),d),Fl(d,l,'BlockFilter'),l=Ol(Ll,d),Fl(d,l,'BlockProximityFusion: Same level content-only'),l=cm((bm(),am),d),Fl(d,l,'Keep Largest Block'),l=Zl(d),Fl(d,l,'Expand Title to Content'),l=gm(d),Fl(d,l,'Largest Block Same Tag Level -> Content'),l=hm(d),Fl(d,l,'List at end filter'),k=M(d),Id(k,d.d,d.c,$doc.documentElement));Bg(a.e,ib()-f);if(c.c==0)return $u;f=ib();e=K(b,c);Ag(a.d,Dl(d));Dg(a.e,ib()-f);return e}
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmtypes.h1929 GLuint Id; member in struct:gl_program
2143 GLuint Id; member in struct:ati_fragment_shader
2492 GLuint Id; /**< hash table ID/name */ member in struct:gl_query_object
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1929 GLuint Id; member in struct:gl_program
2143 GLuint Id; member in struct:ati_fragment_shader
2492 GLuint Id; /**< hash table ID/name */ member in struct:gl_query_object
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1302 milliseconds

12345