HomeSort by relevance Sort by last modified time
    Searched refs:Record (Results 226 - 250 of 355) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/utils/TableGen/
DAGISelMatcher.h 26 class Record;
49 RecordNode, // Record the current node.
50 RecordChild, // Record a child of the current node.
51 RecordMemRef, // Record the memref in the current node.
140 /// isSimplePredicateOrRecordNode - Return true if this is a record node or
311 /// CaptureGlueInputMatcher - If the current record has a glue input, record
371 /// node as the specified match that was recorded with 'Record'. This is used
901 Record *DestPhysReg;
903 EmitCopyToRegMatcher(unsigned srcSlot, Record *destPhysReg
    [all...]
FastISelEmitter.cpp 25 #include "llvm/TableGen/Record.h"
211 Record *Rec = PredFn.getOrigPatFragRecord()->getRecord();
252 Record *OpLeafRec = OpDI->getDef();
390 static std::string getOpcodeName(Record *Op, CodeGenDAGPatterns &CGP) {
412 Record *OpLeafRec = cast<DefInit>(Op->getLeafValue())->getDef();
430 // Scan through all the patterns and record the simple ones.
439 Record *Op = Dst->getOperator();
465 Record *Op0Rec = II.Operands[0].Rec;
493 Record *InstPatOp = InstPatNode->getOperator();
557 "Duplicate record in FastISel table!")
    [all...]
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 290 bool VisitCXXRecordDecl(CXXRecordDecl *Record) {
291 if (Record->getName() == "X") {
292 Replace = Replacement(*SM, Record, "");
  /external/clang/lib/Sema/
SemaTemplate.cpp 59 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
71 if (Record->isInjectedClassName()) {
72 Record = cast<CXXRecordDecl>(Record->getDeclContext());
73 if (Record->getDescribedClassTemplate())
74 return Record->getDescribedClassTemplate();
77 = dyn_cast<ClassTemplateSpecializationDecl>(Record))
    [all...]
MultiplexExternalSemaSource.cpp 151 bool MultiplexExternalSemaSource::layoutRecordType(const RecordDecl *Record,
158 if (Sources[i]->layoutRecordType(Record, Size, Alignment, FieldOffsets,
SemaCXXScopeSpec.cpp 36 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
37 if (!Record->isDependentContext() ||
38 Record->isCurrentInstantiation(CurContext))
39 return Record;
85 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
86 return Record;
    [all...]
SemaTemplateInstantiate.cpp 509 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
511 if (isa<ClassTemplateSpecializationDecl>(Record))
514 << Context.getTypeDeclType(Record)
    [all...]
  /external/chromium_org/cc/resources/
picture_pile.cc 21 // Layout pixel buffer around the visible layer rect to record. Any base
93 // Walk through all pictures in the rect of interest and record.
118 (*pic)->Record(painter, tile_grid_info_, stats_instrumentation);
  /external/chromium_org/media/audio/
audio_input_unittest.cc 158 #define MAYBE_Record Record
  /external/clang/include/clang/AST/
CXXInheritance.h 49 /// \brief The record decl of the class that the base is a base of.
138 /// RecordPaths - Whether Sema::IsDerivedFrom should record paths
166 const CXXRecordDecl *Record,
174 /// BasePaths - Construct a new BasePaths structure to record the
  /external/clang/lib/Lex/
Preprocessor.cpp 70 MacroArgCache(0), Record(0), MIChainHead(0), MICache(0),
823 if (Record)
826 Record = new PreprocessingRecord(getSourceManager());
827 addPPCallbacks(Record);
  /external/smack/src/org/xbill/DNS/
SIGBase.java 15 abstract class SIGBase extends Record {
83 /** Converts the RRSIG/SIG Record to a String */
131 * different than the record's domain name if the record is a wildcard
132 * record.
WKSRecord.java 15 public class WKSRecord extends Record {
583 Record
589 * Creates a WKS Record from the given data
  /external/smack/src/org/xbill/DNS/tests/
xfrin.java 62 Record [] ns = l.run();
64 System.out.println("failed to look up NS record: " +
  /external/clang/include/clang/Sema/
Lookup.h 348 void setNamingClass(CXXRecordDecl *Record) {
349 NamingClass = Record;
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 52 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
90 /// CollectBlockInfoNames - This is called by clients that want block/record
122 // Otherwise, add a new record.
136 /// Record - This is a record with a specific AbbrevID.
143 Record
158 BitstreamEntry E; E.Kind = Record; E.ID = AbbrevID; return E;
473 /// over the body of this block. If the block record is malformed, return
522 // Record Processing
541 /// skipRecord - Read the current record and discard it
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-common-private.hh 57 struct Record
76 * the Record */
82 struct RecordArrayOf : SortedArrayOf<Record<Type> > {
86 * for Record types. Instead, we return the correct Null(Tag)
96 const Record<Type> *arr = this->sub_array (start_offset, record_count);
200 const Record<LangSys>::sanitize_closure_t * = NULL) {
239 const Record<Script>::sanitize_closure_t * = NULL) {
486 const Record<Feature>::sanitize_closure_t *closure) {
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 531 case Record:
661 // 4. the context is not a record
680 "Access specifier is AS_none inside a record decl");
769 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) {
770 if (Record->getDescribedClassTemplate())
773 if (Record->isDependentLambda())
951 // We may have already loaded just the fields of this record, in which case
    [all...]
DeclCXX.cpp 188 // Record if this base is the first non-literal field or base.
500 // Record if we see any constexpr constructors which are neither copy
554 // We don't record specializations.
678 // Record if this field is the first non-literal or volatile field or base.
786 // We don't want to expend bits in the state of the record decl
    [all...]
ExprCXX.cpp 64 // Loop all record redeclaration looking for an uuid attribute.
730 "Expression bound to a temporary must have record or array type!");
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-common-private.hh 57 struct Record
76 * the Record */
82 struct RecordArrayOf : SortedArrayOf<Record<Type> > {
86 * for Record types. Instead, we return the correct Null(Tag)
96 const Record<Type> *arr = this->sub_array (start_offset, record_count);
201 const Record<LangSys>::sanitize_closure_t * = NULL) {
240 const Record<Script>::sanitize_closure_t * = NULL) {
487 const Record<Feature>::sanitize_closure_t *closure) {
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 80 TKCASE(Record);
393 case Type::Record:
398 if (const RecordType *Record = TP->getAs<RecordType>())
399 D = Record->getDecl();
464 TKIND(Record);
772 // We recurse into all record fields to detect incomplete and dependent types.
783 // If a field of the parent record is incomplete, lookup will fail.
  /external/chromium_org/chrome/browser/resources/file_manager/js/
metrics.js 94 * Record an enum value.
  /external/clang/lib/Frontend/
ASTConsumers.cpp 210 case Decl::Record: {
381 case Decl::Record:
  /frameworks/compile/slang/
slang_rs_export_type.cpp 185 case clang::Type::Record: {
388 case clang::Type::Record: {
628 case clang::Type::Record: {
703 case clang::Type::Record: {
881 if ((T == NULL) || (T->getTypeClass() != clang::Type::Record))
    [all...]

Completed in 1803 milliseconds

1 2 3 4 5 6 7 8 91011>>