Searched refs:remapper (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | SymbolTable.cpp | 166 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 …]
|
D | SymbolTable.h | 54 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);
|
D | Types.h | 107 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/ |
D | ARCMT.cpp | 377 FileRemapper remapper; in getFileRemappings() local 378 bool err = remapper.initFromDisk(outputDir, *Diags, in getFileRemappings() 384 remapper.applyMappings(CI); in getFileRemappings()
|
/external/clang/tools/arcmt-test/ |
D | arcmt-test.cpp | 137 static void printResult(FileRemapper &remapper, llvm::raw_ostream &OS) { in printResult() argument 139 remapper.applyMappings(CI); in printResult()
|