/external/chromium_org/chrome_frame/test/ |
test_with_web_server.h | 340 ACTION_P4(Send, headers, content, chunk, timeout) { 343 IMMEDIATE_HEADERS_DELAYED_CONTENT, chunk, timeout); 349 ACTION_P4(SendSlow, headers, content, chunk, timeout) { 351 test_server::ConfigurableConnection::SendOptions::DELAYED, chunk, timeout);
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecLatin1.cpp | 138 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source); local 140 if (!isAllASCII<LChar>(chunk)) 189 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source); local 191 if (!isAllASCII<LChar>(chunk))
|
TextCodecUTF8.cpp | 298 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source); local 299 if (!isAllASCII<LChar>(chunk)) 375 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source); local 376 if (!isAllASCII<LChar>(chunk))
|
/external/chromium_org/third_party/libwebp/webp/ |
demux.h | 37 // // ... (Consume the ICC profile in 'chunk_iter.chunk'). 40 // // ... (Consume the EXIF metadata in 'chunk_iter.chunk'). 43 // // ... (Consume the XMP metadata in 'chunk_iter.chunk'). 106 WEBP_FF_FORMAT_FLAGS, // Extended format flags present in the 'VP8X' chunk. 171 // Chunk iteration. 178 WebPData chunk; // The payload of the chunk. member in struct:WebPChunkIterator 184 // Retrieves the 'chunk_number' instance of the chunk with id 'fourcc' from 186 // 'fourcc' is a character array containing the fourcc of the chunk to return, 188 // Setting 'chunk_number' equal to 0 will return the last chunk in a set [all...] |
/external/chromium_org/third_party/simplejson/ |
decoder.py | 112 chunk = _m(s, end) 113 if chunk is None: 116 end = chunk.end() 117 content, terminator = chunk.groups()
|
/external/webp/include/webp/ |
demux.h | 37 // // ... (Consume the ICC profile in 'chunk_iter.chunk'). 40 // // ... (Consume the EXIF metadata in 'chunk_iter.chunk'). 43 // // ... (Consume the XMP metadata in 'chunk_iter.chunk'). 106 WEBP_FF_FORMAT_FLAGS, // Extended format flags present in the 'VP8X' chunk. 173 // Chunk iteration. 180 WebPData chunk; // The payload of the chunk. member in struct:WebPChunkIterator 186 // Retrieves the 'chunk_number' instance of the chunk with id 'fourcc' from 188 // 'fourcc' is a character array containing the fourcc of the chunk to return, 190 // Setting 'chunk_number' equal to 0 will return the last chunk in a set [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
JarVerifier.java | 350 Manifest.Chunk chunk = man.getChunk(entry.getKey()); local 351 if (chunk == null) { 355 chunk.start, chunk.end, createdBySigntool, false)) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
register.py | 279 for chunk in chunks: 280 if isinstance(chunk, unicode): 281 body.append(chunk.encode('utf-8')) 283 body.append(chunk)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 81 chunk = _m(s, end) 82 if chunk is None: 85 end = chunk.end() 86 content, terminator = chunk.groups()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
register.py | 279 for chunk in chunks: 280 if isinstance(chunk, unicode): 281 body.append(chunk.encode('utf-8')) 283 body.append(chunk)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 81 chunk = _m(s, end) 82 if chunk is None: 85 end = chunk.end() 86 content, terminator = chunk.groups()
|
/bionic/libc/arch-mips/string/ |
memset.S | 187 # There will be at most 1 32-byte chunk then 196 # For "a2" below 160 there will be no such "pref 30 safe" 64-byte chunk. 201 # below we have at least 1 64-byte chunk which is "pref 30 safe" 271 andi t7,t8,0x1f # is there a 32-byte chunk? 273 beq t8,t7,.Lchk1w # when t8==t7, no 32-byte chunk
|
/device/generic/goldfish/camera/fake-pipeline2/ |
JpegCompressor.cpp | 179 JSAMPROW chunk[kChunkSize]; local 181 chunk[i] = (JSAMPROW) 184 jpeg_write_scanlines(&mCInfo, chunk, kChunkSize);
|
/external/chromium_org/base/debug/ |
crash_logging.cc | 25 // The maximum length of a single chunk. 185 std::string chunk = value_string.substr(offset, chunk_max_length); local 186 chunks.push_back(chunk); 187 offset += chunk.length();
|
/external/chromium_org/media/audio/mac/ |
audio_low_latency_input_mac_unittest.cc | 60 const uint8* chunk; local 64 if (!buffer_.GetCurrentChunk(&chunk, &chunk_size)) 67 // Write recorded data chunk to the file and prepare for next chunk. 68 fwrite(chunk, 1, chunk_size, file_);
|
/frameworks/base/services/java/com/android/server/updates/ |
SELinuxPolicyInstallReceiver.java | 90 byte[] chunk = new byte[length]; 91 stream.read(chunk, 0, length); 92 writeUpdate(updateDir, destination, Base64.decode(chunk, Base64.DEFAULT));
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
drive_file_stream_reader.cc | 51 const std::string& chunk = *(*pending_data)[index]; local 52 DCHECK(!chunk.empty()); 55 chunk.size(), static_cast<size_t>(buffer_length - offset)); 56 std::memmove(buffer->data() + offset, chunk.data(), bytes_to_read); 58 if (bytes_to_read < chunk.size()) { 59 // The chunk still has some remaining data.
|
/external/chromium_org/third_party/skia/src/xml/ |
SkDOM.cpp | 192 static char* dupstr(SkChunkAlloc* chunk, const char src[]) 194 SkASSERT(chunk && src); 196 char* dst = (char*)chunk->alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType); 204 SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError), fAlloc(chunk)
|
/external/chromium_org/v8/src/ |
lithium.cc | 433 LChunk* chunk = builder.Build(); local 434 if (chunk == NULL) return NULL; 436 if (!allocator.Allocate(chunk)) { 441 chunk->set_allocated_double_registers( 444 return chunk;
|
/external/skia/src/xml/ |
SkDOM.cpp | 192 static char* dupstr(SkChunkAlloc* chunk, const char src[]) 194 SkASSERT(chunk && src); 196 char* dst = (char*)chunk->alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType); 204 SkDOMParser(SkChunkAlloc* chunk) : SkXMLParser(&fParserError), fAlloc(chunk)
|
/external/v8/src/arm/ |
lithium-codegen-arm.h | 46 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 47 : chunk_(chunk), 52 instructions_(chunk->instructions()), 99 // Try to generate code for the entire chunk, but it may fail if the 100 // chunk contains constructs we cannot handle. Returns true if the 156 LChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 173 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/v8/src/mips/ |
lithium-codegen-mips.h | 46 LCodeGen(LChunk* chunk, MacroAssembler* assembler, CompilationInfo* info) 47 : chunk_(chunk), 52 instructions_(chunk->instructions()), 99 // Try to generate code for the entire chunk, but it may fail if the 100 // chunk contains constructs we cannot handle. Returns true if the 152 LChunk* chunk() const { return chunk_; } function in class:v8::internal::BASE_EMBEDDED 170 int GetStackSlotCount() const { return chunk()->spill_slot_count(); }
|
/external/chromium_org/media/base/android/ |
media_codec_bridge_unittest.cc | 234 // Simulate a seek to 10 seconds, and each chunk has 2 I-frames. 235 std::vector<uint8> chunk(buffer->data(), 237 chunk.insert(chunk.end(), buffer->data(), 240 DecodeMediaFrame(media_codec.get(), &chunk[0], chunk.size(), 246 DecodeMediaFrame(media_codec.get(), &chunk[0], chunk.size(),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
config.py | 837 chunk = conn.recv(4) 838 if len(chunk) == 4: 839 slen = struct.unpack(">L", chunk)[0] 840 chunk = self.connection.recv(slen) 841 while len(chunk) < slen: 842 chunk = chunk + conn.recv(slen - len(chunk)) 845 d =json.loads(chunk [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
config.py | 837 chunk = conn.recv(4) 838 if len(chunk) == 4: 839 slen = struct.unpack(">L", chunk)[0] 840 chunk = self.connection.recv(slen) 841 while len(chunk) < slen: 842 chunk = chunk + conn.recv(slen - len(chunk)) 845 d =json.loads(chunk [all...] |