HomeSort by relevance Sort by last modified time
    Searched refs:precisionStack (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.h 269 precisionStack.push_back( PrecisionStackLevel() );
276 precisionStack.pop_back();
317 int indexOfLastElement = static_cast<int>(precisionStack.size()) - 1;
318 precisionStack[indexOfLastElement][type] = prec; // Uses map operator [], overwrites the current value
321 // Searches down the precisionStack for a precision qualifier for the specified TBasicType
324 int level = static_cast<int>(precisionStack.size()) - 1;
329 it = precisionStack[level].find( type );
330 if( it != precisionStack[level].end() ){
344 std::vector< PrecisionStackLevel > precisionStack;
SymbolTable.cpp 229 for( unsigned int i = 0; i < copyOf.precisionStack.size(); i++) {
230 precisionStack.push_back( copyOf.precisionStack[i] );

Completed in 101 milliseconds