Home
last modified time | relevance | path

Searched refs:remapper (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DSymbolTable.cpp166 TVariable::TVariable(const TVariable& copyOf, TStructureMap& remapper) : TSymbol(copyOf) in TVariable() argument
168 type.copyType(copyOf.type, remapper); in TVariable()
183 TVariable* TVariable::clone(TStructureMap& remapper) in clone() argument
185 TVariable *variable = new TVariable(*this, remapper); in clone()
190 TFunction::TFunction(const TFunction& copyOf, TStructureMap& remapper) : TSymbol(copyOf) in TFunction() argument
195 parameters.back().copyParam(copyOf.parameters[i], remapper); in TFunction()
198 returnType.copyType(copyOf.returnType, remapper); in TFunction()
204 TFunction* TFunction::clone(TStructureMap& remapper) in clone() argument
206 TFunction *function = new TFunction(*this, remapper); in clone()
211 TSymbolTableLevel* TSymbolTableLevel::clone(TStructureMap& remapper) in clone() argument
[all …]
DSymbolTable.h54 virtual TSymbol* clone(TStructureMap& remapper) = 0;
103 TVariable(const TVariable&, TStructureMap& remapper); // copy constructor
104 virtual TVariable* clone(TStructureMap& remapper);
122 void copyParam(const TParameter& param, TStructureMap& remapper) in copyParam()
125 type = param.type->clone(remapper); in copyParam()
176 TFunction(const TFunction&, TStructureMap& remapper);
177 virtual TFunction* clone(TStructureMap& remapper);
234 TSymbolTableLevel* clone(TStructureMap& remapper);
DTypes.h107 void copyType(const TType& copyOf, TStructureMap& remapper) in copyType() argument
119 if ((iter = remapper.find(structure)) == remapper.end()) { in copyType()
125 typeLine.type = (*copyOf.structure)[i].type->clone(remapper); in copyType()
151 TType* clone(TStructureMap& remapper) in clone() argument
154 newType->copyType(*this, remapper); in clone()
/external/clang/lib/ARCMigrate/
DARCMT.cpp439 FileRemapper remapper; in getFileRemappings() local
440 bool err = remapper.initFromDisk(outputDir, *Diags, in getFileRemappings()
446 remapper.applyMappings(PPOpts); in getFileRemappings()
467 FileRemapper remapper; in getFileRemappingsFromFileList() local
468 bool err = remapper.initFromFile(file, *Diags, in getFileRemappingsFromFileList()
475 remapper.applyMappings(PPOpts); in getFileRemappingsFromFileList()
DObjCMT.cpp48 FileRemapper &remapper, in ObjCMigrateASTConsumer() argument
55 Remapper(remapper), FileMgr(fileMgr), PPRec(PPRec), in ObjCMigrateASTConsumer()
/external/clang/tools/arcmt-test/
Darcmt-test.cpp137 static void printResult(FileRemapper &remapper, raw_ostream &OS) { in printResult() argument
139 remapper.applyMappings(PPOpts); in printResult()