search for: getdescript

Displaying 17 results from an estimated 17 matches for "getdescript".

Did you mean: get_script
2006 Feb 01
1
Combine Ajax call with an effect.
...#39;thedescription''),''blind'')">) so that the user has to click on the link to show the description, and then click on it again to hide the description. I just can''t get it to work by combining the ajax and the effect...Thanks for your help. function getDescription(news_id) { var url = ''/admin/site_admin/news_popup.lasso?news_id='' + news_id; var myDiv = new Ajax.Updater(''thedescription'', url, {asynchronous:true}); } <span class="shownames" id = "show"> <a href="#" title=&...
2010 Jun 04
5
[LLVMdev] Inserting a function call into bitcode
...chInst>(bi); // We are interested in conditional branch only if(brInst->isUnconditional()) continue; Value *condRes = brInst->getCondition(); errs()<<"Type:"<<condRes->getType()->getDescription()<<"\n"; // Looking for a function in Module Symbol table Constant *PrintFn = M.getOrInsertFunction("_Z12PrintCondResb", Type::getInt32Ty(context), condRes->getType(), (Type *)0); if(!Print...
2012 Dec 11
0
libnutconf: Basic UTs for libnutconf pushed
...imple configuration manipulation program using the library. E.g. something like this should work: nut::UpsConfiguration config; config.parseFrom(nut::NutFile( "/usr/local/ups/etc/ups.conf", nut::NutFile::READ_ONLY)); std::cout << "my-ups description: " << config.getDescription("my-ups") << std::endl; // ... config.setDriver("my-ups", "snmp-ups"); config.writeTo(nut::NutFile( "/usr/local/ups/etc/ups.conf", nut::NutFile::WRITE_ONLY)); Regards, vasek -- V?clav Krpec Network UPS Tools project Eaton Opensource Team...
2004 Dec 14
0
[LLVMdev] misc. patches
...// Implement virtual functions needed by generic_parser_base > - unsigned getNumOptions() const { return Values.size(); } > + unsigned getNumOptions() const { return (unsigned)Values.size(); } > const char *getOption(unsigned N) const { return Values[N].first; } > const char *getDescription(unsigned N) const { > return Values[N].second.second; > > ______________________________________________________________________ > Index: include/llvm/ExecutionEngine/ExecutionEngine.h > =================================================================== > RCS file: /var/...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
...> > BranchInst *brInst = cast<BranchInst>(bi); > > // We are interested in conditional branch only > > if(brInst->isUnconditional()) continue; > > Value *condRes = brInst->getCondition(); > > errs()<<"Type:"<<condRes->getType()->getDescription()<<"\n"; > > // Looking for a function in Module Symbol table > > Constant *PrintFn = M.getOrInsertFunction("_Z12PrintCondResb", > Type::getInt32Ty(context), condRes->getType(), (Type *)0); > > if(!PrintFn) { > > errs()<<"GetOrIn...
2010 Jun 04
0
[LLVMdev] Inserting a function call into bitcode
...       // We are interested in conditional branch only > >                         if(brInst->isUnconditional()) continue; > > > >                         Value *condRes = brInst->getCondition(); > > > errs()<<"Type:"<<condRes->getType()->getDescription()<<"\n"; > > > >                        // Looking for a function in Module Symbol > table > >                         Constant *PrintFn = > M.getOrInsertFunction("_Z12PrintCondResb", Type::getInt32Ty(context), > condRes->getType(), (Type *...
2004 Dec 13
6
[LLVMdev] misc. patches
Hi, here are some minor patches that for various reasons I've not submitted yet - I'm just trying to clear my list of differences before christmas... First of all the clear.patch file contains a patch that enables the JIT to drop all global mappings. I need this because when I have N threads I compile N different versions of my functions using different memory areas for global
2018 May 06
0
Need guidance to work on NEW PASS managers bugs
...it to decide if this pass is required to be executed or not. - For new passmaager just before executing run() for a pass we can check this counter. - For legacy pass manager we can directly use this debug counter in skipFunction()/skipModule() etc method. - There is already FIXME: added for moving getDescription() from OptBisect class to respective IR units like Loop, Region etc. So that new pass manager can also use those methods. - However to support feature added in this https://reviews.llvm.org/D44464 we may need to add a callback function pointer that can be set and if present use it instead fo...
2018 May 07
1
Need guidance to work on NEW PASS managers bugs
...s is required to be executed or not. > - For new passmaager just before executing run() for a pass we can check > this counter. > - For legacy pass manager we can directly use this debug counter in > skipFunction()/skipModule() etc method. > - There is already FIXME: added for moving getDescription() from OptBisect > class to respective > IR units like Loop, Region etc. So that new pass manager can also use > those methods. > - However to support feature added in this https://reviews.llvm.org/D44464 > we may need to add a callback function > pointer that can be set an...
2005 Oct 06
3
nested classes
I am working on wxFileType and wxMimeTypesManager, most of which I have done but I had to comment out a nested class in wxFileType and the methods that use it. Does anyone have a clever way to get around nested classes since SWIG does not currently support them? Sean
2006 Mar 19
1
[LLVMdev] Idioms for retrieving global symbols and inheritance
Hello, I have a couple of doubts, as listed below: 1. To list all the global variables in the module, I am iterating using type_iterator and for each Type I get, I am using value_iterator to iterate over Values . In the second iteration I am getting unexpected results. For each type obtained from type_iterator->second, value_iterator->first produces the same list as what
2018 May 02
2
Need guidance to work on NEW PASS managers bugs
As a point of clarification, optnone is already being handled by the pass itself in the legacy implementation. The skip[IR unit] functions are provided by the pass base classes, and the attribute is checked there. This happens any time the legacy wrapper is run, no matter how it is run. Regarding the opt-bisect design, I’m not particularly fond of the managed static either, but I do want to
2009 Jan 27
1
Segmentation fault in MSetIterator get_weight
Hi, I'm using xapian with c# and mono and i'm having a segfault in get_weight. When i print the index variable, the value is clearly too high. I think something write over it. Do you have any idea on how i could trace the beginning of the segmentation fault ? Thanks, -- Yann
2013 Feb 27
3
[LLVMdev] llvm get annotations
...e Module& llvm::CallGraph::getModule() ? Value *v = module->getNamedValue(name)->getOperand(0); if(v->getValueID() == Value::ConstantArrayVal) { ConstantArray *ca = (ConstantArray *)v; std::cout << " argument " << a->getType()->getDescription() << " "<<a->getName().str() << " has annotation \"" << ca->getAsString() << "\"\n"; } Is there an easier way to get the simple DS annotation of @f ? Thank you for any suggestion! -------------- next p...
2006 Jan 05
7
[Fwd: [win32utils-help][6822] Eventlog problem]
Dang, I thought we solved this. Any ideas? Dan PS - I realized after reading this I forgot to bump the version number for 0.3.3 - I''ve uploaded a new zip file with the correct version number. -------------- next part -------------- An embedded message was scrubbed... From: alain Fioretti <noreply at rubyforge.org> Subject: [win32utils-help][6822] Eventlog problem Date: Thu, 5
2014 Jan 10
0
Wine release 1.6.2
...ta(). oleaut32: Always set LIBFLAG_FHASDISKIMAGE when loading from file. scrrun: Implement BuildPath method. ntdll: Allow NULL return length argument in NtAdjustPrivilegesToken(). qmgr: Implement IBackgroundCopyJob::SetDescription(). qmgr: Implement IBackgroundCopyJob::GetDescription(). qmgr: Implement IBackgroundCopyManager::GetJob(). server: Return key name info for KeyNameInformation class. Piotr Caban (9): comctl32: Ignore tooltip position passed in TTM_TRACKPOSITION if TTF_TRACK flag is not set. comctl32: Set updown control value to min or max i...
2013 Dec 06
0
Wine release 1.7.8
...wined3d: Recognize Haswell mobile graphics 4600. wined3d: Recognize GeForce GTX 765M. Nikolay Sivov (26): kernel32: Add more LoadLibraryEx() flags defines and mark them as unsupported. qmgr: Implement IBackgroundCopyJob::SetDescription(). qmgr: Implement IBackgroundCopyJob::GetDescription(). qmgr/tests: Remove skips around tests that don't fail. qmgr: Implement IBackgroundCopyManager::GetJob(). qmgr: Added parameter tracing for Job and Manager, make naming more compact. urlmon/tests: Accept another failure error code. qmgr: Use helper to return s...