HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 401 - 425 of 16262) sorted by null

<<11121314151617181920>>

  /external/proguard/src/proguard/evaluation/
BranchUnit.java 34 * Sets the new instruction offset.
38 int offset,
43 * Sets the new instruction offset, depending on the certainty of the
48 int offset,
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteOutput.java 68 * @param offset the offset of the start of the writable range
69 * @param length the number of bytes to write starting from {@code offset}
72 public abstract void write(byte[] value, int offset, int length) throws IOException;
83 * @param offset the offset of the start of the writable range
84 * @param length the number of bytes to write starting from {@code offset}
87 public abstract void writeLazy(byte[] value, int offset, int length) throws IOException;
  /external/puffin/src/include/puffin/
stream.h 23 // Returns the current offset in the stream where next read or write will
25 virtual bool GetOffset(uint64_t* offset) const = 0;
27 // Sets the offset in the stream for the next read or write. On error
29 virtual bool Seek(uint64_t offset) = 0;
  /external/sfntly/cpp/src/sfntly/port/
memory_output_stream.cc 32 int32_t offset,
35 if (offset >= 0 && length > 0) {
37 buffer->begin() + offset,
38 buffer->begin() + offset + length);
46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) {
48 if (offset >= 0 && length > 0) {
49 store_.insert(store_.end(), buffer + offset, buffer + offset + length);
output_stream.h 38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0;
41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
  /external/skia/src/sksl/ast/
SkSLASTBoolLiteral.h 19 ASTBoolLiteral(int offset, bool value)
20 : INHERITED(offset, kBool_Kind)
SkSLASTDeclaration.h 30 ASTDeclaration(int offset, Kind kind)
31 : INHERITED(offset)
SkSLASTExpression.h 30 ASTExpression(int offset, Kind kind)
31 : INHERITED(offset)
SkSLASTExtension.h 19 ASTExtension(int offset, String name)
20 : INHERITED(offset, kExtension_Kind)
SkSLASTFieldSuffix.h 20 ASTFieldSuffix(int offset, StringFragment field)
21 : INHERITED(offset, ASTSuffix::kField_Kind)
SkSLASTFloatLiteral.h 19 ASTFloatLiteral(int offset, double value)
20 : INHERITED(offset, kFloat_Kind)
SkSLASTIdentifier.h 19 ASTIdentifier(int offset, StringFragment text)
20 : INHERITED(offset, kIdentifier_Kind)
SkSLASTIntLiteral.h 20 ASTIntLiteral(int offset, uint64_t value)
21 : INHERITED(offset, kInt_Kind)
SkSLASTStatement.h 36 ASTStatement(int offset, Kind kind)
37 : INHERITED(offset)
SkSLASTSuffix.h 29 ASTSuffix(int offset, Kind kind)
30 : INHERITED(offset)
  /external/skia/src/sksl/ir/
SkSLExtension.h 19 Extension(int offset, String name)
20 : INHERITED(offset, kExtension_Kind)
SkSLProgramElement.h 29 ProgramElement(int offset, Kind kind)
30 : INHERITED(offset)
SkSLSymbol.h 27 Symbol(int offset, Kind kind, StringFragment name)
28 : INHERITED(offset)
SkSLTypeReference.h 21 TypeReference(const Context& context, int offset, const Type& type)
22 : INHERITED(offset, kTypeReference_Kind, *context.fInvalid_Type)
  /external/skqp/src/sksl/ast/
SkSLASTBoolLiteral.h 19 ASTBoolLiteral(int offset, bool value)
20 : INHERITED(offset, kBool_Kind)
SkSLASTDeclaration.h 30 ASTDeclaration(int offset, Kind kind)
31 : INHERITED(offset)
SkSLASTExpression.h 30 ASTExpression(int offset, Kind kind)
31 : INHERITED(offset)
SkSLASTExtension.h 19 ASTExtension(int offset, String name)
20 : INHERITED(offset, kExtension_Kind)
SkSLASTFieldSuffix.h 20 ASTFieldSuffix(int offset, StringFragment field)
21 : INHERITED(offset, ASTSuffix::kField_Kind)
SkSLASTFloatLiteral.h 19 ASTFloatLiteral(int offset, double value)
20 : INHERITED(offset, kFloat_Kind)

Completed in 276 milliseconds

<<11121314151617181920>>