Searched defs:Left (Results 1 - 25 of 44) sorted by relevance

12

/external/v8/tools/clang/blink_gc_plugin/tests/
H A Dleft_most_gc_base.h16 class Left : public GarbageCollected<Left>, public B, public A { }; class in namespace:blink
18 class DerivedRight : public Right, public Left { }; // Error
19 class DerivedLeft : public Left, public Right { };
/external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
H A Dleft_most_gc_base.h16 class Left : public GarbageCollected<Left>, public B, public A { }; class in namespace:blink
18 class DerivedRight : public Right, public Left { }; // Error
19 class DerivedLeft : public Left, public Right { };
/external/libvpx/libvpx/vp8/common/
H A Dreconintra4x4.c47 unsigned char Left[8]; local
51 vp8_zero_array(Left, 8);
54 unsigned char Left[4]; local
57 Left[0] = yleft[0];
58 Left[1] = yleft[left_stride];
59 Left[2] = yleft[2 * left_stride];
60 Left[3] = yleft[3 * left_stride];
64 pred[b_mode](dst, dst_stride, Above, Left);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatCommon.h18 enum class AlignStyle { Left, Center, Right }; member in class:llvm::AlignStyle
49 case AlignStyle::Left:
/external/clang/include/clang/AST/
H A DAttrIterator.h99 friend bool operator==(specific_attr_iterator Left, argument
101 assert((Left.Current == nullptr) == (Right.Current == nullptr));
102 if (Left.Current < Right.Current)
103 Left.AdvanceToNext(Right.Current);
105 Right.AdvanceToNext(Left.Current);
106 return Left.Current == Right.Current;
108 friend bool operator!=(specific_attr_iterator Left, argument
110 return !(Left == Right);
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-multiple-nonvirtual-inheritance.cpp3 struct Left { struct
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
26 // Only need to cast 'this' to Left*.
27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left*
28 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Left* %[[LEFT]] to void (%struct.Left*)***
29 // CHECK: %[[VFTABLE:.*]] = load void (%struct.Left*)**, void (%struct.Left*)*** %[[VFPTR]]
30 // CHECK: %[[VFUN:.*]] = getelementptr inbounds void (%struct.Left*)*, voi
[all...]
/external/clang/tools/diagtool/
H A DDiagnosticNames.cpp47 static bool orderByID(const DiagnosticRecord &Left, argument
49 return Left.DiagID < Right.DiagID;
/external/pdfium/xfa/fwl/
H A Dfwl_widgethit.h13 Left, member in class:FWL_WidgetHit
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp70 size_t Left = Buf.size() - Pos; variable
71 Len = std::min(Left, Len);
/external/pdfium/core/fxcrt/
H A Dcfx_string_c_template.h17 // extraction (via the Mid(), Left(), and Right() methods) is copy-free.
125 CFX_StringCTemplate Left(FX_STRSIZE count) const { function in class:CFX_StringCTemplate
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp168 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count, local
172 Left, InFlag);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp147 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count, local
151 Left, InFlag);
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp666 unsigned Left = --OpenChildren[Parent]; local
667 if (Left != 0)
/external/llvm/lib/Target/Hexagon/
H A DHexagonBlockRanges.cpp351 RegisterSet Left; local
354 Left.insert(I.first);
357 Left.insert(I.first);
358 for (auto R : Left)
/external/pdfium/core/fpdftext/
H A Dcpdf_textpage.h45 enum class FPDFText_Direction { Left = -1, Right = 1 }; member in class:FPDFText_Direction
/external/pdfium/xfa/fgas/layout/
H A Dfgas_rtfbreak.h25 Left = 0, member in class:CFX_RTFLineAlignment
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineCSE.cpp494 unsigned Left = --OpenChildren[Parent]; local
495 if (Left != 0)
/external/clang/unittests/Format/
H A DFormatTest.cpp5780 FormatStyle Left = getLLVMStyle(); local
5781 Left.PointerAlignment = FormatStyle::PAS_Left;
5782 verifyFormat("x = *a(x) = *a(y);", Left);
5783 verifyFormat("for (;; * = b) {\n}", Left);
5784 verifyFormat("return *this += 1;", Left);
10225 CHECK_PARSE("PointerAlignment: Left", PointerAlignment,
10232 CHECK_PARSE("PointerBindsToType: Left", PointerAlignment,
/external/giflib/
H A Degif_lib.c359 const int Left,
380 GifFile->Image.Left = Left;
403 (void)EGifPutWord(Left, GifFile);
1109 sp->ImageDesc.Left,
358 EGifPutImageDesc(GifFileType *GifFile, const int Left, const int Top, const int Width, const int Height, const bool Interlace, const ColorMapObject *ColorMap) argument
H A Dgif_lib.h48 GifWord Left, Top, Width, Height; /* Current image dimensions. */ member in struct:GifImageDesc
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp614 Value *Left, Value *Right) {
648 Cmp = Builder.CreateFCmp(P, Left, Right, "rdx.minmax.cmp");
650 Cmp = Builder.CreateICmp(P, Left, Right, "rdx.minmax.cmp");
652 Value *Select = Builder.CreateSelect(Cmp, Left, Right, "rdx.minmax.select");
612 createMinMaxOp(IRBuilder< &Builder, MinMaxRecurrenceKind RK, Value *Left, Value *Right) argument
/external/lzma/CPP/Common/
H A DMyString.h307 AString Left(unsigned count) const { return AString(count, *this); } function in class:AString
434 UString(unsigned num, const UString &s); // for Left
541 UString Left(unsigned count) const { return UString(count, *this); } function in class:UString
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A Dilist.h428 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { argument
429 Left.swap(Right);
/external/clang/lib/Format/
H A DTokenAnnotator.cpp60 FormatToken *Left = CurrentToken->Previous; local
61 Left->ParentBracket = Contexts.back().ContextKind;
72 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
80 Left->MatchingParen = CurrentToken;
81 CurrentToken->MatchingParen = Left;
105 updateParameterCount(Left, CurrentToken);
115 FormatToken *Left = CurrentToken->Previous;
116 Left->ParentBracket = Contexts.back().ContextKind;
126 Left
399 FormatToken *Left = CurrentToken->Previous; local
441 updateParameterCount(FormatToken *Left, FormatToken *Current) argument
1801 const FormatToken &Left = *Tok.Previous; local
1965 spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left, const FormatToken &Right) argument
2099 const FormatToken &Left = *Right.Previous; local
2253 const FormatToken &Left = *Right.Previous; local
2361 const FormatToken &Left = *Right.Previous; local
[all...]
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp690 DirectiveList &Left,
697 for (auto &Owner : Left) {
688 CheckLists(DiagnosticsEngine &Diags, SourceManager &SourceMgr, const char *Label, DirectiveList &Left, const_diag_iterator d2_begin, const_diag_iterator d2_end, bool IgnoreUnexpected) argument

Completed in 718 milliseconds

12