/external/chromium_org/content/browser/fileapi/ |
dragged_file_util_unittest.cc | 158 // Get the file info and the platform path for url1. 168 // Get the file info and the platform path for url2. 178 // See if file info matches with the other one. 293 // See if we can query the file info via the isolated FileUtil. 296 base::PlatformFileInfo info; local 300 file_util()->GetFileInfo(&context, url, &info, &platform_path)); 302 // See if the obtained file info is correct. 304 ASSERT_EQ(test_case.data_file_size, info.size); 305 ASSERT_EQ(test_case.is_directory, info.is_directory); 328 base::PlatformFileInfo info; local 505 base::PlatformFileInfo info; local 525 base::PlatformFileInfo info; local [all...] |
file_system_operation_impl_unittest.cc | 87 const base::PlatformFileInfo& info() const { return info_; } function in class:fileapi::FileSystemOperationImplTest 161 base::PlatformFileInfo info; local 162 EXPECT_TRUE(base::GetFileInfo(PlatformPath(path), &info)); 163 return info.size; 201 const base::PlatformFileInfo& info) { 202 info_ = info; 208 const base::PlatformFileInfo& info, 211 info_ = info; 1067 base::PlatformFileInfo info; local [all...] |
/external/chromium_org/content/child/npapi/ |
plugin_instance.cc | 460 TimerInfo info; local 461 info.interval = interval; 462 info.repeat = repeat ? true : false; 463 timers_[timer_id] = info; 474 // Remove info about the timer. 497 TimerInfo info = it->second; 507 if (info.repeat) { 511 base::TimeDelta::FromMilliseconds(info.interval));
|
/external/chromium_org/content/common/ |
plugin_list_posix.cc | 134 bool IsUndesirablePlugin(const WebPluginInfo& info) { 135 std::string filename = info.path.BaseName().value(); 218 NSPluginWrapperInfo* info = local 220 if (!info) 229 char* path_end = static_cast<char*>(memchr(info->path, '\0', 230 sizeof(info->path))); 232 path_end = info->path + sizeof(info->path); 234 std::string(info->path, path_end - info->path)) 547 base::PlatformFileInfo info; local [all...] |
/external/chromium_org/content/renderer/pepper/ |
plugin_module.cc | 159 // Global tracking info for PPAPI plugins. This is lazily created before the 389 const PepperPluginInfo* info = local 391 DCHECK(!info->is_out_of_process); 704 const PepperPluginInfo* info = local 706 if (!info) { 709 } else if (!info->is_out_of_process) { 715 ppapi::PpapiPermissions::GetForCommandLine(info->permissions); 730 module = new PluginModule(info->name, path, permissions);
|
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/ |
handlers.c | 767 struct hostent* info; local 783 info = gethostbyname(name); 784 if (!info) { 790 addr_type = info->h_addrtype == AF_INET ? "AF_INET" : "AF_INET6"; 793 + strlen(info->h_name) + 1 + strlen(addr_type); 796 addr_list = (struct in_addr **)info->h_addr_list; 799 if (info->h_addrtype == AF_INET) { 813 info->h_name, addr_type); 817 if (info->h_addrtype == AF_INET) {
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
fake_pepper_interface_html5fs.cc | 74 FakeHtml5FsNode::FakeHtml5FsNode(const PP_FileInfo& info) : info_(info) {} 76 FakeHtml5FsNode::FakeHtml5FsNode(const PP_FileInfo& info, 78 : info_(info), contents_(contents) {} 80 FakeHtml5FsNode::FakeHtml5FsNode(const PP_FileInfo& info, 82 : info_(info) { 177 PP_FileInfo info; local 178 info.size = contents.size(); 179 info.type = PP_FILETYPE_REGULAR; 180 info.system_type = filesystem_type_ 204 PP_FileInfo info; local [all...] |
/external/chromium_org/net/http/ |
http_pipelined_connection_impl.cc | 720 HttpResponseInfo* info = GetResponseInfo(pipeline_id); local 722 if (info->headers->GetParsedHttpVersion() < required_version) { 726 if (!info->headers->IsKeepAlive() || !CanFindEndOfResponse(pipeline_id)) { 731 if (info->headers->HasHeader(
|
/external/chromium_org/net/socket/ |
tcp_socket_libevent.cc | 861 tcp_info info; local 864 getsockopt(socket_, IPPROTO_TCP, TCP_INFO, &info, &info_len) == 0 && 867 (info.tcpi_options & TCPI_OPT_SYN_DATA);
|
/external/chromium_org/ppapi/tests/ |
test_file_io.cc | 571 // NOTE: In NaCl on Windows, NaClDescIO uses _fstat64 to retrieve file info. 582 PP_FileInfo info; local 583 callback.WaitForResult(file_io.Query(&info, callback.GetCallback())); 587 if ((info.size != 4) || 588 (info.type != PP_FILETYPE_REGULAR) || 589 (info.system_type != PP_FILESYSTEMTYPE_LOCALTEMPORARY)) 591 //(info.last_access_time != last_access_time) || 592 //(info.last_modified_time != last_modified_time)) 596 callback.WaitForResult(file_io.Query(&info, callback.GetCallback())); 639 PP_FileInfo info = { 0 } local 962 PP_FileInfo info; local 1328 PP_FileInfo info; local [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 63 // Protect against large PNGs. See Mozilla's bug #251381 for more info. 267 static void readColorProfile(png_structp png, png_infop info, ColorProfile& colorProfile) 278 if (!png_get_iCCP(png, info, &profileName, &compressionType, &profile, &profileLength)) 301 png_infop info = m_reader->infoPtr(); local 302 png_uint_32 width = png_get_image_width(png, info); 303 png_uint_32 height = png_get_image_height(png, info); 325 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, &compressionType, &filterType); 335 if (png_get_valid(png, info, PNG_INFO_tRNS)) { 336 png_get_tRNS(png, info, &trns, &trnsCount, 0); 355 readColorProfile(png, info, colorProfile) [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-shape-complex-thai.cc | 226 hb_glyph_info_t *info = buffer->info; local 230 thai_mark_type_t mt = get_mark_type (info[i].codepoint); 233 thai_consonant_type_t ct = get_consonant_type (info[i].codepoint); 249 info[base].codepoint = thai_pua_shape (info[base].codepoint, action, font); 251 info[i].codepoint = thai_pua_shape (info[i].codepoint, action, font);
|
hb-ot-shape.cc | 226 _hb_glyph_info_set_unicode_props (&buffer->info[i], buffer->unicode); 233 _hb_glyph_info_get_general_category (&buffer->info[0]) != 248 hb_glyph_info_t info = dottedcircle; local 249 info.cluster = buffer->cur().cluster; 250 info.mask = buffer->cur().mask; 251 buffer->output_info (info); 263 if (HB_UNICODE_GENERAL_CATEGORY_IS_MARK (_hb_glyph_info_get_general_category (&buffer->info[i]))) 298 hb_glyph_info_t *info = buffer->info; local 300 hb_codepoint_t codepoint = unicode->mirroring (info[i].codepoint) 344 hb_glyph_info_t *info = c->buffer->info; local 433 hb_glyph_info_t *info = c->buffer->info; local 476 hb_glyph_info_t *info = c->buffer->info; local 560 hb_glyph_info_t *info = c->buffer->info; local [all...] |
/external/chromium_org/third_party/icu/source/test/cintltst/ |
idnatest.c | 872 UIDNAInfo info = UIDNA_INFO_INITIALIZER; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
svccoll.cpp | 253 CollatorInfo** info; member in class:TestFactory 258 for (CollatorInfo** p = info; *p; ++p) { 268 : info(_info) 273 for (p = info; *p; ++p) {} 274 count = (int32_t)(p - info); 278 for (CollatorInfo** p = info; *p; ++p) { 281 delete[] info; 317 ids[i] = info[i]->locale.getName(); 374 CollatorInfo** info = new CollatorInfo*[4]; local 375 if (!info) { [all...] |
uts46test.cpp | 112 IDNAInfo info; local 115 trans->nameToASCII(input, result, info, errorCode); 116 if(U_FAILURE(errorCode) || info.hasErrors() || result!=expected) { 117 errln("T.nameToASCII(www.example.com) info.errors=%04lx result matches=%d %s", 118 (long)info.getErrors(), result==expected, u_errorName(errorCode)); 121 trans->nameToUnicode(input, result, info, errorCode); 130 nontrans->labelToASCII(input, result, info, errorCode); 139 nontrans->labelToASCII(input, result, info, errorCode); 141 info.getErrors()!=(UIDNA_ERROR_LABEL_HAS_DOT|UIDNA_ERROR_INVALID_ACE_LABEL) || 145 info.getErrors(), u_errorName(errorCode)) 151 nontrans->labelToUnicodeUTF8(StringPiece(NULL, 5), sink, info, errorCode); local 160 nontrans->nameToASCII_UTF8(StringPiece(), sink, info, errorCode); local 169 nontrans->nameToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode); local 178 trans->labelToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode); local 211 IDNAInfo info; local [all...] |
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/ |
json_reader.cpp | 650 // info: 793 ErrorInfo info; local 794 info.token_ = token; 795 info.message_ = message; 796 info.extra_ = extra; 797 errors_.push_back( info );
|
/external/chromium_org/third_party/lcov/bin/ |
geninfo | 22 # This script generates .info files from data files as created by code 37 # 2003-04-30 / Peter Oberparleiter: made info write to STDERR, not STDOUT 156 sub info(@); 548 info("Finished .info-file creation\n"); 567 Traverse DIRECTORY and create a .info file for each data file found. Note 634 # Traverse DIRECTORY and create a .info file for each data file found. 635 # The .info file contains TEST_NAME in the following format: 683 info("Scanning $directory for $ext files ...\n"); 690 info("Found %d %s files in %s\n", $#file_list+1, $type 1898 sub info(@) subroutine [all...] |
/external/chromium_org/third_party/libXNVCtrl/ |
NVCtrl.c | 60 static uintptr_t version_flags(Display *dpy, XExtDisplayInfo *info); 90 static void XNVCTRLCheckTargetData(Display *dpy, XExtDisplayInfo *info, 93 uintptr_t flags = version_flags(dpy, info); 110 XExtDisplayInfo *info = find_display (dpy); local 112 if (XextHasExtension(info)) { 113 if (event_basep) *event_basep = info->codes->first_event; 114 if (error_basep) *error_basep = info->codes->first_error; 126 static uintptr_t version_flags(Display *dpy, XExtDisplayInfo *info) 128 uintptr_t data = (uintptr_t)info->data; 144 info->data = (XPointer)data 155 XExtDisplayInfo *info = find_display (dpy); local 185 XExtDisplayInfo *info = find_display (dpy); local 217 XExtDisplayInfo *info = find_display (dpy); local 251 XExtDisplayInfo *info = find_display (dpy); local 290 XExtDisplayInfo *info = find_display (dpy); local 343 XExtDisplayInfo *info = find_display (dpy); local 394 XExtDisplayInfo *info = find_display(dpy); local 434 XExtDisplayInfo *info = find_display (dpy); local 503 XExtDisplayInfo *info = find_display (dpy); local 605 XExtDisplayInfo *info = find_display(dpy); local 694 XExtDisplayInfo *info = find_display(dpy); local 750 XExtDisplayInfo *info = find_display (dpy); local 836 XExtDisplayInfo *info = find_display (dpy); local 879 XExtDisplayInfo *info = find_display (dpy); local 919 XExtDisplayInfo *info = find_display (dpy); local 948 XExtDisplayInfo *info = find_display (dpy); local 978 XExtDisplayInfo *info = find_display (dpy); local 1049 XExtDisplayInfo *info = find_display(dpy); local 1119 XExtDisplayInfo *info = find_display (dpy); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
thread.cc | 320 THREADNAME_INFO info; local 321 info.dwType = 0x1000; 322 info.szName = szThreadName; 323 info.dwThreadID = dwThreadID; 324 info.dwFlags = 0; 327 RaiseException(MSDEV_SET_THREAD_NAME, 0, sizeof(info) / sizeof(DWORD), 328 reinterpret_cast<ULONG_PTR*>(&info));
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nv30_state.h | 80 struct tgsi_shader_info info; member in struct:nv30_vertprog 109 struct tgsi_shader_info info; member in struct:nv30_fragprog
|
nvfx_vertprog.c | 42 struct tgsi_shader_info* info; member in struct:nvfx_vpc 738 reloc.target = vpc->info->num_instructions; 787 if(idx != (vpc->info->num_instructions - 1)) { 789 reloc.target = vpc->info->num_instructions; 990 vpc->info = &vp->info; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_from_sm4.cpp | 92 struct nv50_ir_prog_info& info; member in class:__anon12675::Converter 670 for (i = 0; i < info.numSysVals; ++i) 671 if (info.sv[i].sn == sn && 672 info.sv[i].si == si) 674 info.numSysVals = i + 1; 675 info.sv[i].sn = sn; 676 info.sv[i].si = si; 677 info.sv[i].mask = mask; 678 info.sv[i].input = input ? 1 : 0; 687 info.numInputs = 0 [all...] |
nv50_ir_from_tgsi.cpp | 102 uint32_t getValueU32(int c, const struct nv50_ir_prog_info *info) const 107 return info->immd.data[reg.Index * 4 + getSwizzle(c)]; 592 struct nv50_ir_prog_info *info; member in class:tgsi::Source 616 Source::Source(struct nv50_ir_prog_info *prog) : info(prog) 618 tokens = (const struct tgsi_token *)info->bin.source; 633 if (info->immd.data) 634 FREE(info->immd.data); 635 if (info->immd.type) 636 FREE(info->immd.type); 659 info->immd.bufSize = 0 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r3xx_vertprog.c | 375 const struct rc_opcode_info *info = rc_get_opcode_info(vpi->Opcode); local 381 if (info->HasDstReg) { 511 rc_error(&compiler->Base, "Unknown opcode %s\n", info->Name); 525 if (info->HasDstReg && vpi->DstReg.File == RC_FILE_TEMPORARY && 529 for (unsigned i = 0; i < info->NumSrcRegs; i++)
|