Searched refs:headerType (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/codec/ |
D | SkBmpCodec.cpp | 186 BmpHeaderType headerType; in ReadHeader() local 191 headerType = kInfoV1_BmpHeaderType; in ReadHeader() 194 headerType = kInfoV2_BmpHeaderType; in ReadHeader() 197 headerType = kInfoV3_BmpHeaderType; in ReadHeader() 200 headerType = kInfoV4_BmpHeaderType; in ReadHeader() 203 headerType = kInfoV5_BmpHeaderType; in ReadHeader() 216 headerType = kOS2VX_BmpHeaderType; in ReadHeader() 225 headerType = kUnknown_BmpHeaderType; in ReadHeader() 250 headerType = kOS2V1_BmpHeaderType; in ReadHeader() 308 switch (headerType) { in ReadHeader() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
D | BuffersFactory.java | 23 …public static Buffers newBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType,… in newBuffers() argument 26 return new PooledBuffers(headerType,headerSize,bufferType,bufferSize,otherType,maxSize); in newBuffers() 27 return new ThreadLocalBuffers(headerType,headerSize,bufferType,bufferSize,otherType); in newBuffers()
|
D | PooledBuffers.java | 36 …public PooledBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferS… in PooledBuffers() argument 38 super(headerType,headerSize,bufferType,bufferSize,otherType); in PooledBuffers() 42 _otherHeaders=headerType==otherType; in PooledBuffers()
|
D | AbstractBuffers.java | 33 …public AbstractBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int buffe… in AbstractBuffers() argument 35 _headerType=headerType; in AbstractBuffers()
|
D | ThreadLocalBuffers.java | 41 …public ThreadLocalBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bu… in ThreadLocalBuffers() argument 43 super(headerType,headerSize,bufferType,bufferSize,otherType); in ThreadLocalBuffers()
|