Searched defs:Right (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderDetailsMarker.h34 enum Orientation { Up, Down, Left, Right }; enumerator in enum:WebCore::RenderDetailsMarker::Orientation
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dheap.h123 int Right(int i) { function in class:fst::Heap
151 int r = Right(i);
/external/clang/include/clang/AST/
H A DAttr.h201 specific_attr_iterator Right) {
202 if (Left.Current < Right.Current)
203 Left.AdvanceToNext(Right.Current);
205 Right.AdvanceToNext(Left.Current);
206 return Left.Current == Right.Current;
209 specific_attr_iterator Right) {
210 return !(Left == Right);
200 operator ==(specific_attr_iterator Left, specific_attr_iterator Right) argument
208 operator !=(specific_attr_iterator Left, specific_attr_iterator Right) argument
/external/llvm/include/llvm/Support/
H A DCFG.h172 inline Self& operator+=(int Right) { argument
173 unsigned new_idx = idx + Right;
179 inline Self operator+(int Right) { argument
181 tmp += Right;
185 inline Self& operator-=(int Right) { argument
186 return operator+=(-Right);
189 inline Self operator-(int Right) { argument
190 return operator+(-Right);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebkitplatformplugin.h120 Up, Right, Down, Left enumerator in enum:QWebTouchModifier::PaddingDirection
/external/webkit/Source/WebKit/qt/examples/platformplugin/
H A Dqwebkitplatformplugin.h115 Up, Right, Down, Left enumerator in enum:QWebTouchModifier::PaddingDirection
/external/llvm/include/llvm/ADT/
H A Dilist.h703 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { argument
704 Left.swap(Right);
H A DImmutableSet.h91 ImutAVLTree *Right = T->getRight(); local
92 while (Right) { T = right; right = T->getRight(); }
511 assert(!isEmpty(R) && "Right tree cannot be empty to have a height >= 2");
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp977 const Expr *Right = CE->getArg(1); local
1006 DefinedOrUnknownSVal RV = cast<DefinedOrUnknownSVal>(state->getSVal(Right));
1028 state = CheckBufferAccess(C, state, Size, Left, Right);
/external/clang/lib/Serialization/
H A DASTReader.cpp156 // Right piece is longer.
202 StringRef Left = Split.first, Right = Split.second; local
212 CommandLine.push_back(Right);
232 Right.split(AfterPCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
2568 // built-in types. Right now, we just ignore the problem.
/external/clang/lib/Sema/
H A DSemaExpr.cpp6195 llvm::APSInt Right; local
6198 !RHS.get()->isIntegerConstantExpr(Right, S.Context))
6201 if (Right.isNegative()) {
6207 llvm::APInt LeftBits(Right.getBitWidth(),
6209 if (Right.uge(LeftBits)) {
6228 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
6232 Result = Result.shl(Right);

Completed in 293 milliseconds