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

12

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDetailsMarker.h32 enum Orientation { Up, Down, Left, Right }; enumerator in enum:blink::FINAL::Orientation
/external/chromium_org/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/libvpx/libvpx/vp8/common/arm/
H A Dreconintra_arm.c24 int Left);
33 int Left = x->left_available; local
35 vp8_build_intra_predictors_mby_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
44 int Left);
53 int Left = x->left_available; local
55 vp8_build_intra_predictors_mby_s_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dreconintra4x4.c24 unsigned char Left[4]; local
25 Left[0] = yleft[0];
26 Left[1] = yleft[left_stride];
27 Left[2] = yleft[2 * left_stride];
28 Left[3] = yleft[3 * left_stride];
39 expected_dc += Left[i];
62 int pred = Above[c] - top_left + Left[r];
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dreconintra4x4.c24 unsigned char Left[4]; local
25 Left[0] = yleft[0];
26 Left[1] = yleft[left_stride];
27 Left[2] = yleft[2 * left_stride];
28 Left[3] = yleft[3 * left_stride];
39 expected_dc += Left[i];
62 int pred = Above[c] - top_left + Left[r];
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[
[all...]
/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*)*** %[[VFPTR]]
30 // CHECK: %[[VFUN:.*]] = getelementptr inbounds void (%struct.Left*)** %[[VFTABLE]], i64 0
31 // CHECK: %[[VFUN_VALUE:.*]] = load void (%struct.Left*)**
[all...]
/external/clang/tools/diagtool/
H A DDiagnosticNames.cpp47 static bool orderByID(const DiagnosticRecord &Left, argument
49 return Left.DiagID < Right.DiagID;
/external/openfst/src/include/fst/
H A Dheap.h126 int Left(int i) { function in class:fst::Heap
163 int l = Left(i);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dheap.h118 int Left(int i) { function in class:fst::Heap
150 int l = Left(i);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.h131 Left, enumerator in enum:blink::FINAL::CueAlignment
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl104 bind Sqlitecon <Left> {sqlitecon::Left %W}
105 bind Sqlitecon <Control-b> {sqlitecon::Left %W}
137 proc sqlitecon::Left {w} {
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp148 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count, local
152 Left, InFlag);
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMetaHeader.h60 INT16 Left; member in struct:__anon28778
84 // Left, Top, Right, and Bottom contain the coordinates of the upper-left
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DNearestPoint.cpp201 Point2 Left[W_DEGREE+1], /* New left and right */ variable
229 Bezier(w, degree, 0.5, Left, Right);
230 left_count = FindRoots(Left, degree, left_t, depth+1);
421 * Fill in control points for resulting sub-curves if "Left" and
425 static Point2 Bezier(V, degree, t, Left, Right)
429 Point2 *Left; /* RETURN left half ctl pts */ variable
451 if (Left != NULL) {
453 Left[j] = Vtemp[j][0];
/external/clang/lib/Format/
H A DContinuationIndenter.cpp782 const FormatToken *Left = &Tok; local
784 Left = Tok.MatchingParen;
786 Left->isOneOf(tok::l_brace, tok::l_square) &&
787 (Left->BlockKind == BK_Block ||
788 Left->Type == TT_ArrayInitializerLSquare ||
789 Left->Type == TT_DictLiteral);
H A DTokenAnnotator.cpp47 FormatToken *Left = CurrentToken->Previous; local
52 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
56 Left->MatchingParen = CurrentToken;
57 CurrentToken->MatchingParen = Left;
80 updateParameterCount(Left, CurrentToken);
97 FormatToken *Left = CurrentToken->Previous; local
100 Left->Type = TT_ObjCBlockLParen;
101 } else if (FormatToken *MaybeSel = Left->Previous) {
109 if (Left
297 FormatToken *Left = CurrentToken->Previous; local
331 updateParameterCount(FormatToken *Left, FormatToken *Current) argument
1346 const FormatToken &Left = *Tok.Previous; local
1445 spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left, const FormatToken &Right) argument
1645 const FormatToken &Left = *Right.Previous; local
1710 const FormatToken &Left = *Right.Previous; local
[all...]
/external/llvm/lib/CodeGen/
H A DMachineCSE.cpp619 unsigned Left = --OpenChildren[Parent]; local
620 if (Left != 0)
/external/pdfium/core/include/fxcrt/
H A Dfx_string.h296 CFX_ByteString Left(FX_STRSIZE count) const;
552 CFX_WideStringC Left(FX_STRSIZE count) const function in class:CFX_WideStringC
697 CFX_WideString Left(FX_STRSIZE count) const;
/external/skia/experimental/Intersection/
H A DNearestPoint.cpp201 Point2 Left[W_DEGREE+1], /* New left and right */ variable
229 Bezier(w, degree, 0.5, Left, Right);
230 left_count = FindRoots(Left, degree, left_t, depth+1);
421 * Fill in control points for resulting sub-curves if "Left" and
425 static Point2 Bezier(V, degree, t, Left, Right)
429 Point2 *Left; /* RETURN left half ctl pts */ variable
451 if (Left != NULL) {
453 Left[j] = Vtemp[j][0];
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
H A DCodeMirrorTextEditor.js58 "Left": "goCharLeft",
85 "Ctrl-Left": "goGroupLeft",
87 "Alt-Left": "moveCamelLeft",
89 "Shift-Alt-Left": "selectCamelLeft",
105 "Alt-Left": "goGroupLeft",
107 "Ctrl-Left": "moveCamelLeft",
109 "Shift-Ctrl-Left": "selectCamelLeft",
111 "Cmd-Left": "goLineStartSmart",
1862 var leftKey = modifierKey + "-Left";
/external/giflib/
H A Dgif_lib.h47 GifWord Left, Top, Width, Height; /* Current image dimensions. */ member in struct:GifImageDesc
/external/lzma/CPP/Common/
H A DMyString.h332 CStringBase Left(int count) const function in class:CStringBase
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp694 DirectiveList &Left,
700 for (DirectiveList::iterator I = Left.begin(), E = Left.end(); I != E; ++I) {
692 CheckLists(DiagnosticsEngine &Diags, SourceManager &SourceMgr, const char *Label, DirectiveList &Left, const_diag_iterator d2_begin, const_diag_iterator d2_end) argument
/external/llvm/include/llvm/ADT/
H A Dilist.h717 void swap(llvm::iplist<Ty> &Left, llvm::iplist<Ty> &Right) { argument
718 Left.swap(Right);

Completed in 635 milliseconds

12