/external/chromium_org/extensions/browser/api/system_network/ |
system_network_api.cc | 69 linked_ptr<core_api::system_network::NetworkInterface> info = local 71 info->name = i->name; 72 info->address = net::IPAddressToString(i->address); 73 info->prefix_length = i->network_prefix; 74 create_arg.push_back(info);
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
V8ObjectConstructor.cpp | 59 void V8ObjectConstructor::isValidConstructorMode(const v8::FunctionCallbackInfo<v8::Value>& info) 61 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::CreateNewObject) { 62 V8ThrowException::throwTypeError("Illegal constructor", info.GetIsolate()); 65 v8SetReturnValue(info, info.This());
|
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/ |
V8CryptoKeyCustom.cpp | 58 void V8CryptoKey::algorithmAttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>& info) 60 CryptoKey* impl = V8CryptoKey::toImpl(info.Holder()); 62 DictionaryBuilder builder(info.Holder(), info.GetIsolate()); 65 v8SetReturnValue(info, builder.dictionary().v8Value());
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
V8TestInterfaceNotScriptWrappable.cpp | 30 static void attr1AttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) 32 v8::Handle<v8::Object> holder = info.Holder(); 34 v8SetReturnValueFast(info, WTF::getPtr(impl->attr1()), impl); 37 static void attr1AttributeGetterCallback(v8::Local<v8::String>, const v8::PropertyCallbackInfo<v8::Value>& info) 40 TestInterfaceNotScriptWrappableV8Internal::attr1AttributeGetter(info); 44 static void attr1AttributeSetter(v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) 46 v8::Handle<v8::Object> holder = info.Holder(); 48 TestInterfaceNotScriptWrappable* cppValue = V8TestInterfaceNotScriptWrappable::toImplWithTypeCheck(info.GetIsolate(), v8Value); 52 static void attr1AttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<void>& info) 55 TestInterfaceNotScriptWrappableV8Internal::attr1AttributeSetter(v8Value, info); [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
simple_decoder.c | 102 const VpxVideoInfo *info = NULL; local 116 info = vpx_video_reader_get_info(reader); 118 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc); 147 info->frame_width, info->frame_height, argv[2]);
|
/external/chromium_org/third_party/skia/bench/ |
PremulAndUnpremulAlphaOpsBench.cpp | 33 SkImageInfo info = SkImageInfo::Make(W, H, fColorType, kUnpremul_SkAlphaType); local 34 fBmp1.allocPixels(info); // used in writePixels 43 fBmp2.allocPixels(info); // used in readPixels() 51 canvas->writePixels(fBmp1.info(), fBmp1.getPixels(), fBmp1.rowBytes(), 0, 0); 53 canvas->readPixels(fBmp2.info(), fBmp2.getPixels(), fBmp2.rowBytes(), 0, 0);
|
RecordingBench.cpp | 34 SkTileGridFactory::TileGridInfo info; local 35 info.fTileInterval.set(kTileSize, kTileSize); 36 info.fMargin.setEmpty(); 37 info.fOffset.setZero(); 38 SkTileGridFactory factory(info);
|
/external/chromium_org/ui/gl/ |
gl_egl_api_implementation.cc | 68 bool GetGLWindowSystemBindingInfoEGL(GLWindowSystemBindingInfo* info) { 73 *info = GLWindowSystemBindingInfo(); 75 info->vendor = vendor; 77 info->version = version; 79 info->extensions = extensions;
|
/external/chromium_org/v8/src/ |
background-parsing-task.cc | 16 source->info.Reset(new i::CompilationInfoWithZone(source->source_stream.get(), 18 source->info->MarkAsGlobal(); 27 !i::Compiler::DebuggerWantsEagerCompilation(source->info.get()); 40 source_->info->SetCachedData(&script_data, options_); 49 source_->parser.Reset(new Parser(source_->info.get(), &parse_info));
|
optimizing-compiler-thread.cc | 118 CompilationInfo* info = job->info(); local 120 if (info->is_osr()) { 123 Handle<Code> code = info->unoptimized_code(); 124 uint32_t offset = code->TranslateAstIdToPcOffset(info->osr_ast_id()); 128 Handle<JSFunction> function = info->closure(); 132 delete info; 143 if (!job->info()->is_osr()) { 154 if (!job->info()->is_osr()) { 224 CompilationInfo* info = job->info() local 259 CompilationInfo* info = job->info(); local 350 CompilationInfo* info = stale->info(); local [all...] |
/external/deqp/modules/egl/ |
teglSimpleConfigCase.cpp | 123 void addConfigId (map<string, NamedConfigIdSet*>& setMap, const char* name, const ConfigInfo& info) 126 setMap[name]->getConfigIds().push_back(info.configId); 129 bool filterConfigStencil (map<string, NamedConfigIdSet*>& setMap, const char* namePrefix, const ConfigInfo& info) 131 if (info.stencilSize > 0) 132 addConfigId(setMap, (string(namePrefix) + "stencil").c_str(), info); 134 addConfigId(setMap, (string(namePrefix) + "no_stencil").c_str(), info); 138 bool filterConfigDepth (map<string, NamedConfigIdSet*>& setMap, const char* namePrefix, const ConfigInfo& info) 140 if (info.depthSize > 0) 141 return filterConfigStencil(setMap, (string(namePrefix) + "depth_").c_str(), info); 143 return filterConfigStencil(setMap, (string(namePrefix) + "no_depth_").c_str(), info); 208 const ConfigInfo& info = *cfgIter; local [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
GenericAttribute_info.java | 34 public GenericAttribute_info (final int attribute_name_index, final byte [] info) 36 super (attribute_name_index, (info != null ? info.length : 0)); 38 m_info = (info != null ? info : EMPTY_BYTE_ARRAY);
|
/external/libvpx/libvpx/examples/ |
simple_decoder.c | 106 const VpxVideoInfo *info = NULL; local 120 info = vpx_video_reader_get_info(reader); 122 decoder = get_vpx_decoder_by_fourcc(info->codec_fourcc); 151 info->frame_width, info->frame_height, argv[2]);
|
/external/ltrace/sysdeps/linux-gnu/s390/ |
fetch.c | 127 struct arg_type_info *info, struct value *valuep, 159 struct arg_type_info *info, struct value *valuep, 163 return allocate_stack_slot(ctx, proc, info, valuep, sz); 171 struct arg_type_info *info, struct value *valuep, 179 return allocate_stack_slot(ctx, proc, info, valuep, sz); 202 struct arg_type_info *info, struct value *valuep, 208 return allocate_stack_slot(ctx, proc, info, valuep, sz); 223 struct arg_type_info *info, struct value *valuep) 225 size_t sz = type_sizeof(proc, info); 229 switch (info->type) [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AddInitTransformer.java | 34 private MethodInfo info; field in class:AddInitTransformer 37 info = ReflectUtils.getMethodInfo(method); 39 Type[] types = info.getSignature().getArgumentTypes(); 42 !info.getSignature().getReturnType().equals(Type.VOID_TYPE)) { 54 invoke(info);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
statscollector.cc | 312 void ExtractStats(const cricket::VoiceReceiverInfo& info, StatsReport* report) { 314 info.audio_level); 316 info.bytes_rcvd); 318 info.jitter_ms); 320 info.jitter_buffer_ms); 322 info.jitter_buffer_preferred_ms); 324 info.delay_estimate_ms); 326 rtc::ToString<float>(info.expand_rate)); 328 info.packets_rcvd); 330 info.packets_lost) 889 const cricket::ConnectionInfo& info = local [all...] |
/external/chromium_org/third_party/skia/experimental/SkV8Example/ |
BaseContext.cpp | 162 const PropertyCallbackInfo<Value>& info, 169 info.GetReturnValue().Set(String::NewFromUtf8(info.GetIsolate(), buf)); 173 const PropertyCallbackInfo<void>& info, 177 info.GetIsolate()->ThrowException( 179 info.GetIsolate(), 187 info.GetIsolate()->ThrowException( 189 info.GetIsolate(), "Invalid fill style format.")); 204 const PropertyCallbackInfo<Value>& info) { 205 BaseContext* baseContext = Unwrap(info.This()) [all...] |
/external/chromium_org/content/browser/download/ |
download_resource_handler.cc | 60 scoped_ptr<DownloadCreateInfo> info, 66 DownloadManager* download_manager = info->request_handle.GetDownloadManager(); 79 info->tab_url = tab_info->tab_url; 80 info->tab_referrer_url = tab_info->tab_referrer_url; 82 download_manager->StartDownload(info.Pass(), stream.Pass(), started_cb); 178 scoped_ptr<DownloadCreateInfo> info( 195 info->download_id = download_id_; 196 info->url_chain = request()->url_chain(); 197 info->referrer_url = GURL(request()->referrer()); 198 info->mime_type = response->head.mime_type 495 const ResourceRequestInfo* info = GetRequestInfo(); local 503 const ResourceRequestInfo* info = GetRequestInfo(); local [all...] |
/external/e2fsprogs/e2fsck/ |
recovery.c | 42 struct recovery_info *info, enum passtype pass); 230 struct recovery_info info; local 232 memset(&info, 0, sizeof(info)); 248 err = do_one_pass(journal, &info, PASS_SCAN); 250 err = do_one_pass(journal, &info, PASS_REVOKE); 252 err = do_one_pass(journal, &info, PASS_REPLAY); 256 err, info.start_transaction, info.end_transaction); 258 info.nr_replays, info.nr_revoke_hits, info.nr_revokes) 285 struct recovery_info info; local [all...] |
/external/jpeg/ |
jmemdos.c | 233 * pub/msdos/microsoft/xms20.arc and pub/msdos/info/limems41.zip. 243 read_file_store (j_common_ptr cinfo, backing_store_ptr info, 247 if (jdos_seek(info->handle.file_handle, file_offset)) 252 if (jdos_read(info->handle.file_handle, buffer_address, 259 write_file_store (j_common_ptr cinfo, backing_store_ptr info, 263 if (jdos_seek(info->handle.file_handle, file_offset)) 268 if (jdos_write(info->handle.file_handle, buffer_address, 275 close_file_store (j_common_ptr cinfo, backing_store_ptr info) 277 jdos_close(info->handle.file_handle); /* close the file */ 278 remove(info->temp_name); /* delete the file * [all...] |
/external/libvorbis/lib/ |
mapping0.c | 41 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)i; local 42 if(info){ 43 memset(info,0,sizeof(*info)); 44 _ogg_free(info); 61 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)vm; local 70 if(info->submaps>1){ 72 oggpack_write(opb,info->submaps-1,4); 76 if(info->coupling_steps>0){ 78 oggpack_write(opb,info->coupling_steps-1,8) 104 vorbis_info_mapping0 *info=_ogg_calloc(1,sizeof(*info)); local 257 vorbis_info_mapping0 *info=ci->map_param[modenumber]; local 711 vorbis_info_mapping0 *info=(vorbis_info_mapping0 *)l; local [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-map.cc | 100 feature_info_t *info = feature_infos.push(); local 101 if (unlikely (!info)) return; 103 info->tag = tag; 104 info->seq = feature_infos.len; 105 info->max_value = value; 106 info->flags = flags; 107 info->default_value = (flags & F_GLOBAL) ? value : 0; 108 info->stage[0] = current_stage[0]; 109 info->stage[1] = current_stage[1]; 188 const feature_info_t *info = &feature_infos[i] local [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-map.cc | 100 feature_info_t *info = feature_infos.push(); local 101 if (unlikely (!info)) return; 103 info->tag = tag; 104 info->seq = feature_infos.len; 105 info->max_value = value; 106 info->flags = flags; 107 info->default_value = (flags & F_GLOBAL) ? value : 0; 108 info->stage[0] = current_stage[0]; 109 info->stage[1] = current_stage[1]; 188 const feature_info_t *info = &feature_infos[i] local [all...] |
/external/chromium_org/third_party/mesa/src/src/glx/apple/ |
appledri.c | 97 XExtDisplayInfo *info = find_display(dpy); local 100 AppleDRICheckExtension(dpy, info, False); 102 switch ((event->u.u.type & 0x7f) - info->codes->first_event) { 133 XExtDisplayInfo *info = find_display(dpy); local 136 if (XextHasExtension(info)) { 137 *event_basep = info->codes->first_event; 138 *error_basep = info->codes->first_error; 155 XExtDisplayInfo *info = find_display(dpy); local 160 AppleDRICheckExtension(dpy, info, False); 164 req->reqType = info->codes->major_opcode 187 XExtDisplayInfo *info = find_display(dpy); local 218 XExtDisplayInfo *info = find_display(dpy); local 253 XExtDisplayInfo *info = find_display(dpy); local 289 XExtDisplayInfo *info = find_display(dpy); local 312 XExtDisplayInfo *info = find_display(dpy); local 359 XExtDisplayInfo *info = find_display(dpy); local 381 XExtDisplayInfo *info = find_display(dpy); local 436 XExtDisplayInfo *info = find_display(dpy); local [all...] |
/external/mesa3d/src/glx/apple/ |
appledri.c | 97 XExtDisplayInfo *info = find_display(dpy); local 100 AppleDRICheckExtension(dpy, info, False); 102 switch ((event->u.u.type & 0x7f) - info->codes->first_event) { 133 XExtDisplayInfo *info = find_display(dpy); local 136 if (XextHasExtension(info)) { 137 *event_basep = info->codes->first_event; 138 *error_basep = info->codes->first_error; 155 XExtDisplayInfo *info = find_display(dpy); local 160 AppleDRICheckExtension(dpy, info, False); 164 req->reqType = info->codes->major_opcode 187 XExtDisplayInfo *info = find_display(dpy); local 218 XExtDisplayInfo *info = find_display(dpy); local 253 XExtDisplayInfo *info = find_display(dpy); local 289 XExtDisplayInfo *info = find_display(dpy); local 312 XExtDisplayInfo *info = find_display(dpy); local 359 XExtDisplayInfo *info = find_display(dpy); local 381 XExtDisplayInfo *info = find_display(dpy); local 436 XExtDisplayInfo *info = find_display(dpy); local [all...] |