/external/chromium_org/chrome/browser/resources/sync_internals/ |
about.css | 6 #about-info { 10 #about-info > div { 15 #about-info h2 { 21 #about-info .err { 25 #about-info .section {
|
/external/chromium_org/chrome/common/extensions/manifest_handlers/ |
app_launch_info.cc | 56 AppLaunchInfo* info = static_cast<AppLaunchInfo*>( local 58 return info ? *info : g_empty_app_launch_info.Get(); 102 const AppLaunchInfo& info = GetAppLaunchInfo(extension); local 103 if (info.launch_local_path_.empty()) 104 return info.launch_web_url_; 106 return extension->url().Resolve(info.launch_local_path_); 297 scoped_ptr<AppLaunchInfo> info(new AppLaunchInfo); 298 if (!info->Parse(extension, error)) 300 extension->SetManifestData(keys::kLaunch, info.release()) [all...] |
/external/chromium_org/content/browser/renderer_host/media/ |
audio_input_device_manager.cc | 192 int session_id, const StreamDeviceInfo& info) { 197 StreamDeviceInfo out(info.device.type, info.device.name, info.device.id, 211 audio_manager_->GetInputStreamParameters(info.device.id); 220 audio_manager_->GetAssociatedOutputDeviceID(info.device.id); 250 const StreamDeviceInfo& info) { 252 DCHECK_EQ(session_id, info.session_id); 255 devices_.push_back(info); 258 listener_->Opened(info.device.type, session_id) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/ |
html5_fs_node.cc | 150 PP_FileInfo info; local 152 file_ref_iface_->Query(fileref_resource_, &info, PP_BlockUntilComplete()); 156 // Fill in known info here. 159 // Fill in the additional info from ppapi. 160 switch (info.type) { 171 stat->st_size = static_cast<off_t>(info.size); 172 stat->st_atime = info.last_access_time; 173 stat->st_mtime = info.last_modified_time; 174 stat->st_ctime = info.creation_time; 244 PP_FileInfo info; local [all...] |
/external/chromium_org/storage/browser/fileapi/quota/ |
quota_backend_impl.cc | 106 const QuotaReservationInfo& info, 112 DCHECK(info.origin.is_valid()); 120 QuotaReservationInfo normalized_info = info; 121 if (info.delta > 0) { 123 base::saturated_cast<int64>(usage + static_cast<uint64>(info.delta)); 139 void QuotaBackendImpl::ReserveQuotaInternal(const QuotaReservationInfo& info) { 141 DCHECK(info.origin.is_valid()); 145 info.origin, 146 FileSystemTypeToQuotaStorageType(info.type), 147 info.delta) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
V8TestInterfaceEventTarget.cpp | 39 static void V8TestInterfaceEventTargetConstructorCallback(const v8::FunctionCallbackInfo<v8::Value>& info) 41 if (!info.IsConstructCall()) { 42 V8ThrowException::throwTypeError(ExceptionMessages::constructorNotCallableAsFunction("Name"), info.GetIsolate()); 46 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExistingObject) { 47 v8SetReturnValue(info, info.Holder()); 50 Document& document = *toDocument(currentExecutionContext(info.GetIsolate())); 52 v8::Handle<v8::Object> wrapper = info.Holder(); 53 impl->associateWithWrapper(&V8TestInterfaceEventTargetConstructor::wrapperTypeInfo, wrapper, info.GetIsolate()); 54 v8SetReturnValue(info, wrapper) [all...] |
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
array.pxd | 91 def __getbuffer__(self, Py_buffer* info, int flags): 98 info.suboffsets = NULL 99 info.buf = self.data.as_chars 100 info.readonly = 0 101 info.ndim = 1 102 info.itemsize = self.ob_descr.itemsize # e.g. sizeof(float) 103 info.len = info.itemsize * item_count 105 info.shape = <Py_ssize_t*> PyMem_Malloc(sizeof(Py_ssize_t) + 2) 106 if not info.shape [all...] |
/external/chromium_org/third_party/freetype/src/sfnt/ |
pngshim.c | 191 png_infop info; local 219 info = png_create_info_struct( png ); 220 if ( !info ) 235 png_read_info( png, info ); 236 png_get_IHDR( png, info, 261 if ( png_get_valid(png, info, PNG_INFO_tRNS ) ) 281 png_read_update_info(png, info ); 282 png_get_IHDR( png, info, 323 png_read_end( png, info ); 326 png_destroy_read_struct( &png, &info, NULL ) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_vs.c | 124 for (i = 0; i < vs->info.num_outputs; i++) { 125 if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_POSITION && 126 vs->info.output_semantic_index[i] == 0) 128 else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_EDGEFLAG && 129 vs->info.output_semantic_index[i] == 0) 131 else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_CLIPVERTEX && 132 vs->info.output_semantic_index[i] == 0) { 135 } else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_CLIPDIST) { 136 if (vs->info.output_semantic_index[i] == 0) 160 draw->vs.num_vs_outputs = dvs->info.num_outputs [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
heap-profile-table.h | 77 // Info we can return about an allocation. 86 // Info we return about an allocation context. 124 // Same as FindAlloc, but fills all of *info. 125 bool FindAllocDetails(const void* ptr, AllocInfo* info) const; 157 typedef void (*AllocIterator)(const void* ptr, const AllocInfo& info); 173 typedef void (*AllocContextIterator)(const AllocContextInfo& info); 239 // Info stored in the address map 379 AllocInfo info; local 380 info.object_size = v->bytes; 381 info.call_stack = v->bucket()->stack [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
port.cc | 295 MEMORY_BASIC_INFORMATION info; local 297 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 298 assert(resultSize == sizeof(info)); 299 size_t decommitSize = std::min<size_t>(info.RegionSize, end - ptr); 317 MEMORY_BASIC_INFORMATION info; local 319 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 320 assert(resultSize == sizeof(info)); 322 size_t commitSize = std::min<size_t>(info.RegionSize, end - ptr) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
heap-profile-table.h | 74 // Info we can return about an allocation. 83 // Info we return about an allocation context. 121 // Same as FindAlloc, but fills all of *info. 122 bool FindAllocDetails(const void* ptr, AllocInfo* info) const; 147 typedef void (*AllocIterator)(const void* ptr, const AllocInfo& info); 156 typedef void (*AllocContextIterator)(const AllocContextInfo& info); 213 // Info stored in the address map 294 AllocInfo info; local 295 info.object_size = v->bytes; 296 info.call_stack = v->bucket()->stack [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
decoder_database.cc | 49 DecoderInfo info(codec_type, fs_hz, NULL, false); 50 ret = decoders_.insert(std::make_pair(rtp_payload_type, info)); 76 DecoderInfo info(codec_type, fs_hz, decoder, true); 78 std::pair<uint8_t, DecoderInfo>(rtp_payload_type, info)); 133 DecoderInfo* info = &(*it).second; local 134 if (!info->decoder) { 136 AudioDecoder* decoder = AudioDecoder::CreateAudioDecoder(info->codec_type); 138 info->decoder = decoder; 139 info->decoder->Init(); 141 return info->decoder [all...] |
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/ |
protocol_loop.py | 26 'info': logging.INFO, 72 self.logger.info('_reconfigurePort()') 167 self.logger.info('flushInput()') 179 self.logger.info('flushOutput()') 191 self.logger.info('setBreak(%r)' % (level,)) 197 self.logger.info('setRTS(%r) -> state of CTS' % (level,)) 204 self.logger.info('setDTR(%r) -> state of DSR' % (level,)) 211 self.logger.info('getCTS() -> state of RTS (%r)' % (self.cts,)) 218 self.logger.info('getDSR() -> state of DTR (%r)' % (self.dsr,) [all...] |
/external/chromium_org/ui/ozone/platform/dri/ |
dri_wrapper.cc | 29 const SkImageInfo& info, 34 request.width = info.width(); 35 request.height = info.height(); 36 request.bpp = info.bytesPerPixel() << 3; 48 DCHECK_LE(info.getSafeSize(request.pitch), request.size); 275 bool DriWrapper::CreateDumbBuffer(const SkImageInfo& info, 282 if (!DrmCreateDumbBuffer(fd_, info, handle, stride)) 285 if (!MapDumbBuffer(fd_, *handle, info.getSafeSize(*stride), pixels)) { 293 void DriWrapper::DestroyDumbBuffer(const SkImageInfo& info, 299 munmap(pixels, info.getSafeSize(stride)) [all...] |
/external/freetype/src/sfnt/ |
pngshim.c | 193 png_infop info; local 230 info = png_create_info_struct( png ); 231 if ( !info ) 246 png_read_info( png, info ); 247 png_get_IHDR( png, info, 294 if ( png_get_valid(png, info, PNG_INFO_tRNS ) ) 314 png_read_update_info(png, info ); 315 png_get_IHDR( png, info, 356 png_read_end( png, info ); 359 png_destroy_read_struct( &png, &info, NULL ) [all...] |
/external/libvpx/libvpx/vpx/internal/ |
vpx_codec_internal.h | 98 /*!\brief parse stream info function pointer prototype 107 * \param[in,out] si Pointer to stream info to update. The size member 124 * \param[in,out] si Pointer to stream info to update. The size member 490 static void vpx_internal_error(struct vpx_internal_error_info *info, 496 info->error_code = error; 497 info->has_detail = 0; 500 size_t sz = sizeof(info->detail); 502 info->has_detail = 1; 504 vsnprintf(info->detail, sz - 1, fmt, ap); 506 info->detail[sz - 1] = '\0' [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_vs.c | 124 for (i = 0; i < vs->info.num_outputs; i++) { 125 if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_POSITION && 126 vs->info.output_semantic_index[i] == 0) 128 else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_EDGEFLAG && 129 vs->info.output_semantic_index[i] == 0) 131 else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_CLIPVERTEX && 132 vs->info.output_semantic_index[i] == 0) { 135 } else if (vs->info.output_semantic_name[i] == TGSI_SEMANTIC_CLIPDIST) { 136 if (vs->info.output_semantic_index[i] == 0) 160 draw->vs.num_vs_outputs = dvs->info.num_outputs [all...] |
/external/aac/libSYS/include/ |
FDK_audio.h | 81 amm-info@iis.fraunhofer.de 556 #define LIB_VERSION_STRING(info) FDKsprintf((info)->versionStr, "%d.%d.%d", (((info)->version >> 24) & 0xff), (((info)->version >> 16) & 0xff), (((info)->version >> 8 ) & 0xff)) 572 /** Initialize library info. */ 573 static inline void FDKinitLibInfo( LIB_INFO* info ) 578 info[i].module_id = FDK_NONE; 583 static inline UINT FDKlibInfo_getCapabilities( const LIB_INFO* info, FDK_MODULE_ID module_id [all...] |
/external/chromium_org/build/android/pylib/perf/ |
test_runner.py | 91 logging.info('*' * 80) 92 logging.info('Output from:') 93 logging.info(persisted_result['cmd']) 94 logging.info('*' * 80) 101 logging.info('*' * 80) 102 logging.info('Sharding summary') 107 logging.info('%s : No status file found', test_name) 111 logging.info('%s : exit_code=%d in %d secs at %s', 116 logging.info('Total for device %s : %d secs', device, device_time) 117 logging.info('Total steps time: %d secs', sum(device_total_time.values()) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
CustomElementConstructorBuilder.cpp | 266 static void constructCustomElement(const v8::FunctionCallbackInfo<v8::Value>& info) 268 v8::Isolate* isolate = info.GetIsolate(); 270 if (!info.IsConstructCall()) { 275 if (info.Length() > 0) { 280 Document* document = V8Document::toImpl(V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Callee(), V8HiddenValue::customElementDocument(isolate)).As<v8::Object>()); 281 TOSTRING_VOID(V8StringResource<>, namespaceURI, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementNamespaceURI(isolate))); 282 TOSTRING_VOID(V8StringResource<>, tagName, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementTagName(isolate))); 283 v8::Handle<v8::Value> maybeType = V8HiddenValue::getHiddenValue(info.GetIsolate(), info.Callee(), V8HiddenValue::customElementType(isolate)) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
test_importer.py | 121 if record.levelno > logging.INFO: 126 logger.setLevel(logging.INFO) 128 handler.setLevel(logging.INFO) 176 _log.info("Importing %s into %s", self.dir_to_import, self.destination_directory) 194 _log.info(' scanning ' + cur_dir + '...') 212 _log.info(" pruning %s" % path_base) 215 _log.info(" skipping %s" % path_base) 225 _log.info(" pruning %s" % path_base) 362 _log.info(' skipping %s' % relpath) 367 _log.info(' %s' % relpath [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.c | 176 for (src = 0; src < emit_data->info->num_src; src++) { 180 emit_data->arg_count = emit_data->info->num_src; 194 const struct tgsi_opcode_info * info = tgsi_get_opcode_info(tgsi_opcode); local 231 assert(info->num_dst <= 1); 232 if (info->num_dst) { 239 emit_data.info = info; 242 if (info->output_mode == TGSI_OUTPUT_COMPONENTWISE && bld_base->soa) { 259 if (info->output_mode != TGSI_OUTPUT_CHAN_DEPENDENT) { 265 if (info->output_mode == TGSI_OUTPUT_REPLICATE && bld_base->soa) [all...] |
/external/chromium_org/third_party/skia/src/fonts/ |
SkTestScalerContext.cpp | 147 SkAdvancedTypefaceMetrics* info = new SkAdvancedTypefaceMetrics; 148 info->fEmSize = 0; 149 info->fLastGlyphID = SkToU16(onCountGlyphs() - 1); 150 info->fStyle = 0; 151 info->fFontName.set(fTestFont->fName); 152 info->fType = SkAdvancedTypefaceMetrics::kOther_Font; 153 info->fItalicAngle = 0; 154 info->fAscent = 0; 155 info->fDescent = 0; 156 info->fStemV = 0 [all...] |
/external/chromium_org/v8/test/cctest/compiler/ |
test-codegen-deopt.cc | 45 info(function, scope->main_zone()), 47 CHECK(Parser::Parse(&info)); 48 info.SetOptimizing(BailoutId::None(), Handle<Code>(function->code())); 49 CHECK(Rewriter::Rewrite(&info)); 50 CHECK(Scope::Analyze(&info)); 51 CHECK(Compiler::EnsureDeoptimizationSupport(&info)); 53 DCHECK(info.shared_info()->has_deoptimization_support()); 67 Linkage* linkage = new (scope_->main_zone()) Linkage(&info); 101 CompilationInfo info; member in class:DeoptCodegenTester 167 ZoneList<Statement*>* body = info.function()->body() [all...] |