Home
last modified time | relevance | path

Searched refs:mLine (Results 1 – 12 of 12) sorted by relevance

/external/angle/src/compiler/translator/
DDeclarator.cpp15 : mName(name), mArraySizes(nullptr), mLine(line) in TDeclarator()
23 : mName(name), mArraySizes(arraySizes), mLine(line) in TDeclarator()
DDeclarator.h34 const TSourceLoc &line() const { return mLine; } in line()
42 const TSourceLoc mLine; variable
DQualifierTypes.h39 TQualifierWrapperBase(const TSourceLoc &line) : mLine(line) {} in TQualifierWrapperBase()
44 const TSourceLoc &getLine() const { return mLine; } in getLine()
47 TSourceLoc mLine;
DIntermNode.h76 mLine.first_file = mLine.last_file = 0; in TIntermNode()
77 mLine.first_line = mLine.last_line = 0; in TIntermNode()
81 const TSourceLoc &getLine() const { return mLine; } in getLine()
82 void setLine(const TSourceLoc &l) { mLine = l; } in setLine()
119 TSourceLoc mLine;
DTypes.h35 : mType(type), mName(name), mLine(line), mSymbolType(symbolType) in TField()
45 const TSourceLoc &line() const { return mLine; } in line()
51 const TSourceLoc mLine; variable
DIntermNode.cpp1069 mLine = node.mLine; in TIntermTyped()
1124 copyNode->setLine(mLine); in shallowCopy()
1429 node.mLine) in TIntermGlobalQualifierDeclaration()
2133 mLine, "casting a negative float to uint is undefined", in fold()
/external/doclava/src/com/google/doclava/apicheck/
DApiFile.java625 int mLine = 1; field in ApiFile.Tokenizer
632 return new SourcePositionInfo(mFilename, mLine, 0); in pos()
636 return mLine; in getLine()
643 mLine++; in eatWhitespace()
678 throw new ApiParseException("Unexpected end of file", mLine); in requireToken()
691 final int line = mLine; in getToken()
701 throw new ApiParseException("Unexpected end of file for \" starting at " + line, mLine); in getToken()
705 throw new ApiParseException("Unexpected newline for \" starting at " + line, mLine); in getToken()
745 throw new ApiParseException("Unexpected end of file for \" starting at " + line, mLine); in getToken()
/external/angle/src/common/
Ddebug.cpp164 : mFile(file), mFunction(function), mLine(line), mSeverity(severity) in LogMessage()
170 mStream << (slash ? (slash + 1) : mFile) << ":" << mLine << " (" << mFunction << "): "; in LogMessage()
Ddebug.h82 const int mLine; variable
/external/swiftshader/src/OpenGL/compiler/
DTypes.h34 mLine(line) in POOL_ALLOCATOR_NEW_DELETE()
55 return mLine; in line()
61 TSourceLoc mLine; variable
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java1095 List<String> preferredPayloadTypes, String mLine) { in movePayloadTypesToFront() argument
1097 final List<String> origLineParts = Arrays.asList(mLine.split(" ")); in movePayloadTypesToFront()
1099 Log.e(TAG, "Wrong SDP media description format: " + mLine); in movePayloadTypesToFront()
/external/doclava/src/com/google/doclava/
DComment.java645 int mLine = 1; field in Comment