Searched refs:headerType (Results 1 - 6 of 6) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/io/
H A DBuffersFactory.java23 public static Buffers newBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType,int maxSize) argument
26 return new PooledBuffers(headerType,headerSize,bufferType,bufferSize,otherType,maxSize);
27 return new ThreadLocalBuffers(headerType,headerSize,bufferType,bufferSize,otherType);
H A DPooledBuffers.java36 public PooledBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType,int maxSize) argument
38 super(headerType,headerSize,bufferType,bufferSize,otherType);
42 _otherHeaders=headerType==otherType;
H A DAbstractBuffers.java33 public AbstractBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType) argument
35 _headerType=headerType;
H A DThreadLocalBuffers.java41 public ThreadLocalBuffers(Buffers.Type headerType, int headerSize, Buffers.Type bufferType, int bufferSize, Buffers.Type otherType) argument
43 super(headerType,headerSize,bufferType,bufferSize,otherType);
/external/skia/src/codec/
H A DSkCodec_libbmp.cpp235 BitmapHeaderType headerType; local
240 headerType = kInfoV1_BitmapHeaderType;
243 headerType = kInfoV2_BitmapHeaderType;
246 headerType = kInfoV3_BitmapHeaderType;
249 headerType = kInfoV4_BitmapHeaderType;
252 headerType = kInfoV5_BitmapHeaderType;
265 headerType = kOS2VX_BitmapHeaderType;
274 headerType = kUnknown_BitmapHeaderType;
299 headerType = kOS2V1_BitmapHeaderType;
357 switch (headerType) {
[all...]
/external/skia/tools/
H A Dimage_expectations.cpp148 Json::Value headerType = header[kJsonKey_Header_Type]; local
150 if (strcmp(headerType.asCString(), kJsonValue_Header_Type)) {
151 SkDebugf("JSON expectations file '%s': expected headerType '%s', found '%s'\n",
152 jsonPath, kJsonValue_Header_Type, headerType.asCString());

Completed in 129 milliseconds