/external/chromium_org/v8/src/ |
H A D | unbound-queue-inl.h | 13 template<typename Record> 14 struct UnboundQueue<Record>::Node: public Malloced { 15 explicit Node(const Record& value) 19 Record value; 24 template<typename Record> 25 UnboundQueue<Record>::UnboundQueue() { 26 first_ = new Node(Record()); 31 template<typename Record> 32 UnboundQueue<Record>::~UnboundQueue() { 37 template<typename Record> [all...] |
H A D | unbound-queue.h | 21 template<typename Record> 27 INLINE(bool Dequeue(Record* rec)); 28 INLINE(void Enqueue(const Record& rec)); 30 INLINE(Record* Peek() const);
|
/external/libnfc-nxp/src/ |
H A D | phFriNfc_NdefRecord.c | 19 * \brief NFC Ndef Record component file. 32 * \name \name NDEF Record Tools Header 67 * \param[in,out] NumberOfRawRecords Length of the Record pointer array. The caller has to provide 159 /* Check the First Record(MB = 0) for TNF = 0x06(Unchanged) */ 170 /* First Record i.e., MB = 1, TNF != 0x05 and TypeLength = 0 */ 191 /* For Each Record Check whether it contains the ME bit set and CF bit Set 356 /* For Each Record Check whether it contains the ME bit set 388 uint32_t phFriNfc_NdefRecord_GetLength(phFriNfc_NdefRecord_t *Record) argument 393 FlagCheck=phFriNfc_NdefRecord_NdefFlag(Record->Tnf,PH_FRINFC_NDEFRECORD_TNFBYTE_MASK); 407 RecordLength += Record 463 phFriNfc_NdefRecord_Parse(phFriNfc_NdefRecord_t *Record, uint8_t *RawRecord) argument 548 phFriNfc_NdefRecord_Generate(phFriNfc_NdefRecord_t *Record, uint8_t *Buffer, uint32_t MaxBufferSize, uint32_t *BytesWritten) argument 685 phFriNfc_NdefRecord_RecordFlag( uint8_t *Record) argument 713 phFriNfc_NdefRecord_TypeNameFormat( uint8_t *Record) argument 759 phFriNfc_NdefRecord_RecordIDCheck( uint8_t *Record, uint8_t *TypeLength, uint8_t *TypeLengthByte, uint8_t *PayloadLengthByte, uint32_t *PayloadLength, uint8_t *IDLengthByte, uint8_t *IDLength) argument [all...] |
/external/chromium_org/v8/test/cctest/ |
H A D | test-circular-queue.cc | 39 typedef v8::base::AtomicWord Record; typedef 41 SamplingCircularQueue<Record, kMaxRecordsInQueue> scq; 46 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) { 47 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue()); 59 Record* rec = reinterpret_cast<Record*>(scq.StartEnqueue()); 65 for (Record i = 1; i < 1 + kMaxRecordsInQueue; ++i) { 66 Record* rec = reinterpret_cast<Record*>(sc 103 typedef v8::base::AtomicWord Record; typedef in namespace:__anon17398 [all...] |
H A D | test-unbound-queue.cc | 39 typedef int Record; typedef 40 UnboundQueue<Record> cq; 44 Record rec = 0; 52 typedef int Record; typedef 53 UnboundQueue<Record> cq; 61 Record rec = 0;
|
/external/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 39 RecordData &Record; member in class:clang::ASTDeclWriter 45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record) argument 46 : Writer(Writer), Context(Context), Record(Record) { 138 CD->NumCtorInitializers, Record); 151 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record); 158 Record.push_back(FD->doesThisDeclarationHaveABody()); 165 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record); 166 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record); 167 Record 1840 RecordData Record; local [all...] |
H A D | ASTReaderStmt.cpp | 34 const ASTReader::RecordData &Record; member in class:clang::ASTStmtReader 83 const ASTReader::RecordData &Record, unsigned &Idx) 84 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { } 111 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx); 113 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx)); 114 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx)); 117 Reader.ReadTemplateArgumentLoc(F, Record, Idx)); 127 S->setSemiLoc(ReadSourceLocation(Record, Idx)); 128 S->HasLeadingEmptyMacro = Record[Id 81 ASTStmtReader(ASTReader &Reader, ModuleFile &F, llvm::BitstreamCursor &Cursor, const ASTReader::RecordData &Record, unsigned &Idx) argument 1665 const ASTReader::RecordData &Record; member in class:clang::OMPClauseReader 1668 OMPClauseReader(ASTStmtReader *R, ASTContext &C, const ASTReader::RecordData &Record, unsigned &Idx) argument 2007 RecordData Record; local [all...] |
H A D | ASTWriterStmt.cpp | 34 ASTWriter::RecordData &Record; member in class:clang::ASTStmtWriter 40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record) argument 41 : Writer(Writer), Record(Record) { } 54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record); 55 Writer.AddSourceLocation(Args.LAngleLoc, Record); 56 Writer.AddSourceLocation(Args.RAngleLoc, Record); 58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record); 66 Writer.AddSourceLocation(S->getSemiLoc(), Record); 67 Record 1666 ASTWriter::RecordData &Record; member in class:clang::OMPClauseWriter 1668 OMPClauseWriter(ASTStmtWriter *W, ASTWriter::RecordData &Record) argument 1897 RecordData Record; local 1967 RecordData Record; local [all...] |
H A D | ASTWriter.cpp | 81 ASTWriter::RecordDataImpl &Record; member in class:__anon18127::ASTTypeWriter 87 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) argument 88 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { } 105 Writer.AddTypeRef(T->getElementType(), Record); 110 Writer.AddTypeRef(T->getPointeeType(), Record); 115 Writer.AddTypeRef(T->getOriginalType(), Record); 120 Writer.AddTypeRef(T->getOriginalType(), Record); 121 Writer.AddTypeRef(T->getAdjustedType(), Record); 126 Writer.AddTypeRef(T->getPointeeType(), Record); 200 addExceptionSpec(ASTWriter &Writer, const FunctionProtoType *T, ASTWriter::RecordDataImpl &Record) argument 433 ASTWriter::RecordDataImpl &Record; member in class:__anon18128::TypeLocWriter 436 TypeLocWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) argument 656 EmitBlockID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, ASTWriter::RecordDataImpl &Record) argument 672 EmitRecordID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, ASTWriter::RecordDataImpl &Record) argument 682 AddStmtsExprs(llvm::BitstreamWriter &Stream, ASTWriter::RecordDataImpl &Record) argument 794 RecordData Record; local 1035 RecordData Record; local 1064 RecordData Record; local 1079 RecordData Record; local 1274 RecordData Record; local 1301 RecordData Record; local 1636 RecordData Record; local 1660 RecordData Record; local 1921 RecordData Record; local 2149 RecordData Record; local 2338 RecordData Record; local 2527 RecordData Record; local 2601 RecordData Record; local 2644 RecordData Record; local 2714 RecordData Record; local 2911 RecordData Record; local 3321 RecordData Record; local 3340 RecordData Record; local 3626 RecordData Record; local 3653 RecordData Record; local 3662 RecordData Record; local 3673 RecordData Record; local 3747 RecordData Record; local 3800 RecordData Record; local 3856 RecordData Record; local 3867 WriteAttributes(ArrayRef<const Attr*> Attrs, RecordDataImpl &Record) argument 3881 AddToken(const Token &Tok, RecordDataImpl &Record) argument 3894 AddString(StringRef Str, RecordDataImpl &Record) argument 3899 AddVersionTuple(const VersionTuple &Version, RecordDataImpl &Record) argument 3991 AddLazyVectorDecls(ASTWriter &Writer, Vector &Vec, ASTWriter::RecordData &Record) argument 4187 RecordData Record; local 4227 ASTWriter::UpdateRecord &Record = DeclUpdates[TU]; local 4504 RecordData Record; local 4630 AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) argument 4634 AddSourceRange(SourceRange Range, RecordDataImpl &Record) argument 4639 AddAPInt(const llvm::APInt &Value, RecordDataImpl &Record) argument 4645 AddAPSInt(const llvm::APSInt &Value, RecordDataImpl &Record) argument 4650 AddAPFloat(const llvm::APFloat &Value, RecordDataImpl &Record) argument 4654 AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) argument 4697 AddSelectorRef(const Selector SelRef, RecordDataImpl &Record) argument 4720 AddCXXTemporary(const CXXTemporary *Temp, RecordDataImpl &Record) argument 4724 AddCXXBaseSpecifiersRef(CXXBaseSpecifier const *Bases, CXXBaseSpecifier const *BasesEnd, RecordDataImpl &Record) argument 4734 AddTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind, const TemplateArgumentLocInfo &Arg, RecordDataImpl &Record) argument 4763 AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg, RecordDataImpl &Record) argument 4778 AddTypeSourceInfo(TypeSourceInfo *TInfo, RecordDataImpl &Record) argument 4781 AddTypeRef(QualType(), Record); local 4788 AddTypeLoc(TypeLoc TL, RecordDataImpl &Record) argument 4796 AddTypeRef(QualType T, RecordDataImpl &Record) argument 4842 AddDeclRef(const Decl *D, RecordDataImpl &Record) argument 4932 AddDeclarationName(DeclarationName Name, RecordDataImpl &Record) argument 4966 AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc, DeclarationName Name, RecordDataImpl &Record) argument 4978 Record); local 4981 Record); local 4987 Record); local 4999 AddDeclarationNameInfo(const DeclarationNameInfo &NameInfo, RecordDataImpl &Record) argument 5006 AddQualifierInfo(const QualifierInfo &Info, RecordDataImpl &Record) argument 5014 AddNestedNameSpecifier(NestedNameSpecifier *NNS, RecordDataImpl &Record) argument 5057 AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS, RecordDataImpl &Record) argument 5106 AddTemplateName(TemplateName Name, RecordDataImpl &Record) argument 5160 AddTemplateArgument(const TemplateArgument &Arg, RecordDataImpl &Record) argument 5203 AddTemplateParameterList(const TemplateParameterList *TemplateParams, RecordDataImpl &Record) argument 5218 AddTemplateArgumentList(const TemplateArgumentList *TemplateArgs, RecordDataImpl &Record) argument 5227 AddASTTemplateArgumentListInfo(const ASTTemplateArgumentListInfo *ASTTemplArgList, RecordDataImpl &Record) argument 5239 AddUnresolvedSet(const ASTUnresolvedSet &Set, RecordDataImpl &Record) argument 5248 AddCXXBaseSpecifier(const CXXBaseSpecifier &Base, RecordDataImpl &Record) argument 5262 RecordData Record; local 5290 AddCXXCtorInitializers( const CXXCtorInitializer * const *CtorInitializers, unsigned NumCtorInitializers, RecordDataImpl &Record) argument 5328 AddCXXDefinitionData(const CXXRecordDecl *D, RecordDataImpl &Record) argument [all...] |
H A D | ASTReaderDecl.cpp | 43 const RecordData &Record; member in class:clang::ASTDeclReader 196 const RecordData &Record, unsigned &Idx) 198 RawLocation(RawLocation), Record(Record), Idx(Idx), 221 const RecordData &Record); 352 GetTypeSourceInfo(Record, Idx); 355 DD->DeclInfo = GetTypeSourceInfo(Record, Idx); 371 if (Record[Idx++]) { 387 GlobalDeclID SemaDCIDForTemplateParmDecl = ReadDeclID(Record, Idx); 388 GlobalDeclID LexicalDCIDForTemplateParmDecl = ReadDeclID(Record, Id 193 ASTDeclReader(ASTReader &Reader, ModuleFile &F, DeclID thisDeclID, unsigned RawLocation, const RecordData &Record, unsigned &Idx) argument 1206 ReadCXXDefinitionData( struct CXXRecordDecl::DefinitionData &Data, const RecordData &Record, unsigned &Idx) argument 2145 ReadAttributes(ModuleFile &F, AttrVec &Attrs, const RecordData &Record, unsigned &Idx) argument 2608 RecordData Record; local 2887 RecordData Record; local 3153 UpdateDecl(Decl *D, ModuleFile &ModuleFile, const RecordData &Record) argument 3302 Reader.Context.setManglingNumber(cast<NamedDecl>(D), Record[Idx++]); local 3306 Reader.Context.setStaticLocalNumber(cast<VarDecl>(D), Record[Idx++]); local [all...] |
/external/chromium_org/sync/util/ |
H A D | extensions_activity.h | 25 struct SYNC_EXPORT Record { struct in class:syncer::ExtensionsActivity 26 Record(); 27 ~Record(); 30 // for the activity reported in this Record. 38 typedef std::map<std::string, Record> Records;
|
H A D | extensions_activity.cc | 9 ExtensionsActivity::Record::Record() function in class:syncer::ExtensionsActivity::Record 12 ExtensionsActivity::Record::~Record() {} 34 Record& record = records_[extension_id];
|
/external/smack/src/org/xbill/DNS/ |
H A D | EmptyRecord.java | 14 class EmptyRecord extends Record { 20 Record
|
H A D | Update.java | 31 Record soa = Record.newRecord(zone, Type.SOA, DClass.IN); 47 newPrereq(Record rec) { 52 newUpdate(Record rec) { 62 newPrereq(Record.newRecord(name, Type.ANY, DClass.ANY, 0)); 71 newPrereq(Record.newRecord(name, type, DClass.ANY, 0)); 84 newPrereq(Record.fromString(name, type, dclass, 0, record, origin)); 97 newPrereq(Record.fromString(name, type, dclass, 0, tokenizer, origin)); 107 present(Record record) { 117 newPrereq(Record [all...] |
/external/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 64 static bool ConvertToString(ArrayRef<uint64_t> Record, unsigned Idx, argument 66 if (Idx > Record.size()) 69 for (unsigned i = Idx, e = Record.size(); i != e; ++i) 70 Result += (char)Record[i]; 495 SmallVector<uint64_t, 64> Record; 509 case BitstreamEntry::Record: 515 Record.clear(); 516 switch (Stream.readRecord(Entry.ID, Record)) { 521 if (Record.size() & 1) 524 for (unsigned i = 0, e = Record 2264 SmallVector<uint64_t, 64> Record; local [all...] |
/external/llvm/utils/TableGen/ |
H A D | CodeGenTarget.h | 23 #include "llvm/TableGen/Record.h" 53 MVT::SimpleValueType getValueType(Record *Rec); 60 std::string getQualifiedName(const Record *R); 66 Record *TargetRec; 68 mutable DenseMap<const Record*, CodeGenInstruction*> Instructions; 70 mutable std::vector<Record*> RegAltNameIndices; 83 Record *getTargetRecord() const { return TargetRec; } 92 Record *getInstructionSet() const; 96 Record *getAsmParser() const; 101 Record *getAsmParserVarian [all...] |
H A D | CodeGenSchedule.h | 21 #include "llvm/TableGen/Record.h" 30 typedef std::vector<Record*> RecVec; 31 typedef std::vector<Record*>::const_iterator RecIter; 49 Record *TheDef; 61 CodeGenSchedRW(unsigned Idx, Record *Def) 130 Record *ItinClassDef; 147 bool isKeyEqual(Record *IC, const IdxVec &W, const IdxVec &R) { 177 Record *ModelDef; 178 Record *ItinsDef; 199 CodeGenProcModel(unsigned Idx, const std::string &Name, Record *MDe [all...] |
/external/llvm/lib/TableGen/ |
H A D | TGParser.h | 21 #include "llvm/TableGen/Record.h" 25 class Record; 45 /// ForeachLoop - Record the iteration state associated with a for loop. 69 // Record tracker 106 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV); 107 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName, 109 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName, 113 bool AddSubClass(Record *Rec, SubClassReference &SubClass); 130 bool ProcessForeachDefs(Record *CurRec, SMLoc Loc); 131 bool ProcessForeachDefs(Record *CurRe [all...] |
/external/clang/test/CodeGen/ |
H A D | pointer-signext.c | 10 #define CR(Record, TYPE, Field) \ 11 ((TYPE *) ((unsigned char *) (Record) - (unsigned char *) &(((TYPE *) 0)->Field)))
|
/external/llvm/include/llvm/TableGen/ |
H A D | SetTheory.h | 60 class Record; 65 typedef std::vector<Record*> RecVec; 66 typedef SmallSetVector<Record*, 16> RecSet; 80 /// Expander - A callback function that can transform a Record representing a 88 virtual void expand(SetTheory&, Record*, RecSet &Elts) =0; 94 typedef std::map<Record*, RecVec> ExpandMap; 111 /// FieldName in the Record to get the set elements. That is all that is 136 const RecVec *expand(Record *Set);
|
/external/chromium_org/ui/gfx/geometry/ |
H A D | r_tree.h | 62 class Record : public RecordBase { class in class:gfx::RTree 64 Record(const Rect& rect, const Key& key); 65 virtual ~Record(); 71 DISALLOW_COPY_AND_ASSIGN(Record); 76 typedef base::hash_map<Key, Record*> RecordMap; 99 Record* existing_record = it->second; 124 record.reset(new Record(rect, key)); 125 record_map_.insert(std::make_pair(key, static_cast<Record*>(record.get()))); 145 Record* record = it->second; 162 const Record* recor 171 RTree<Key>::Record::Record(const Rect& rect, const Key& key) function in class:gfx::RTree::Record [all...] |
/external/clang/utils/TableGen/ |
H A D | ClangSACheckersEmitter.cpp | 16 #include "llvm/TableGen/Record.h" 28 static bool isHidden(const Record &R) { 38 static bool isCheckerNamed(const Record *R) { 42 static std::string getPackageFullName(const Record *R); 44 static std::string getParentPackageFullName(const Record *R) { 51 static std::string getPackageFullName(const Record *R) { 57 static std::string getCheckerFullName(const Record *R) { 66 static std::string getStringValue(const Record &R, StringRef field) { 74 llvm::DenseSet<const Record*> Checkers; 75 llvm::DenseSet<const Record *> SubGroup [all...] |
H A D | ClangASTNodesEmitter.cpp | 14 #include "llvm/TableGen/Record.h" 28 typedef std::multimap<Record*, Record*> ChildMap; 32 Record Root; 46 std::string baseName(Record &R) { 53 std::pair<Record *, Record *> EmitNode (const ChildMap &Tree, raw_ostream& OS, 54 Record *Base); 72 std::pair<Record *, Record *> ClangASTNodesEmitte [all...] |
/external/clang/lib/Frontend/ |
H A D | SerializedDiagnosticPrinter.cpp | 161 PresumedLoc PLoc, RecordDataImpl &Record, 165 void AddLocToRecord(SourceLocation Loc, RecordDataImpl &Record, argument 169 Record, TokSize); 173 void AddCharSourceRangeToRecord(CharSourceRange R, RecordDataImpl &Record, 209 RecordData Record; member in struct:__anon17929::SDiagsWriter::SharedState 252 RecordDataImpl &Record) { 253 Record.clear(); 254 Record.push_back(ID); 255 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record); 261 Record 250 EmitBlockID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, RecordDataImpl &Record) argument 270 EmitRecordID(unsigned ID, const char *Name, llvm::BitstreamWriter &Stream, RecordDataImpl &Record) argument 282 AddLocToRecord(SourceLocation Loc, const SourceManager *SM, PresumedLoc PLoc, RecordDataImpl &Record, unsigned TokSize) argument 302 AddCharSourceRangeToRecord(CharSourceRange Range, RecordDataImpl &Record, const SourceManager &SM) argument 324 RecordData Record; local 376 RecordData &Record = State->Record; local 462 RecordData &Record = State->Record; local 481 RecordData Record; local 510 RecordData Record; local 590 RecordData &Record = State->Record; local 651 RecordData &Record = State->Record; local [all...] |
/external/chromium_org/content/public/browser/ |
H A D | notification_registrar.cc | 14 struct NotificationRegistrar::Record { struct in class:content::NotificationRegistrar 15 bool operator==(const Record& other) const; 22 bool NotificationRegistrar::Record::operator==(const Record& other) const { 50 Record record = { observer, type, source }; 61 Record record = { observer, type, source }; 108 Record record = { observer, type, source };
|