/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, String(msg)); 26 virtual void error(Position position, String 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) {}
|
/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) {}
|
SkSLNop.h | 21 : INHERITED(Position(), kNop_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/swiftshader/third_party/subzero/src/ |
IceAssembler.h | 42 /// - Linked, unplaced and tracking the position of branches to the label. 43 /// - Bound, placed and tracking its position. 57 /// Returns the encoded position stored in the label. 58 intptr_t getEncodedPosition() const { return Position; } 60 /// Returns the position for bound labels (branches that come after this are 64 return -Position - kWordSize; 67 /// Returns the position of an earlier branch instruction that was linked to 74 return Position - kWordSize; 77 void setPosition(intptr_t NewValue) { Position = NewValue; } 79 bool isBound() const { return Position < 0; [all...] |
/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);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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...] |