Home
last modified time | relevance | path

Searched refs:Bottom (Results 1 – 25 of 134) sorted by relevance

123456

/external/harfbuzz_ng/src/
Dgen-use-table.py275 'Blw': [Bottom],
280 'Blw': [Bottom, Bottom_And_Left],
286 'Blw': [Bottom],
290 'Blw': [Bottom, Overstruck, Bottom_And_Right],
296 'Blw': [Bottom, Overstruck],
302 'Blw': [Bottom],
330 UIPC = Bottom
336 UIPC = Bottom
337 elif UIPC == Bottom:
341 if 0x1BF2 <= U <= 0x1BF3: UISC = Nukta; UIPC = Bottom
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyUtilities.h61 MachineBasicBlock *Bottom = Unit->getHeader(); in getBottom() local
63 if (MBB->getNumber() > Bottom->getNumber()) in getBottom()
64 Bottom = MBB; in getBottom()
65 return Bottom; in getBottom()
DWebAssemblyCFGStackify.cpp185 MachineBasicBlock *Bottom = WebAssembly::getBottom(Loop); in PlaceLoopMarker() local
186 auto Iter = std::next(MachineFunction::iterator(Bottom)); in PlaceLoopMarker()
192 Iter = std::next(MachineFunction::iterator(Bottom)); in PlaceLoopMarker()
/external/clang/test/Modules/Inputs/
Dcategory_bottom.h3 @interface Foo(Bottom)
9 @interface LeftFoo(Bottom)
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyCFGStackify.cpp76 MachineBasicBlock *Bottom = Loop->getHeader(); in LoopBottom() local
78 if (MBB->getNumber() > Bottom->getNumber()) in LoopBottom()
79 Bottom = MBB; in LoopBottom()
80 return Bottom; in LoopBottom()
408 MachineBasicBlock *Bottom = LoopBottom(Loop); in PlaceLoopMarker() local
409 auto Iter = next(MachineFunction::iterator(Bottom)); in PlaceLoopMarker()
415 Iter = next(MachineFunction::iterator(Bottom)); in PlaceLoopMarker()
/external/pdfium/core/fxcrt/css/
Dcfx_css.h47 Bottom, enumerator
92 Bottom, enumerator
165 Bottom, enumerator
Dcfx_cssstyleselector.cpp375 case CFX_CSSProperty::Bottom: in ApplyProperty()
543 case CFX_CSSPropertyValue::Bottom: in ToVerticalAlign()
544 return CFX_CSSVerticalAlign::Bottom; in ToVerticalAlign()
/external/deqp/external/vulkancts/data/vulkan/vkrunner/example/
Dvertex-data.shader_test45 # Bottom-left blue
52 # Bottom-right purple
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/proto/
Dservices.proto29 message Bottom { message
37 rpc StreStre(stream Top) returns (stream Bottom);
/external/mesa3d/src/gallium/state_trackers/nine/
Dvolume9.c228 dirty_region.Bottom = dirty_region.Top + (box->height << This->level_actual); in NineVolume9_AddDirtyRegion()
259 pBox ? pBox->Top : 0, pBox ? pBox->Bottom : 0, in NineVolume9_LockBox()
280 pBox->Top == 0 && pBox->Bottom == This->desc.Height) || in NineVolume9_LockBox()
282 !(pBox->Top % h) && !(pBox->Bottom % h)), in NineVolume9_LockBox()
297 user_assert(pBox->Bottom > pBox->Top, D3DERR_INVALIDCALL); in NineVolume9_LockBox()
300 user_assert(pBox->Bottom <= This->desc.Height, D3DERR_INVALIDCALL); in NineVolume9_LockBox()
/external/webrtc/webrtc/modules/video_render/ios/
Dopen_gles20.mm68 -1, -1, 0, 0, 1, // Bottom Left
69 1, -1, 0, 1, 1, // Bottom Right
131 // Bottom Left
136 // Bottom Right
Dvideo_render_ios_view.h28 Bottom:(const float)bottom;
Dvideo_render_ios_channel.mm55 Bottom:top]) {
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tools.pas389 function InCircularRange(Bottom, Item, TopInc: Integer): Boolean;
760 function InCircularRange(Bottom, Item, TopInc: Integer): Boolean;
762 Result := (Bottom < Item) and (Item <= TopInc) // normal
763 or (TopInc < Bottom) and (Item > Bottom) // top wrapped
764 or (TopInc < Bottom) and (Item <= TopInc) // top and item wrapped
/external/pdfium/xfa/fwl/
Dfwl_widgethit.h16 Bottom, enumerator
/external/pdfium/xfa/fxfa/
Dcxfa_ffcheckbutton.cpp108 iCapPlacement == XFA_AttributeEnum::Bottom) { in PerformLayout()
148 case XFA_AttributeEnum::Bottom: { in PerformLayout()
169 else if (iVertAlign == XFA_AttributeEnum::Bottom) in PerformLayout()
Dcxfa_fffield.cpp199 } else if (iCapPlacement == XFA_AttributeEnum::Bottom && GetNext()) { in CapPlacement()
224 iCapPlacement == XFA_AttributeEnum::Bottom) { in CapPlacement()
257 case XFA_AttributeEnum::Bottom: { in CapPlacement()
300 if (iCapPlacement == XFA_AttributeEnum::Bottom) in CapTopBottomPlacement()
/external/skia/experimental/go-skia/
Dtypes.go64 Bottom float32 member
/external/skqp/experimental/go-skia/
Dtypes.go64 Bottom float32 member
/external/grpc-grpc/src/python/grpcio_tests/tests/testing/
D_application_common.py33 STREAM_STREAM_RESPONSE = services_pb2.Bottom(first_bottom_field=23)
/external/jline/src/src/main/native/
Djline_WindowsTerminal.c56 return info->srWindow.Bottom - info->srWindow.Top+1; in Java_jline_WindowsTerminal_getWindowsTerminalHeight()
/external/python/cpython2/Demo/tkinter/guido/
Dcanvasevents.py77 class Bottom(Object): class
97 self.bottom = Bottom(self.canvas, self.x, self.y)
/external/autotest/server/site_tests/video_PlaybackQuality/
Dcontrol.mp432 ('Bottom', (0, 1080 - 96 - 32, 1920, 32)),
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp723 struct Bottom { constexpr Bottom() {} }; in Bottom() struct
724 struct Base : Bottom {
729 struct Base2 : Bottom {
756 constexpr Bottom &bot1 = (Base&)derived;
757 constexpr Bottom &bot2 = (Base2&)derived;
760 constexpr Bottom *pb1 = (Base*)&derived;
761 constexpr Bottom *pb2 = (Base2*)&derived;
783 static_assert((Bottom*)nullB == 0, "");
785 static_assert((void*)(Bottom*)nullB == (void*)(Derived*)nullB, "");
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stoptheworld_linux_libcdep.cc322 void *Bottom() const { in Bottom() function in __sanitizer::ScopedStackSpaceWithGuard
409 TracerThread, tracer_stack.Bottom(), in StopTheWorld()

123456