HomeSort by relevance Sort by last modified time
    Searched refs:Position (Results 1 - 25 of 883) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/sksl/
SkSLPosition.h 16 * Represents a position in the source code. Both line and column are one-based. Column is currently
19 struct Position {
20 Position()
24 Position(int line, int column)
SkSLErrorReporter.h 22 void error(Position position, const char* msg) {
23 this->error(position, SkString(msg));
26 virtual void error(Position position, SkString msg) = 0;
  /external/skia/src/sksl/ast/
SkSLASTPositionNode.h 17 * An AST node with an associated position in the source.
20 ASTPositionNode(Position position)
21 : fPosition(position) {}
23 const Position fPosition;
SkSLASTBreakStatement.h 19 ASTBreakStatement(Position position)
20 : INHERITED(position, kBreak_Kind) {}
SkSLASTContinueStatement.h 19 ASTContinueStatement(Position position)
20 : INHERITED(position, kContinue_Kind) {}
SkSLASTDiscardStatement.h 19 ASTDiscardStatement(Position position)
20 : INHERITED(position, kDiscard_Kind) {}
SkSLASTIndexSuffix.h 21 ASTIndexSuffix(Position position)
22 : INHERITED(position, ASTSuffix::kIndex_Kind)
26 : INHERITED(expression ? expression->fPosition : Position(), ASTSuffix::kIndex_Kind)
  /external/skia/src/sksl/ir/
SkSLIRNode.h 20 IRNode(Position position)
21 : fPosition(position) {}
27 const Position fPosition;
SkSLBreakStatement.h 20 BreakStatement(Position position)
21 : INHERITED(position, kBreak_Kind) {}
SkSLContinueStatement.h 20 ContinueStatement(Position position)
21 : INHERITED(position, kContinue_Kind) {}
SkSLDiscardStatement.h 20 DiscardStatement(Position position)
21 : INHERITED(position, kDiscard_Kind) {}
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Locate.c 29 LIST_ENTRY *Position;
36 IN OUT LOCATE_POSITION *Position,
43 @param Position Information about which Handle to seach for.
47 @return An pointer to IHANDLE if the next Position is not the end of the list.
53 IN OUT LOCATE_POSITION *Position,
62 Position->Position = Position->Position->ForwardLink;
69 if (Position->Position != &gHandleList) {
    [all...]
  /cts/libs/view/src/com/android/view/
Position.java 22 public class Position {
26 public Position(float x, float y) {
40 * @return The vector dot product between {@code this} and another {@link Position}.
42 public double dotProduct(Position other) {
47 * @return The euclidean distance between {@code this} and the other {@link Position}.
49 public double distanceTo(Position other) {
55 * {@code this} to the other {@link Position}, given the origin of the arc.
57 * @param origin The {@link Position} to use as the origin of the arc.
62 public double arcAngleTo(Position other, Position origin)
    [all...]
  /system/tools/hidl/
Location.h 24 // Mimics for yy::location and yy::position
27 struct Position {
28 Position(std::string f, size_t l, size_t c)
35 // File name to which this position refers.
43 inline std::ostream& operator<< (std::ostream& ostr, const Position& pos) {
51 Location (Position begin, Position end)
53 inline const Position &begin() const { return mBegin; }
54 inline const Position &end() const { return mEnd; }
57 return Location(Position(path, 1, 1), Position(path, 1, 1))
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Hand/
Locate.c 30 LIST_ENTRY *Position;
37 IN OUT LOCATE_POSITION *Position,
44 @param Position Information about which Handle to seach for.
48 @return An pointer to IHANDLE if the next Position is not the end of the list.
54 IN OUT LOCATE_POSITION *Position,
62 @param Position Information about which Handle to seach for.
66 @return An pointer to IHANDLE if the next Position is not the end of the list.
72 IN OUT LOCATE_POSITION *Position,
79 @param Position Information about which Handle to seach for.
83 @return An pointer to IHANDLE if the next Position is not the end of the list.
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/FileSystem/BootMonFs/
BootMonFsUnsupported.c 21 IN UINT64 Position
32 OUT UINT64 *Position
BootMonFsReadWrite.c 34 @retval EFI_DEVICE_ERROR On entry, the current file position is
76 if (File->Position >= File->Info->FileSize) {
77 // The entire file has been read or the position has been
80 if (File->Position > File->Info->FileSize) {
88 RemainingFileSize = File->Info->FileSize - File->Position;
98 FileStart + File->Position,
106 File->Position += *BufferSize;
169 Region->Offset = File->Position;
173 File->Position += *BufferSize;
175 if (File->Position > File->Info->FileSize) {
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvwriter.h 27 virtual int64 Position() const;
28 virtual int32 Position(int64 position);
31 virtual void ElementStartNotify(uint64 element_id, int64 position);
  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 117 // Used to keep track of the current position while iterating over the blocks.
119 // The address that we assume this position has.
147 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block);
148 void skipTerminator(BlockPosition &Position, TerminatorInfo &Terminator,
176 // Position describes the state immediately before Block. Update Block
177 // accordingly and move Position to the end of the block's non-terminator
179 void SystemZLongBranch::skipNonTerminators(BlockPosition &Position,
181 if (Block.Alignment > Position.KnownBits) {
184 Position.Address += ((uint64_t(1) << Block.Alignment) -
185 (uint64_t(1) << Position.KnownBits))
    [all...]
  /external/llvm/include/llvm/Support/
FormattedStream.h 24 /// of line and column position, allowing padding out to specific column
33 /// Position - The current output column and line of the data that's
37 std::pair<unsigned, unsigned> Position;
46 /// current_pos - Return the current position within the stream,
49 // Our current position in the stream is all the contents which have been
50 // written to the underlying stream (*not* the current position of the
56 /// position after output.
90 : TheStream(nullptr), Position(0, 0) {
93 explicit formatted_raw_ostream() : TheStream(nullptr), Position(0, 0) {
110 unsigned getColumn() { return Position.first;
    [all...]
  /external/llvm/lib/Support/
FormattedStream.cpp 24 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) {
25 unsigned &Column = Position.first;
26 unsigned &Line = Position.second;
55 UpdatePosition(Position, Scanned, Size - (Scanned - Ptr));
57 UpdatePosition(Position, Ptr, Size);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandle.java 42 /** The position of the handle in the selection rectangle */
43 enum Position {
56 private Position(int swtCursor) {
89 /** The position of the handle in the selection rectangle */
90 private final Position mPosition;
94 * corresponding to a handle at the given {@link Position}.
98 * @param position the position of the handle in the selection rectangle
100 public SelectionHandle(int centerX, int centerY, Position position) {
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
gradient_paint.hpp 61 detail::tvec2<T, P> const & Position);
69 detail::tvec2<T, P> const & Position);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigLib/
ArmVExpressSysConfig.c 68 IN UINT32 Position,
85 SYS_CFGCTRL_POSITION(Position) | SYS_CFGCTRL_DEVICE(Device);
111 UINT32 Position;
114 Position = 0;
152 return AccessSysCfgRegister (SYS_CFGCTRL_READ, Function, Site, Position, Device, Value);
172 UINT32 Position;
175 Position = 0;
213 return AccessSysCfgRegister (SYS_CFGCTRL_WRITE, Function, Site, Position, Device, &Value);
224 UINT32 Position;
226 Position = 0;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigRuntimeLib/
ArmVExpressSysConfigRuntimeLib.c 71 IN UINT32 Position,
92 SYS_CFGCTRL_POSITION(Position) | SYS_CFGCTRL_DEVICE(Device);
118 UINT32 Position;
121 Position = 0;
159 return AccessSysCfgRegister (SYS_CFGCTRL_READ, Function, Site, Position, Device, Value);
179 UINT32 Position;
182 Position = 0;
220 return AccessSysCfgRegister (SYS_CFGCTRL_WRITE, Function, Site, Position, Device, &Value);
231 UINT32 Position;
233 Position = 0;
    [all...]

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 91011>>