Searched defs:II (Results 1 - 25 of 177) sorted by path

12345678

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DR600InstrInfo.cpp147 const InstrItineraryData *II = TM->getInstrItineraryData(); local
148 return TM->getSubtarget<AMDGPUSubtarget>().createDFAPacketizer(II);
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dmd5-1.js218 function II(a,b,c,d,x,s,ac) { function
296 a = II ( a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
297 d = II ( d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
298 c = II ( c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
299 b = II ( b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
300 a = II ( a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
301 d = II ( d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
302 c = II ( c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
303 b = II ( b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 */
304 a = II (
[all...]
/external/clang/include/clang/AST/
H A DASTContext.h2315 IdentifierInfo* II = &Ctx.Idents.get(name); local
2316 return Ctx.Selectors.getSelector(0, &II);
2321 IdentifierInfo* II = &Ctx.Idents.get(name); local
2322 return Ctx.Selectors.getSelector(1, &II);
H A DDecl.h313 LabelDecl(DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II, argument
315 : NamedDecl(Label, DC, IdentL, II), TheStmt(S), LocStart(StartL) {}
319 SourceLocation IdentL, IdentifierInfo *II);
321 SourceLocation IdentL, IdentifierInfo *II,
H A DDeclObjC.h993 if (IdentifierInfo *II = getIdentifier()) {
994 if (II->isOutOfDate()) {
995 updateOutOfDate(*II);
1627 if (IdentifierInfo *II = getIdentifier()) {
1628 if (II->isOutOfDate()) {
1629 updateOutOfDate(*II);
1939 void setIdentifier(IdentifierInfo *II) { Id = II; } argument
H A DDeclarationName.h173 DeclarationName(const IdentifierInfo *II) argument
174 : Ptr(reinterpret_cast<uintptr_t>(II)) {
382 /// with II as the identifier.
383 DeclarationName getCXXLiteralOperatorName(IdentifierInfo *II);
H A DExpr.h4475 void setAccessor(IdentifierInfo *II) { Accessor = II; } argument
H A DExternalASTSource.h131 virtual void updateOutOfDateIdentifier(IdentifierInfo &II) { } argument
/external/clang/include/clang/Basic/
H A DIdentifierTable.h87 /// This is intended to be used for string literals only: II->isStr("foo").
326 /// \p II is allowed to be null, in which case objects of this type have
329 IdentifierInfo *const II; member in class:clang::PoisonIdentifierRAIIObject
332 PoisonIdentifierRAIIObject(IdentifierInfo *II, bool NewValue) argument
333 : II(II), OldValue(II ? II->isPoisoned() : false) {
334 if(II)
335 II
450 IdentifierInfo *II = Entry.getValue(); local
476 IdentifierInfo &II = get(Name); local
492 IdentifierInfo *II = Entry.getValue(); local
610 Selector(IdentifierInfo *II, unsigned nArgs) argument
[all...]
H A DPartialDiagnostic.h359 const IdentifierInfo *II) {
360 PD.AddTaggedVal(reinterpret_cast<intptr_t>(II),
358 operator <<(const PartialDiagnostic &PD, const IdentifierInfo *II) argument
/external/clang/include/clang/Lex/
H A DPreprocessor.h65 IdentifierInfo *II; member in class:clang::TokenValue
68 TokenValue(tok::TokenKind Kind) : Kind(Kind), II(nullptr) {
75 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} argument
78 (!II || II == Tok.getIdentifierInfo());
578 MacroDirective *getMacroDirective(IdentifierInfo *II) const {
579 if (!II->hasMacroDefinition())
582 MacroDirective *MD = getMacroDirectiveHistory(II);
591 getMacroInfo(IdentifierInfo *II) argument
606 appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI, SourceLocation Loc, bool isImported) argument
613 appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI) argument
[all...]
H A DToken.h167 void setIdentifierInfo(IdentifierInfo *II) { argument
168 PtrData = (void*) II;
/external/clang/include/clang/Sema/
H A DDesignator.h46 const IdentifierInfo *II; member in struct:clang::Designator::FieldDesignatorInfo
76 return FieldInfo.II;
126 static Designator getField(const IdentifierInfo *II, SourceLocation DotLoc, argument
130 D.FieldInfo.II = II;
H A DSema.h1225 static const IdentifierInfo *getPrintable(const IdentifierInfo *II) { argument
1226 return II;
1401 ParsedType getTypeName(const IdentifierInfo &II, SourceLocation NameLoc,
1409 TypeSpecifierType isTagName(IdentifierInfo &II, Scope *S);
1411 void DiagnoseUnknownTypeName(IdentifierInfo *&II,
1422 ParsedType ActOnDelayedDefaultTemplateArg(const IdentifierInfo &II,
2592 ObjCProtocolDecl *LookupProtocol(IdentifierInfo *II, SourceLocation IdLoc,
2603 LabelDecl *LookupOrCreateLabel(IdentifierInfo *II, SourceLocation IdentLoc,
2674 NamedDecl *LazilyCreateBuiltin(IdentifierInfo *II, unsigned ID,
2677 NamedDecl *ImplicitlyDefineFunction(SourceLocation Loc, IdentifierInfo &II,
[all...]
/external/clang/include/clang/Serialization/
H A DASTDeserializationListener.h39 IdentifierInfo *II) { }
38 IdentifierRead(serialization::IdentID ID, IdentifierInfo *II) argument
H A DASTReader.h553 HiddenName(IdentifierInfo *II, ModuleMacroInfo *MMI) argument
554 : Kind(Macro), MMI(MMI), Id(II) { }
1796 void SetIdentifierInfo(unsigned ID, IdentifierInfo *II);
1797 void SetGloballyVisibleDecls(IdentifierInfo *II,
1828 void resolvePendingMacro(IdentifierInfo *II, const PendingMacroInfo &PMInfo);
1830 void installPCHMacroDirectives(IdentifierInfo *II,
1833 void installImportedMacro(IdentifierInfo *II, ModuleMacroInfo *MMI,
1840 removeOverriddenMacros(IdentifierInfo *II, AmbiguousMacros &Ambig,
1844 removeOverriddenMacros(IdentifierInfo *II,
2020 /// \param II Th
[all...]
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1029 IdentifierInfo *II = &Ctx.Idents.get(NameString); local
1030 return II->getTokenID() == tok::identifier;
/external/clang/lib/AST/
H A DASTContext.cpp4763 if (IdentifierInfo *II = TT->getDecl()->getIdentifier())
4764 return II->isStr("BOOL");
5360 if (const IdentifierInfo *II = RDecl->getIdentifier()) {
5361 S += II->getName();
5455 const IdentifierInfo *II = OI->getIdentifier(); local
5456 S += II->getName();
H A DCommentSema.cpp344 const IdentifierInfo *II = Param->getIdentifier(); local
345 if (II)
346 CorrectedName = II->getName();
944 const IdentifierInfo *II = ParamVars[i]->getIdentifier(); local
945 if (II && II->getName() == Name)
988 const IdentifierInfo *II = ND->getIdentifier(); local
989 if (!II)
992 StringRef Name = II->getName();
1026 const IdentifierInfo *II local
1078 const IdentifierInfo *II = ND->getIdentifier(); local
[all...]
H A DDecl.cpp2336 IdentifierInfo *II = ND->getIdentifier(); local
2337 return II && II->isStr(Str);
3357 if (IdentifierInfo *II = getIdentifier()) {
3358 if (II->isOutOfDate()) {
3359 updateOutOfDate(*II);
3644 SourceLocation IdentL, IdentifierInfo *II) {
3645 return new (C, DC) LabelDecl(DC, IdentL, II, nullptr, IdentL);
3649 SourceLocation IdentL, IdentifierInfo *II,
3652 return new (C, DC) LabelDecl(DC, IdentL, II, nullpt
3643 Create(ASTContext &C, DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II) argument
3648 Create(ASTContext &C, DeclContext *DC, SourceLocation IdentL, IdentifierInfo *II, SourceLocation GnuLabelL) argument
[all...]
H A DDeclBase.cpp44 void Decl::updateOutOfDate(IdentifierInfo &II) const {
45 getASTContext().getExternalSource()->updateOutOfDateIdentifier(II);
814 const IdentifierInfo *II = ND->getIdentifier(); local
815 return II && II->isStr("std");
H A DDeclarationName.cpp139 if (const IdentifierInfo *II = N.getAsIdentifierInfo())
140 OS << II->getName();
429 DeclarationNameTable::getCXXLiteralOperatorName(IdentifierInfo *II) { argument
435 ID.AddPointer(II);
444 LiteralName->ID = II;
H A DItaniumMangle.cpp336 void mangleSourceName(const IdentifierInfo *II);
525 const IdentifierInfo *II = NS->getOriginalNamespace()->getIdentifier(); local
526 return II && II->isStr("std");
1075 if (const IdentifierInfo *II = Name.getAsIdentifierInfo()) {
1086 mangleSourceName(II);
1243 void CXXNameMangler::mangleSourceName(const IdentifierInfo *II) { argument
1247 Out << II->getLength() << II->getName();
H A DNestedNameSpecifier.cpp47 NestedNameSpecifier *Prefix, IdentifierInfo *II) {
48 assert(II && "Identifier cannot be NULL");
54 Mockup.Specifier = II;
103 NestedNameSpecifier::Create(const ASTContext &Context, IdentifierInfo *II) { argument
104 assert(II && "Identifier cannot be NULL");
108 Mockup.Specifier = II;
46 Create(const ASTContext &Context, NestedNameSpecifier *Prefix, IdentifierInfo *II) argument
H A DTypePrinter.cpp745 IdentifierInfo *II = D->getIdentifier(); local
746 OS << II->getName();
899 if (const IdentifierInfo *II = D->getIdentifier())
900 OS << II->getName();

Completed in 1956 milliseconds

12345678