hb-ot-layout.nativecodeanalysis.sarif 213 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043
  1. {
  2. "version": "2.1.0",
  3. "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
  4. "runs": [
  5. {
  6. "results": [
  7. {
  8. "ruleId": "C26439",
  9. "message": {
  10. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  11. },
  12. "locations": [
  13. {
  14. "physicalLocation": {
  15. "artifactLocation": {
  16. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  17. },
  18. "region": {
  19. "startLine": 445,
  20. "startColumn": 3,
  21. "endLine": 445,
  22. "endColumn": 3
  23. }
  24. },
  25. "logicalLocations": [
  26. {
  27. "decoratedName": "??0hb_map_t@@QEAA@$$QEAU0@@Z",
  28. "kind": "function"
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "ruleId": "C26439",
  36. "message": {
  37. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  38. },
  39. "locations": [
  40. {
  41. "physicalLocation": {
  42. "artifactLocation": {
  43. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  44. },
  45. "region": {
  46. "startLine": 42,
  47. "startColumn": 3,
  48. "endLine": 42,
  49. "endColumn": 3
  50. }
  51. },
  52. "logicalLocations": [
  53. {
  54. "decoratedName": "??0hb_bit_set_t@@QEAA@$$QEAU0@@Z",
  55. "kind": "function"
  56. }
  57. ]
  58. }
  59. ]
  60. },
  61. {
  62. "ruleId": "C26439",
  63. "message": {
  64. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  65. },
  66. "locations": [
  67. {
  68. "physicalLocation": {
  69. "artifactLocation": {
  70. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  71. },
  72. "region": {
  73. "startLine": 44,
  74. "startColumn": 17,
  75. "endLine": 44,
  76. "endColumn": 17
  77. }
  78. },
  79. "logicalLocations": [
  80. {
  81. "decoratedName": "??4hb_bit_set_t@@QEAAAEAU0@$$QEAU0@@Z",
  82. "kind": "function"
  83. }
  84. ]
  85. }
  86. ]
  87. },
  88. {
  89. "ruleId": "C26820",
  90. "message": {
  91. "text": "Zuweisung nach Wert, obwohl \"const-reference\" ausreichen würde. Verwenden Sie stattdessen \"const auto&\" (p.9)."
  92. },
  93. "locations": [
  94. {
  95. "physicalLocation": {
  96. "artifactLocation": {
  97. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  98. },
  99. "region": {
  100. "startLine": 400,
  101. "startColumn": 12,
  102. "endLine": 400,
  103. "endColumn": 26
  104. }
  105. },
  106. "logicalLocations": [
  107. {
  108. "decoratedName": "?is_subset@hb_bit_set_t@@QEBA_NAEBU1@@Z",
  109. "kind": "function"
  110. }
  111. ]
  112. }
  113. ]
  114. },
  115. {
  116. "ruleId": "C26820",
  117. "message": {
  118. "text": "Zuweisung nach Wert, obwohl \"const-reference\" ausreichen würde. Verwenden Sie stattdessen \"const auto&\" (p.9)."
  119. },
  120. "locations": [
  121. {
  122. "physicalLocation": {
  123. "artifactLocation": {
  124. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  125. },
  126. "region": {
  127. "startLine": 401,
  128. "startColumn": 12,
  129. "endLine": 401,
  130. "endColumn": 37
  131. }
  132. },
  133. "logicalLocations": [
  134. {
  135. "decoratedName": "?is_subset@hb_bit_set_t@@QEBA_NAEBU1@@Z",
  136. "kind": "function"
  137. }
  138. ]
  139. }
  140. ]
  141. },
  142. {
  143. "ruleId": "C26439",
  144. "message": {
  145. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  146. },
  147. "locations": [
  148. {
  149. "physicalLocation": {
  150. "artifactLocation": {
  151. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  152. },
  153. "region": {
  154. "startLine": 42,
  155. "startColumn": 3,
  156. "endLine": 42,
  157. "endColumn": 3
  158. }
  159. },
  160. "logicalLocations": [
  161. {
  162. "decoratedName": "??0hb_bit_set_invertible_t@@QEAA@$$QEAU0@@Z",
  163. "kind": "function"
  164. }
  165. ]
  166. }
  167. ]
  168. },
  169. {
  170. "ruleId": "C26439",
  171. "message": {
  172. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  173. },
  174. "locations": [
  175. {
  176. "physicalLocation": {
  177. "artifactLocation": {
  178. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  179. },
  180. "region": {
  181. "startLine": 44,
  182. "startColumn": 28,
  183. "endLine": 44,
  184. "endColumn": 28
  185. }
  186. },
  187. "logicalLocations": [
  188. {
  189. "decoratedName": "??4hb_bit_set_invertible_t@@QEAAAEAU0@$$QEAU0@@Z",
  190. "kind": "function"
  191. }
  192. ]
  193. }
  194. ]
  195. },
  196. {
  197. "ruleId": "C26439",
  198. "message": {
  199. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  200. },
  201. "locations": [
  202. {
  203. "physicalLocation": {
  204. "artifactLocation": {
  205. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  206. },
  207. "region": {
  208. "startLine": 166,
  209. "startColumn": 3,
  210. "endLine": 166,
  211. "endColumn": 3
  212. }
  213. },
  214. "logicalLocations": [
  215. {
  216. "decoratedName": "??0hb_set_t@@QEAA@$$QEAU0@@Z",
  217. "kind": "function"
  218. }
  219. ]
  220. }
  221. ]
  222. },
  223. {
  224. "ruleId": "C26495",
  225. "message": {
  226. "text": "Die Variable \"hb_subset_plan_t::flags\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  227. },
  228. "locations": [
  229. {
  230. "physicalLocation": {
  231. "artifactLocation": {
  232. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  233. },
  234. "region": {
  235. "startLine": 46,
  236. "startColumn": 3,
  237. "endLine": 46,
  238. "endColumn": 3
  239. }
  240. },
  241. "logicalLocations": [
  242. {
  243. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  244. "kind": "function"
  245. }
  246. ]
  247. }
  248. ],
  249. "properties": {
  250. "targetSymbol": "hb_subset_plan_t::flags"
  251. }
  252. },
  253. {
  254. "ruleId": "C26495",
  255. "message": {
  256. "text": "Die Variable \"hb_subset_plan_t::successful\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  257. },
  258. "locations": [
  259. {
  260. "physicalLocation": {
  261. "artifactLocation": {
  262. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  263. },
  264. "region": {
  265. "startLine": 46,
  266. "startColumn": 3,
  267. "endLine": 46,
  268. "endColumn": 3
  269. }
  270. },
  271. "logicalLocations": [
  272. {
  273. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  274. "kind": "function"
  275. }
  276. ]
  277. }
  278. ],
  279. "properties": {
  280. "targetSymbol": "hb_subset_plan_t::successful"
  281. }
  282. },
  283. {
  284. "ruleId": "C26495",
  285. "message": {
  286. "text": "Die Variable \"hb_subset_plan_t::unicodes\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  287. },
  288. "locations": [
  289. {
  290. "physicalLocation": {
  291. "artifactLocation": {
  292. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  293. },
  294. "region": {
  295. "startLine": 46,
  296. "startColumn": 3,
  297. "endLine": 46,
  298. "endColumn": 3
  299. }
  300. },
  301. "logicalLocations": [
  302. {
  303. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  304. "kind": "function"
  305. }
  306. ]
  307. }
  308. ],
  309. "properties": {
  310. "targetSymbol": "hb_subset_plan_t::unicodes"
  311. }
  312. },
  313. {
  314. "ruleId": "C26495",
  315. "message": {
  316. "text": "Die Variable \"hb_subset_plan_t::name_ids\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  317. },
  318. "locations": [
  319. {
  320. "physicalLocation": {
  321. "artifactLocation": {
  322. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  323. },
  324. "region": {
  325. "startLine": 46,
  326. "startColumn": 3,
  327. "endLine": 46,
  328. "endColumn": 3
  329. }
  330. },
  331. "logicalLocations": [
  332. {
  333. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  334. "kind": "function"
  335. }
  336. ]
  337. }
  338. ],
  339. "properties": {
  340. "targetSymbol": "hb_subset_plan_t::name_ids"
  341. }
  342. },
  343. {
  344. "ruleId": "C26495",
  345. "message": {
  346. "text": "Die Variable \"hb_subset_plan_t::name_languages\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  347. },
  348. "locations": [
  349. {
  350. "physicalLocation": {
  351. "artifactLocation": {
  352. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  353. },
  354. "region": {
  355. "startLine": 46,
  356. "startColumn": 3,
  357. "endLine": 46,
  358. "endColumn": 3
  359. }
  360. },
  361. "logicalLocations": [
  362. {
  363. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  364. "kind": "function"
  365. }
  366. ]
  367. }
  368. ],
  369. "properties": {
  370. "targetSymbol": "hb_subset_plan_t::name_languages"
  371. }
  372. },
  373. {
  374. "ruleId": "C26495",
  375. "message": {
  376. "text": "Die Variable \"hb_subset_plan_t::layout_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  377. },
  378. "locations": [
  379. {
  380. "physicalLocation": {
  381. "artifactLocation": {
  382. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  383. },
  384. "region": {
  385. "startLine": 46,
  386. "startColumn": 3,
  387. "endLine": 46,
  388. "endColumn": 3
  389. }
  390. },
  391. "logicalLocations": [
  392. {
  393. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  394. "kind": "function"
  395. }
  396. ]
  397. }
  398. ],
  399. "properties": {
  400. "targetSymbol": "hb_subset_plan_t::layout_features"
  401. }
  402. },
  403. {
  404. "ruleId": "C26495",
  405. "message": {
  406. "text": "Die Variable \"hb_subset_plan_t::layout_scripts\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  407. },
  408. "locations": [
  409. {
  410. "physicalLocation": {
  411. "artifactLocation": {
  412. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  413. },
  414. "region": {
  415. "startLine": 46,
  416. "startColumn": 3,
  417. "endLine": 46,
  418. "endColumn": 3
  419. }
  420. },
  421. "logicalLocations": [
  422. {
  423. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  424. "kind": "function"
  425. }
  426. ]
  427. }
  428. ],
  429. "properties": {
  430. "targetSymbol": "hb_subset_plan_t::layout_scripts"
  431. }
  432. },
  433. {
  434. "ruleId": "C26495",
  435. "message": {
  436. "text": "Die Variable \"hb_subset_plan_t::glyphs_requested\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  437. },
  438. "locations": [
  439. {
  440. "physicalLocation": {
  441. "artifactLocation": {
  442. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  443. },
  444. "region": {
  445. "startLine": 46,
  446. "startColumn": 3,
  447. "endLine": 46,
  448. "endColumn": 3
  449. }
  450. },
  451. "logicalLocations": [
  452. {
  453. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  454. "kind": "function"
  455. }
  456. ]
  457. }
  458. ],
  459. "properties": {
  460. "targetSymbol": "hb_subset_plan_t::glyphs_requested"
  461. }
  462. },
  463. {
  464. "ruleId": "C26495",
  465. "message": {
  466. "text": "Die Variable \"hb_subset_plan_t::no_subset_tables\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  467. },
  468. "locations": [
  469. {
  470. "physicalLocation": {
  471. "artifactLocation": {
  472. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  473. },
  474. "region": {
  475. "startLine": 46,
  476. "startColumn": 3,
  477. "endLine": 46,
  478. "endColumn": 3
  479. }
  480. },
  481. "logicalLocations": [
  482. {
  483. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  484. "kind": "function"
  485. }
  486. ]
  487. }
  488. ],
  489. "properties": {
  490. "targetSymbol": "hb_subset_plan_t::no_subset_tables"
  491. }
  492. },
  493. {
  494. "ruleId": "C26495",
  495. "message": {
  496. "text": "Die Variable \"hb_subset_plan_t::drop_tables\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  497. },
  498. "locations": [
  499. {
  500. "physicalLocation": {
  501. "artifactLocation": {
  502. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  503. },
  504. "region": {
  505. "startLine": 46,
  506. "startColumn": 3,
  507. "endLine": 46,
  508. "endColumn": 3
  509. }
  510. },
  511. "logicalLocations": [
  512. {
  513. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  514. "kind": "function"
  515. }
  516. ]
  517. }
  518. ],
  519. "properties": {
  520. "targetSymbol": "hb_subset_plan_t::drop_tables"
  521. }
  522. },
  523. {
  524. "ruleId": "C26495",
  525. "message": {
  526. "text": "Die Variable \"hb_subset_plan_t::codepoint_to_glyph\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  527. },
  528. "locations": [
  529. {
  530. "physicalLocation": {
  531. "artifactLocation": {
  532. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  533. },
  534. "region": {
  535. "startLine": 46,
  536. "startColumn": 3,
  537. "endLine": 46,
  538. "endColumn": 3
  539. }
  540. },
  541. "logicalLocations": [
  542. {
  543. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  544. "kind": "function"
  545. }
  546. ]
  547. }
  548. ],
  549. "properties": {
  550. "targetSymbol": "hb_subset_plan_t::codepoint_to_glyph"
  551. }
  552. },
  553. {
  554. "ruleId": "C26495",
  555. "message": {
  556. "text": "Die Variable \"hb_subset_plan_t::glyph_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  557. },
  558. "locations": [
  559. {
  560. "physicalLocation": {
  561. "artifactLocation": {
  562. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  563. },
  564. "region": {
  565. "startLine": 46,
  566. "startColumn": 3,
  567. "endLine": 46,
  568. "endColumn": 3
  569. }
  570. },
  571. "logicalLocations": [
  572. {
  573. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  574. "kind": "function"
  575. }
  576. ]
  577. }
  578. ],
  579. "properties": {
  580. "targetSymbol": "hb_subset_plan_t::glyph_map"
  581. }
  582. },
  583. {
  584. "ruleId": "C26495",
  585. "message": {
  586. "text": "Die Variable \"hb_subset_plan_t::reverse_glyph_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  587. },
  588. "locations": [
  589. {
  590. "physicalLocation": {
  591. "artifactLocation": {
  592. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  593. },
  594. "region": {
  595. "startLine": 46,
  596. "startColumn": 3,
  597. "endLine": 46,
  598. "endColumn": 3
  599. }
  600. },
  601. "logicalLocations": [
  602. {
  603. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  604. "kind": "function"
  605. }
  606. ]
  607. }
  608. ],
  609. "properties": {
  610. "targetSymbol": "hb_subset_plan_t::reverse_glyph_map"
  611. }
  612. },
  613. {
  614. "ruleId": "C26495",
  615. "message": {
  616. "text": "Die Variable \"hb_subset_plan_t::glyph_map_gsub\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  617. },
  618. "locations": [
  619. {
  620. "physicalLocation": {
  621. "artifactLocation": {
  622. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  623. },
  624. "region": {
  625. "startLine": 46,
  626. "startColumn": 3,
  627. "endLine": 46,
  628. "endColumn": 3
  629. }
  630. },
  631. "logicalLocations": [
  632. {
  633. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  634. "kind": "function"
  635. }
  636. ]
  637. }
  638. ],
  639. "properties": {
  640. "targetSymbol": "hb_subset_plan_t::glyph_map_gsub"
  641. }
  642. },
  643. {
  644. "ruleId": "C26495",
  645. "message": {
  646. "text": "Die Variable \"hb_subset_plan_t::source\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  647. },
  648. "locations": [
  649. {
  650. "physicalLocation": {
  651. "artifactLocation": {
  652. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  653. },
  654. "region": {
  655. "startLine": 46,
  656. "startColumn": 3,
  657. "endLine": 46,
  658. "endColumn": 3
  659. }
  660. },
  661. "logicalLocations": [
  662. {
  663. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  664. "kind": "function"
  665. }
  666. ]
  667. }
  668. ],
  669. "properties": {
  670. "targetSymbol": "hb_subset_plan_t::source"
  671. }
  672. },
  673. {
  674. "ruleId": "C26495",
  675. "message": {
  676. "text": "Die Variable \"hb_subset_plan_t::dest\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  677. },
  678. "locations": [
  679. {
  680. "physicalLocation": {
  681. "artifactLocation": {
  682. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  683. },
  684. "region": {
  685. "startLine": 46,
  686. "startColumn": 3,
  687. "endLine": 46,
  688. "endColumn": 3
  689. }
  690. },
  691. "logicalLocations": [
  692. {
  693. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  694. "kind": "function"
  695. }
  696. ]
  697. }
  698. ],
  699. "properties": {
  700. "targetSymbol": "hb_subset_plan_t::dest"
  701. }
  702. },
  703. {
  704. "ruleId": "C26495",
  705. "message": {
  706. "text": "Die Variable \"hb_subset_plan_t::_num_output_glyphs\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  707. },
  708. "locations": [
  709. {
  710. "physicalLocation": {
  711. "artifactLocation": {
  712. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  713. },
  714. "region": {
  715. "startLine": 46,
  716. "startColumn": 3,
  717. "endLine": 46,
  718. "endColumn": 3
  719. }
  720. },
  721. "logicalLocations": [
  722. {
  723. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  724. "kind": "function"
  725. }
  726. ]
  727. }
  728. ],
  729. "properties": {
  730. "targetSymbol": "hb_subset_plan_t::_num_output_glyphs"
  731. }
  732. },
  733. {
  734. "ruleId": "C26495",
  735. "message": {
  736. "text": "Die Variable \"hb_subset_plan_t::_glyphset\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  737. },
  738. "locations": [
  739. {
  740. "physicalLocation": {
  741. "artifactLocation": {
  742. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  743. },
  744. "region": {
  745. "startLine": 46,
  746. "startColumn": 3,
  747. "endLine": 46,
  748. "endColumn": 3
  749. }
  750. },
  751. "logicalLocations": [
  752. {
  753. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  754. "kind": "function"
  755. }
  756. ]
  757. }
  758. ],
  759. "properties": {
  760. "targetSymbol": "hb_subset_plan_t::_glyphset"
  761. }
  762. },
  763. {
  764. "ruleId": "C26495",
  765. "message": {
  766. "text": "Die Variable \"hb_subset_plan_t::_glyphset_gsub\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  767. },
  768. "locations": [
  769. {
  770. "physicalLocation": {
  771. "artifactLocation": {
  772. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  773. },
  774. "region": {
  775. "startLine": 46,
  776. "startColumn": 3,
  777. "endLine": 46,
  778. "endColumn": 3
  779. }
  780. },
  781. "logicalLocations": [
  782. {
  783. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  784. "kind": "function"
  785. }
  786. ]
  787. }
  788. ],
  789. "properties": {
  790. "targetSymbol": "hb_subset_plan_t::_glyphset_gsub"
  791. }
  792. },
  793. {
  794. "ruleId": "C26495",
  795. "message": {
  796. "text": "Die Variable \"hb_subset_plan_t::_glyphset_mathed\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  797. },
  798. "locations": [
  799. {
  800. "physicalLocation": {
  801. "artifactLocation": {
  802. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  803. },
  804. "region": {
  805. "startLine": 46,
  806. "startColumn": 3,
  807. "endLine": 46,
  808. "endColumn": 3
  809. }
  810. },
  811. "logicalLocations": [
  812. {
  813. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  814. "kind": "function"
  815. }
  816. ]
  817. }
  818. ],
  819. "properties": {
  820. "targetSymbol": "hb_subset_plan_t::_glyphset_mathed"
  821. }
  822. },
  823. {
  824. "ruleId": "C26495",
  825. "message": {
  826. "text": "Die Variable \"hb_subset_plan_t::_glyphset_colred\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  827. },
  828. "locations": [
  829. {
  830. "physicalLocation": {
  831. "artifactLocation": {
  832. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  833. },
  834. "region": {
  835. "startLine": 46,
  836. "startColumn": 3,
  837. "endLine": 46,
  838. "endColumn": 3
  839. }
  840. },
  841. "logicalLocations": [
  842. {
  843. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  844. "kind": "function"
  845. }
  846. ]
  847. }
  848. ],
  849. "properties": {
  850. "targetSymbol": "hb_subset_plan_t::_glyphset_colred"
  851. }
  852. },
  853. {
  854. "ruleId": "C26495",
  855. "message": {
  856. "text": "Die Variable \"hb_subset_plan_t::gsub_lookups\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  857. },
  858. "locations": [
  859. {
  860. "physicalLocation": {
  861. "artifactLocation": {
  862. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  863. },
  864. "region": {
  865. "startLine": 46,
  866. "startColumn": 3,
  867. "endLine": 46,
  868. "endColumn": 3
  869. }
  870. },
  871. "logicalLocations": [
  872. {
  873. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  874. "kind": "function"
  875. }
  876. ]
  877. }
  878. ],
  879. "properties": {
  880. "targetSymbol": "hb_subset_plan_t::gsub_lookups"
  881. }
  882. },
  883. {
  884. "ruleId": "C26495",
  885. "message": {
  886. "text": "Die Variable \"hb_subset_plan_t::gpos_lookups\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  887. },
  888. "locations": [
  889. {
  890. "physicalLocation": {
  891. "artifactLocation": {
  892. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  893. },
  894. "region": {
  895. "startLine": 46,
  896. "startColumn": 3,
  897. "endLine": 46,
  898. "endColumn": 3
  899. }
  900. },
  901. "logicalLocations": [
  902. {
  903. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  904. "kind": "function"
  905. }
  906. ]
  907. }
  908. ],
  909. "properties": {
  910. "targetSymbol": "hb_subset_plan_t::gpos_lookups"
  911. }
  912. },
  913. {
  914. "ruleId": "C26495",
  915. "message": {
  916. "text": "Die Variable \"hb_subset_plan_t::gsub_langsys\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  917. },
  918. "locations": [
  919. {
  920. "physicalLocation": {
  921. "artifactLocation": {
  922. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  923. },
  924. "region": {
  925. "startLine": 46,
  926. "startColumn": 3,
  927. "endLine": 46,
  928. "endColumn": 3
  929. }
  930. },
  931. "logicalLocations": [
  932. {
  933. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  934. "kind": "function"
  935. }
  936. ]
  937. }
  938. ],
  939. "properties": {
  940. "targetSymbol": "hb_subset_plan_t::gsub_langsys"
  941. }
  942. },
  943. {
  944. "ruleId": "C26495",
  945. "message": {
  946. "text": "Die Variable \"hb_subset_plan_t::gpos_langsys\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  947. },
  948. "locations": [
  949. {
  950. "physicalLocation": {
  951. "artifactLocation": {
  952. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  953. },
  954. "region": {
  955. "startLine": 46,
  956. "startColumn": 3,
  957. "endLine": 46,
  958. "endColumn": 3
  959. }
  960. },
  961. "logicalLocations": [
  962. {
  963. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  964. "kind": "function"
  965. }
  966. ]
  967. }
  968. ],
  969. "properties": {
  970. "targetSymbol": "hb_subset_plan_t::gpos_langsys"
  971. }
  972. },
  973. {
  974. "ruleId": "C26495",
  975. "message": {
  976. "text": "Die Variable \"hb_subset_plan_t::gsub_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  977. },
  978. "locations": [
  979. {
  980. "physicalLocation": {
  981. "artifactLocation": {
  982. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  983. },
  984. "region": {
  985. "startLine": 46,
  986. "startColumn": 3,
  987. "endLine": 46,
  988. "endColumn": 3
  989. }
  990. },
  991. "logicalLocations": [
  992. {
  993. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  994. "kind": "function"
  995. }
  996. ]
  997. }
  998. ],
  999. "properties": {
  1000. "targetSymbol": "hb_subset_plan_t::gsub_features"
  1001. }
  1002. },
  1003. {
  1004. "ruleId": "C26495",
  1005. "message": {
  1006. "text": "Die Variable \"hb_subset_plan_t::gpos_features\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1007. },
  1008. "locations": [
  1009. {
  1010. "physicalLocation": {
  1011. "artifactLocation": {
  1012. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1013. },
  1014. "region": {
  1015. "startLine": 46,
  1016. "startColumn": 3,
  1017. "endLine": 46,
  1018. "endColumn": 3
  1019. }
  1020. },
  1021. "logicalLocations": [
  1022. {
  1023. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1024. "kind": "function"
  1025. }
  1026. ]
  1027. }
  1028. ],
  1029. "properties": {
  1030. "targetSymbol": "hb_subset_plan_t::gpos_features"
  1031. }
  1032. },
  1033. {
  1034. "ruleId": "C26495",
  1035. "message": {
  1036. "text": "Die Variable \"hb_subset_plan_t::gsub_feature_record_cond_idx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1037. },
  1038. "locations": [
  1039. {
  1040. "physicalLocation": {
  1041. "artifactLocation": {
  1042. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1043. },
  1044. "region": {
  1045. "startLine": 46,
  1046. "startColumn": 3,
  1047. "endLine": 46,
  1048. "endColumn": 3
  1049. }
  1050. },
  1051. "logicalLocations": [
  1052. {
  1053. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1054. "kind": "function"
  1055. }
  1056. ]
  1057. }
  1058. ],
  1059. "properties": {
  1060. "targetSymbol": "hb_subset_plan_t::gsub_feature_record_cond_idx_map"
  1061. }
  1062. },
  1063. {
  1064. "ruleId": "C26495",
  1065. "message": {
  1066. "text": "Die Variable \"hb_subset_plan_t::gpos_feature_record_cond_idx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1067. },
  1068. "locations": [
  1069. {
  1070. "physicalLocation": {
  1071. "artifactLocation": {
  1072. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1073. },
  1074. "region": {
  1075. "startLine": 46,
  1076. "startColumn": 3,
  1077. "endLine": 46,
  1078. "endColumn": 3
  1079. }
  1080. },
  1081. "logicalLocations": [
  1082. {
  1083. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1084. "kind": "function"
  1085. }
  1086. ]
  1087. }
  1088. ],
  1089. "properties": {
  1090. "targetSymbol": "hb_subset_plan_t::gpos_feature_record_cond_idx_map"
  1091. }
  1092. },
  1093. {
  1094. "ruleId": "C26495",
  1095. "message": {
  1096. "text": "Die Variable \"hb_subset_plan_t::gsub_feature_substitutes_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1097. },
  1098. "locations": [
  1099. {
  1100. "physicalLocation": {
  1101. "artifactLocation": {
  1102. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1103. },
  1104. "region": {
  1105. "startLine": 46,
  1106. "startColumn": 3,
  1107. "endLine": 46,
  1108. "endColumn": 3
  1109. }
  1110. },
  1111. "logicalLocations": [
  1112. {
  1113. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1114. "kind": "function"
  1115. }
  1116. ]
  1117. }
  1118. ],
  1119. "properties": {
  1120. "targetSymbol": "hb_subset_plan_t::gsub_feature_substitutes_map"
  1121. }
  1122. },
  1123. {
  1124. "ruleId": "C26495",
  1125. "message": {
  1126. "text": "Die Variable \"hb_subset_plan_t::gpos_feature_substitutes_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1127. },
  1128. "locations": [
  1129. {
  1130. "physicalLocation": {
  1131. "artifactLocation": {
  1132. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1133. },
  1134. "region": {
  1135. "startLine": 46,
  1136. "startColumn": 3,
  1137. "endLine": 46,
  1138. "endColumn": 3
  1139. }
  1140. },
  1141. "logicalLocations": [
  1142. {
  1143. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1144. "kind": "function"
  1145. }
  1146. ]
  1147. }
  1148. ],
  1149. "properties": {
  1150. "targetSymbol": "hb_subset_plan_t::gpos_feature_substitutes_map"
  1151. }
  1152. },
  1153. {
  1154. "ruleId": "C26495",
  1155. "message": {
  1156. "text": "Die Variable \"hb_subset_plan_t::colrv1_layers\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1157. },
  1158. "locations": [
  1159. {
  1160. "physicalLocation": {
  1161. "artifactLocation": {
  1162. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1163. },
  1164. "region": {
  1165. "startLine": 46,
  1166. "startColumn": 3,
  1167. "endLine": 46,
  1168. "endColumn": 3
  1169. }
  1170. },
  1171. "logicalLocations": [
  1172. {
  1173. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1174. "kind": "function"
  1175. }
  1176. ]
  1177. }
  1178. ],
  1179. "properties": {
  1180. "targetSymbol": "hb_subset_plan_t::colrv1_layers"
  1181. }
  1182. },
  1183. {
  1184. "ruleId": "C26495",
  1185. "message": {
  1186. "text": "Die Variable \"hb_subset_plan_t::colr_palettes\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1187. },
  1188. "locations": [
  1189. {
  1190. "physicalLocation": {
  1191. "artifactLocation": {
  1192. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1193. },
  1194. "region": {
  1195. "startLine": 46,
  1196. "startColumn": 3,
  1197. "endLine": 46,
  1198. "endColumn": 3
  1199. }
  1200. },
  1201. "logicalLocations": [
  1202. {
  1203. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1204. "kind": "function"
  1205. }
  1206. ]
  1207. }
  1208. ],
  1209. "properties": {
  1210. "targetSymbol": "hb_subset_plan_t::colr_palettes"
  1211. }
  1212. },
  1213. {
  1214. "ruleId": "C26495",
  1215. "message": {
  1216. "text": "Die Variable \"hb_subset_plan_t::sanitized_table_cache\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1217. },
  1218. "locations": [
  1219. {
  1220. "physicalLocation": {
  1221. "artifactLocation": {
  1222. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1223. },
  1224. "region": {
  1225. "startLine": 46,
  1226. "startColumn": 3,
  1227. "endLine": 46,
  1228. "endColumn": 3
  1229. }
  1230. },
  1231. "logicalLocations": [
  1232. {
  1233. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1234. "kind": "function"
  1235. }
  1236. ]
  1237. }
  1238. ],
  1239. "properties": {
  1240. "targetSymbol": "hb_subset_plan_t::sanitized_table_cache"
  1241. }
  1242. },
  1243. {
  1244. "ruleId": "C26495",
  1245. "message": {
  1246. "text": "Die Variable \"hb_subset_plan_t::layout_variation_idx_delta_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1247. },
  1248. "locations": [
  1249. {
  1250. "physicalLocation": {
  1251. "artifactLocation": {
  1252. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1253. },
  1254. "region": {
  1255. "startLine": 46,
  1256. "startColumn": 3,
  1257. "endLine": 46,
  1258. "endColumn": 3
  1259. }
  1260. },
  1261. "logicalLocations": [
  1262. {
  1263. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1264. "kind": "function"
  1265. }
  1266. ]
  1267. }
  1268. ],
  1269. "properties": {
  1270. "targetSymbol": "hb_subset_plan_t::layout_variation_idx_delta_map"
  1271. }
  1272. },
  1273. {
  1274. "ruleId": "C26495",
  1275. "message": {
  1276. "text": "Die Variable \"hb_subset_plan_t::axes_location\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1277. },
  1278. "locations": [
  1279. {
  1280. "physicalLocation": {
  1281. "artifactLocation": {
  1282. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1283. },
  1284. "region": {
  1285. "startLine": 46,
  1286. "startColumn": 3,
  1287. "endLine": 46,
  1288. "endColumn": 3
  1289. }
  1290. },
  1291. "logicalLocations": [
  1292. {
  1293. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1294. "kind": "function"
  1295. }
  1296. ]
  1297. }
  1298. ],
  1299. "properties": {
  1300. "targetSymbol": "hb_subset_plan_t::axes_location"
  1301. }
  1302. },
  1303. {
  1304. "ruleId": "C26495",
  1305. "message": {
  1306. "text": "Die Variable \"hb_subset_plan_t::user_axes_location\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1307. },
  1308. "locations": [
  1309. {
  1310. "physicalLocation": {
  1311. "artifactLocation": {
  1312. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1313. },
  1314. "region": {
  1315. "startLine": 46,
  1316. "startColumn": 3,
  1317. "endLine": 46,
  1318. "endColumn": 3
  1319. }
  1320. },
  1321. "logicalLocations": [
  1322. {
  1323. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1324. "kind": "function"
  1325. }
  1326. ]
  1327. }
  1328. ],
  1329. "properties": {
  1330. "targetSymbol": "hb_subset_plan_t::user_axes_location"
  1331. }
  1332. },
  1333. {
  1334. "ruleId": "C26495",
  1335. "message": {
  1336. "text": "Die Variable \"hb_subset_plan_t::axes_index_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1337. },
  1338. "locations": [
  1339. {
  1340. "physicalLocation": {
  1341. "artifactLocation": {
  1342. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1343. },
  1344. "region": {
  1345. "startLine": 46,
  1346. "startColumn": 3,
  1347. "endLine": 46,
  1348. "endColumn": 3
  1349. }
  1350. },
  1351. "logicalLocations": [
  1352. {
  1353. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1354. "kind": "function"
  1355. }
  1356. ]
  1357. }
  1358. ],
  1359. "properties": {
  1360. "targetSymbol": "hb_subset_plan_t::axes_index_map"
  1361. }
  1362. },
  1363. {
  1364. "ruleId": "C26495",
  1365. "message": {
  1366. "text": "Die Variable \"hb_subset_plan_t::axes_old_index_tag_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1367. },
  1368. "locations": [
  1369. {
  1370. "physicalLocation": {
  1371. "artifactLocation": {
  1372. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1373. },
  1374. "region": {
  1375. "startLine": 46,
  1376. "startColumn": 3,
  1377. "endLine": 46,
  1378. "endColumn": 3
  1379. }
  1380. },
  1381. "logicalLocations": [
  1382. {
  1383. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1384. "kind": "function"
  1385. }
  1386. ]
  1387. }
  1388. ],
  1389. "properties": {
  1390. "targetSymbol": "hb_subset_plan_t::axes_old_index_tag_map"
  1391. }
  1392. },
  1393. {
  1394. "ruleId": "C26495",
  1395. "message": {
  1396. "text": "Die Variable \"hb_subset_plan_t::all_axes_pinned\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1397. },
  1398. "locations": [
  1399. {
  1400. "physicalLocation": {
  1401. "artifactLocation": {
  1402. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1403. },
  1404. "region": {
  1405. "startLine": 46,
  1406. "startColumn": 3,
  1407. "endLine": 46,
  1408. "endColumn": 3
  1409. }
  1410. },
  1411. "logicalLocations": [
  1412. {
  1413. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1414. "kind": "function"
  1415. }
  1416. ]
  1417. }
  1418. ],
  1419. "properties": {
  1420. "targetSymbol": "hb_subset_plan_t::all_axes_pinned"
  1421. }
  1422. },
  1423. {
  1424. "ruleId": "C26495",
  1425. "message": {
  1426. "text": "Die Variable \"hb_subset_plan_t::pinned_at_default\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1427. },
  1428. "locations": [
  1429. {
  1430. "physicalLocation": {
  1431. "artifactLocation": {
  1432. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1433. },
  1434. "region": {
  1435. "startLine": 46,
  1436. "startColumn": 3,
  1437. "endLine": 46,
  1438. "endColumn": 3
  1439. }
  1440. },
  1441. "logicalLocations": [
  1442. {
  1443. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1444. "kind": "function"
  1445. }
  1446. ]
  1447. }
  1448. ],
  1449. "properties": {
  1450. "targetSymbol": "hb_subset_plan_t::pinned_at_default"
  1451. }
  1452. },
  1453. {
  1454. "ruleId": "C26495",
  1455. "message": {
  1456. "text": "Die Variable \"hb_subset_plan_t::has_seac\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1457. },
  1458. "locations": [
  1459. {
  1460. "physicalLocation": {
  1461. "artifactLocation": {
  1462. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1463. },
  1464. "region": {
  1465. "startLine": 46,
  1466. "startColumn": 3,
  1467. "endLine": 46,
  1468. "endColumn": 3
  1469. }
  1470. },
  1471. "logicalLocations": [
  1472. {
  1473. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1474. "kind": "function"
  1475. }
  1476. ]
  1477. }
  1478. ],
  1479. "properties": {
  1480. "targetSymbol": "hb_subset_plan_t::has_seac"
  1481. }
  1482. },
  1483. {
  1484. "ruleId": "C26495",
  1485. "message": {
  1486. "text": "Die Variable \"hb_subset_plan_t::hmtx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1487. },
  1488. "locations": [
  1489. {
  1490. "physicalLocation": {
  1491. "artifactLocation": {
  1492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1493. },
  1494. "region": {
  1495. "startLine": 46,
  1496. "startColumn": 3,
  1497. "endLine": 46,
  1498. "endColumn": 3
  1499. }
  1500. },
  1501. "logicalLocations": [
  1502. {
  1503. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1504. "kind": "function"
  1505. }
  1506. ]
  1507. }
  1508. ],
  1509. "properties": {
  1510. "targetSymbol": "hb_subset_plan_t::hmtx_map"
  1511. }
  1512. },
  1513. {
  1514. "ruleId": "C26495",
  1515. "message": {
  1516. "text": "Die Variable \"hb_subset_plan_t::vmtx_map\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1517. },
  1518. "locations": [
  1519. {
  1520. "physicalLocation": {
  1521. "artifactLocation": {
  1522. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1523. },
  1524. "region": {
  1525. "startLine": 46,
  1526. "startColumn": 3,
  1527. "endLine": 46,
  1528. "endColumn": 3
  1529. }
  1530. },
  1531. "logicalLocations": [
  1532. {
  1533. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1534. "kind": "function"
  1535. }
  1536. ]
  1537. }
  1538. ],
  1539. "properties": {
  1540. "targetSymbol": "hb_subset_plan_t::vmtx_map"
  1541. }
  1542. },
  1543. {
  1544. "ruleId": "C26495",
  1545. "message": {
  1546. "text": "Die Variable \"hb_subset_plan_t::accelerator\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1547. },
  1548. "locations": [
  1549. {
  1550. "physicalLocation": {
  1551. "artifactLocation": {
  1552. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1553. },
  1554. "region": {
  1555. "startLine": 46,
  1556. "startColumn": 3,
  1557. "endLine": 46,
  1558. "endColumn": 3
  1559. }
  1560. },
  1561. "logicalLocations": [
  1562. {
  1563. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1564. "kind": "function"
  1565. }
  1566. ]
  1567. }
  1568. ],
  1569. "properties": {
  1570. "targetSymbol": "hb_subset_plan_t::accelerator"
  1571. }
  1572. },
  1573. {
  1574. "ruleId": "C26495",
  1575. "message": {
  1576. "text": "Die Variable \"hb_subset_plan_t::inprogress_accelerator\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1577. },
  1578. "locations": [
  1579. {
  1580. "physicalLocation": {
  1581. "artifactLocation": {
  1582. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  1583. },
  1584. "region": {
  1585. "startLine": 46,
  1586. "startColumn": 3,
  1587. "endLine": 46,
  1588. "endColumn": 3
  1589. }
  1590. },
  1591. "logicalLocations": [
  1592. {
  1593. "decoratedName": "??0hb_subset_plan_t@@QEAA@XZ",
  1594. "kind": "function"
  1595. }
  1596. ]
  1597. }
  1598. ],
  1599. "properties": {
  1600. "targetSymbol": "hb_subset_plan_t::inprogress_accelerator"
  1601. }
  1602. },
  1603. {
  1604. "ruleId": "C26495",
  1605. "message": {
  1606. "text": "Die Variable \"OT::Layout::Common::Coverage::iter_t::u\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1607. },
  1608. "locations": [
  1609. {
  1610. "physicalLocation": {
  1611. "artifactLocation": {
  1612. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/Common/Coverage.hh"
  1613. },
  1614. "region": {
  1615. "startLine": 224,
  1616. "startColumn": 5,
  1617. "endLine": 224,
  1618. "endColumn": 5
  1619. }
  1620. },
  1621. "logicalLocations": [
  1622. {
  1623. "decoratedName": "??0iter_t@Coverage@Common@Layout@OT@@QEAA@AEBU1234@@Z",
  1624. "kind": "function"
  1625. }
  1626. ]
  1627. }
  1628. ],
  1629. "properties": {
  1630. "targetSymbol": "OT::Layout::Common::Coverage::iter_t::u"
  1631. }
  1632. },
  1633. {
  1634. "ruleId": "C26495",
  1635. "message": {
  1636. "text": "Die Variable \"OT::hb_ot_apply_context_t::skipping_iterator_t::num_items\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1637. },
  1638. "locations": [
  1639. {
  1640. "physicalLocation": {
  1641. "artifactLocation": {
  1642. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  1643. },
  1644. "region": {
  1645. "startLine": 652,
  1646. "startColumn": 3,
  1647. "endLine": 652,
  1648. "endColumn": 3
  1649. }
  1650. },
  1651. "logicalLocations": [
  1652. {
  1653. "decoratedName": "??0skipping_iterator_t@hb_ot_apply_context_t@OT@@QEAA@XZ",
  1654. "kind": "function"
  1655. }
  1656. ]
  1657. }
  1658. ],
  1659. "properties": {
  1660. "targetSymbol": "OT::hb_ot_apply_context_t::skipping_iterator_t::num_items"
  1661. }
  1662. },
  1663. {
  1664. "ruleId": "C26495",
  1665. "message": {
  1666. "text": "Die Variable \"OT::hb_ot_apply_context_t::skipping_iterator_t::match_glyph_data16\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1667. },
  1668. "locations": [
  1669. {
  1670. "physicalLocation": {
  1671. "artifactLocation": {
  1672. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  1673. },
  1674. "region": {
  1675. "startLine": 652,
  1676. "startColumn": 3,
  1677. "endLine": 652,
  1678. "endColumn": 3
  1679. }
  1680. },
  1681. "logicalLocations": [
  1682. {
  1683. "decoratedName": "??0skipping_iterator_t@hb_ot_apply_context_t@OT@@QEAA@XZ",
  1684. "kind": "function"
  1685. }
  1686. ]
  1687. }
  1688. ],
  1689. "properties": {
  1690. "targetSymbol": "OT::hb_ot_apply_context_t::skipping_iterator_t::match_glyph_data16"
  1691. }
  1692. },
  1693. {
  1694. "ruleId": "C26495",
  1695. "message": {
  1696. "text": "Die Variable \"OT::hb_ot_apply_context_t::skipping_iterator_t::end\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1697. },
  1698. "locations": [
  1699. {
  1700. "physicalLocation": {
  1701. "artifactLocation": {
  1702. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  1703. },
  1704. "region": {
  1705. "startLine": 652,
  1706. "startColumn": 3,
  1707. "endLine": 652,
  1708. "endColumn": 3
  1709. }
  1710. },
  1711. "logicalLocations": [
  1712. {
  1713. "decoratedName": "??0skipping_iterator_t@hb_ot_apply_context_t@OT@@QEAA@XZ",
  1714. "kind": "function"
  1715. }
  1716. ]
  1717. }
  1718. ],
  1719. "properties": {
  1720. "targetSymbol": "OT::hb_ot_apply_context_t::skipping_iterator_t::end"
  1721. }
  1722. },
  1723. {
  1724. "ruleId": "C26495",
  1725. "message": {
  1726. "text": "Die Variable \"OT::hb_ot_apply_context_t::skipping_iterator_t::idx\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1727. },
  1728. "locations": [
  1729. {
  1730. "physicalLocation": {
  1731. "artifactLocation": {
  1732. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  1733. },
  1734. "region": {
  1735. "startLine": 652,
  1736. "startColumn": 3,
  1737. "endLine": 652,
  1738. "endColumn": 3
  1739. }
  1740. },
  1741. "logicalLocations": [
  1742. {
  1743. "decoratedName": "??0skipping_iterator_t@hb_ot_apply_context_t@OT@@QEAA@XZ",
  1744. "kind": "function"
  1745. }
  1746. ]
  1747. }
  1748. ],
  1749. "properties": {
  1750. "targetSymbol": "OT::hb_ot_apply_context_t::skipping_iterator_t::idx"
  1751. }
  1752. },
  1753. {
  1754. "ruleId": "C26495",
  1755. "message": {
  1756. "text": "Die Variable \"OT::hb_ot_apply_context_t::skipping_iterator_t::c\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1757. },
  1758. "locations": [
  1759. {
  1760. "physicalLocation": {
  1761. "artifactLocation": {
  1762. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  1763. },
  1764. "region": {
  1765. "startLine": 652,
  1766. "startColumn": 3,
  1767. "endLine": 652,
  1768. "endColumn": 3
  1769. }
  1770. },
  1771. "logicalLocations": [
  1772. {
  1773. "decoratedName": "??0skipping_iterator_t@hb_ot_apply_context_t@OT@@QEAA@XZ",
  1774. "kind": "function"
  1775. }
  1776. ]
  1777. }
  1778. ],
  1779. "properties": {
  1780. "targetSymbol": "OT::hb_ot_apply_context_t::skipping_iterator_t::c"
  1781. }
  1782. },
  1783. {
  1784. "ruleId": "C26495",
  1785. "message": {
  1786. "text": "Die Variable \"hb_buffer_t::invisible\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1787. },
  1788. "locations": [
  1789. {
  1790. "physicalLocation": {
  1791. "artifactLocation": {
  1792. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1793. },
  1794. "region": {
  1795. "startLine": 626,
  1796. "startColumn": 1,
  1797. "endLine": 626,
  1798. "endColumn": 1
  1799. }
  1800. },
  1801. "logicalLocations": [
  1802. {
  1803. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1804. "kind": "function"
  1805. }
  1806. ]
  1807. }
  1808. ],
  1809. "properties": {
  1810. "targetSymbol": "hb_buffer_t::invisible"
  1811. }
  1812. },
  1813. {
  1814. "ruleId": "C26495",
  1815. "message": {
  1816. "text": "Die Variable \"hb_buffer_t::not_found\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1817. },
  1818. "locations": [
  1819. {
  1820. "physicalLocation": {
  1821. "artifactLocation": {
  1822. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1823. },
  1824. "region": {
  1825. "startLine": 626,
  1826. "startColumn": 1,
  1827. "endLine": 626,
  1828. "endColumn": 1
  1829. }
  1830. },
  1831. "logicalLocations": [
  1832. {
  1833. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1834. "kind": "function"
  1835. }
  1836. ]
  1837. }
  1838. ],
  1839. "properties": {
  1840. "targetSymbol": "hb_buffer_t::not_found"
  1841. }
  1842. },
  1843. {
  1844. "ruleId": "C26495",
  1845. "message": {
  1846. "text": "Die Variable \"hb_buffer_t::info\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1847. },
  1848. "locations": [
  1849. {
  1850. "physicalLocation": {
  1851. "artifactLocation": {
  1852. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1853. },
  1854. "region": {
  1855. "startLine": 626,
  1856. "startColumn": 1,
  1857. "endLine": 626,
  1858. "endColumn": 1
  1859. }
  1860. },
  1861. "logicalLocations": [
  1862. {
  1863. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1864. "kind": "function"
  1865. }
  1866. ]
  1867. }
  1868. ],
  1869. "properties": {
  1870. "targetSymbol": "hb_buffer_t::info"
  1871. }
  1872. },
  1873. {
  1874. "ruleId": "C26495",
  1875. "message": {
  1876. "text": "Die Variable \"hb_buffer_t::allocated\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1877. },
  1878. "locations": [
  1879. {
  1880. "physicalLocation": {
  1881. "artifactLocation": {
  1882. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1883. },
  1884. "region": {
  1885. "startLine": 626,
  1886. "startColumn": 1,
  1887. "endLine": 626,
  1888. "endColumn": 1
  1889. }
  1890. },
  1891. "logicalLocations": [
  1892. {
  1893. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1894. "kind": "function"
  1895. }
  1896. ]
  1897. }
  1898. ],
  1899. "properties": {
  1900. "targetSymbol": "hb_buffer_t::allocated"
  1901. }
  1902. },
  1903. {
  1904. "ruleId": "C26495",
  1905. "message": {
  1906. "text": "Die Variable \"hb_buffer_t::successful\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1907. },
  1908. "locations": [
  1909. {
  1910. "physicalLocation": {
  1911. "artifactLocation": {
  1912. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1913. },
  1914. "region": {
  1915. "startLine": 626,
  1916. "startColumn": 1,
  1917. "endLine": 626,
  1918. "endColumn": 1
  1919. }
  1920. },
  1921. "logicalLocations": [
  1922. {
  1923. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1924. "kind": "function"
  1925. }
  1926. ]
  1927. }
  1928. ],
  1929. "properties": {
  1930. "targetSymbol": "hb_buffer_t::successful"
  1931. }
  1932. },
  1933. {
  1934. "ruleId": "C26495",
  1935. "message": {
  1936. "text": "Die Variable \"hb_buffer_t::props\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1937. },
  1938. "locations": [
  1939. {
  1940. "physicalLocation": {
  1941. "artifactLocation": {
  1942. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1943. },
  1944. "region": {
  1945. "startLine": 626,
  1946. "startColumn": 1,
  1947. "endLine": 626,
  1948. "endColumn": 1
  1949. }
  1950. },
  1951. "logicalLocations": [
  1952. {
  1953. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1954. "kind": "function"
  1955. }
  1956. ]
  1957. }
  1958. ],
  1959. "properties": {
  1960. "targetSymbol": "hb_buffer_t::props"
  1961. }
  1962. },
  1963. {
  1964. "ruleId": "C26495",
  1965. "message": {
  1966. "text": "Die Variable \"hb_buffer_t::shaping_failed\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1967. },
  1968. "locations": [
  1969. {
  1970. "physicalLocation": {
  1971. "artifactLocation": {
  1972. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  1973. },
  1974. "region": {
  1975. "startLine": 626,
  1976. "startColumn": 1,
  1977. "endLine": 626,
  1978. "endColumn": 1
  1979. }
  1980. },
  1981. "logicalLocations": [
  1982. {
  1983. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  1984. "kind": "function"
  1985. }
  1986. ]
  1987. }
  1988. ],
  1989. "properties": {
  1990. "targetSymbol": "hb_buffer_t::shaping_failed"
  1991. }
  1992. },
  1993. {
  1994. "ruleId": "C26495",
  1995. "message": {
  1996. "text": "Die Variable \"hb_buffer_t::cluster_level\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  1997. },
  1998. "locations": [
  1999. {
  2000. "physicalLocation": {
  2001. "artifactLocation": {
  2002. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2003. },
  2004. "region": {
  2005. "startLine": 626,
  2006. "startColumn": 1,
  2007. "endLine": 626,
  2008. "endColumn": 1
  2009. }
  2010. },
  2011. "logicalLocations": [
  2012. {
  2013. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2014. "kind": "function"
  2015. }
  2016. ]
  2017. }
  2018. ],
  2019. "properties": {
  2020. "targetSymbol": "hb_buffer_t::cluster_level"
  2021. }
  2022. },
  2023. {
  2024. "ruleId": "C26495",
  2025. "message": {
  2026. "text": "Die Variable \"hb_buffer_t::have_output\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2027. },
  2028. "locations": [
  2029. {
  2030. "physicalLocation": {
  2031. "artifactLocation": {
  2032. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2033. },
  2034. "region": {
  2035. "startLine": 626,
  2036. "startColumn": 1,
  2037. "endLine": 626,
  2038. "endColumn": 1
  2039. }
  2040. },
  2041. "logicalLocations": [
  2042. {
  2043. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2044. "kind": "function"
  2045. }
  2046. ]
  2047. }
  2048. ],
  2049. "properties": {
  2050. "targetSymbol": "hb_buffer_t::have_output"
  2051. }
  2052. },
  2053. {
  2054. "ruleId": "C26495",
  2055. "message": {
  2056. "text": "Die Variable \"hb_buffer_t::have_positions\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2057. },
  2058. "locations": [
  2059. {
  2060. "physicalLocation": {
  2061. "artifactLocation": {
  2062. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2063. },
  2064. "region": {
  2065. "startLine": 626,
  2066. "startColumn": 1,
  2067. "endLine": 626,
  2068. "endColumn": 1
  2069. }
  2070. },
  2071. "logicalLocations": [
  2072. {
  2073. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2074. "kind": "function"
  2075. }
  2076. ]
  2077. }
  2078. ],
  2079. "properties": {
  2080. "targetSymbol": "hb_buffer_t::have_positions"
  2081. }
  2082. },
  2083. {
  2084. "ruleId": "C26495",
  2085. "message": {
  2086. "text": "Die Variable \"hb_buffer_t::flags\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2087. },
  2088. "locations": [
  2089. {
  2090. "physicalLocation": {
  2091. "artifactLocation": {
  2092. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2093. },
  2094. "region": {
  2095. "startLine": 626,
  2096. "startColumn": 1,
  2097. "endLine": 626,
  2098. "endColumn": 1
  2099. }
  2100. },
  2101. "logicalLocations": [
  2102. {
  2103. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2104. "kind": "function"
  2105. }
  2106. ]
  2107. }
  2108. ],
  2109. "properties": {
  2110. "targetSymbol": "hb_buffer_t::flags"
  2111. }
  2112. },
  2113. {
  2114. "ruleId": "C26495",
  2115. "message": {
  2116. "text": "Die Variable \"hb_buffer_t::unicode\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2117. },
  2118. "locations": [
  2119. {
  2120. "physicalLocation": {
  2121. "artifactLocation": {
  2122. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2123. },
  2124. "region": {
  2125. "startLine": 626,
  2126. "startColumn": 1,
  2127. "endLine": 626,
  2128. "endColumn": 1
  2129. }
  2130. },
  2131. "logicalLocations": [
  2132. {
  2133. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2134. "kind": "function"
  2135. }
  2136. ]
  2137. }
  2138. ],
  2139. "properties": {
  2140. "targetSymbol": "hb_buffer_t::unicode"
  2141. }
  2142. },
  2143. {
  2144. "ruleId": "C26495",
  2145. "message": {
  2146. "text": "Die Variable \"hb_buffer_t::replacement\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2147. },
  2148. "locations": [
  2149. {
  2150. "physicalLocation": {
  2151. "artifactLocation": {
  2152. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2153. },
  2154. "region": {
  2155. "startLine": 626,
  2156. "startColumn": 1,
  2157. "endLine": 626,
  2158. "endColumn": 1
  2159. }
  2160. },
  2161. "logicalLocations": [
  2162. {
  2163. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2164. "kind": "function"
  2165. }
  2166. ]
  2167. }
  2168. ],
  2169. "properties": {
  2170. "targetSymbol": "hb_buffer_t::replacement"
  2171. }
  2172. },
  2173. {
  2174. "ruleId": "C26495",
  2175. "message": {
  2176. "text": "Die Variable \"hb_buffer_t::out_info\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2177. },
  2178. "locations": [
  2179. {
  2180. "physicalLocation": {
  2181. "artifactLocation": {
  2182. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2183. },
  2184. "region": {
  2185. "startLine": 626,
  2186. "startColumn": 1,
  2187. "endLine": 626,
  2188. "endColumn": 1
  2189. }
  2190. },
  2191. "logicalLocations": [
  2192. {
  2193. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2194. "kind": "function"
  2195. }
  2196. ]
  2197. }
  2198. ],
  2199. "properties": {
  2200. "targetSymbol": "hb_buffer_t::out_info"
  2201. }
  2202. },
  2203. {
  2204. "ruleId": "C26495",
  2205. "message": {
  2206. "text": "Die Variable \"hb_buffer_t::out_len\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2207. },
  2208. "locations": [
  2209. {
  2210. "physicalLocation": {
  2211. "artifactLocation": {
  2212. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2213. },
  2214. "region": {
  2215. "startLine": 626,
  2216. "startColumn": 1,
  2217. "endLine": 626,
  2218. "endColumn": 1
  2219. }
  2220. },
  2221. "logicalLocations": [
  2222. {
  2223. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2224. "kind": "function"
  2225. }
  2226. ]
  2227. }
  2228. ],
  2229. "properties": {
  2230. "targetSymbol": "hb_buffer_t::out_len"
  2231. }
  2232. },
  2233. {
  2234. "ruleId": "C26495",
  2235. "message": {
  2236. "text": "Die Variable \"hb_buffer_t::len\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2237. },
  2238. "locations": [
  2239. {
  2240. "physicalLocation": {
  2241. "artifactLocation": {
  2242. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2243. },
  2244. "region": {
  2245. "startLine": 626,
  2246. "startColumn": 1,
  2247. "endLine": 626,
  2248. "endColumn": 1
  2249. }
  2250. },
  2251. "logicalLocations": [
  2252. {
  2253. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2254. "kind": "function"
  2255. }
  2256. ]
  2257. }
  2258. ],
  2259. "properties": {
  2260. "targetSymbol": "hb_buffer_t::len"
  2261. }
  2262. },
  2263. {
  2264. "ruleId": "C26495",
  2265. "message": {
  2266. "text": "Die Variable \"hb_buffer_t::content_type\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2267. },
  2268. "locations": [
  2269. {
  2270. "physicalLocation": {
  2271. "artifactLocation": {
  2272. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2273. },
  2274. "region": {
  2275. "startLine": 626,
  2276. "startColumn": 1,
  2277. "endLine": 626,
  2278. "endColumn": 1
  2279. }
  2280. },
  2281. "logicalLocations": [
  2282. {
  2283. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2284. "kind": "function"
  2285. }
  2286. ]
  2287. }
  2288. ],
  2289. "properties": {
  2290. "targetSymbol": "hb_buffer_t::content_type"
  2291. }
  2292. },
  2293. {
  2294. "ruleId": "C26495",
  2295. "message": {
  2296. "text": "Die Variable \"hb_buffer_t::idx\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2297. },
  2298. "locations": [
  2299. {
  2300. "physicalLocation": {
  2301. "artifactLocation": {
  2302. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2303. },
  2304. "region": {
  2305. "startLine": 626,
  2306. "startColumn": 1,
  2307. "endLine": 626,
  2308. "endColumn": 1
  2309. }
  2310. },
  2311. "logicalLocations": [
  2312. {
  2313. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2314. "kind": "function"
  2315. }
  2316. ]
  2317. }
  2318. ],
  2319. "properties": {
  2320. "targetSymbol": "hb_buffer_t::idx"
  2321. }
  2322. },
  2323. {
  2324. "ruleId": "C26495",
  2325. "message": {
  2326. "text": "Die Variable \"hb_buffer_t::pos\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2327. },
  2328. "locations": [
  2329. {
  2330. "physicalLocation": {
  2331. "artifactLocation": {
  2332. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2333. },
  2334. "region": {
  2335. "startLine": 626,
  2336. "startColumn": 1,
  2337. "endLine": 626,
  2338. "endColumn": 1
  2339. }
  2340. },
  2341. "logicalLocations": [
  2342. {
  2343. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2344. "kind": "function"
  2345. }
  2346. ]
  2347. }
  2348. ],
  2349. "properties": {
  2350. "targetSymbol": "hb_buffer_t::pos"
  2351. }
  2352. },
  2353. {
  2354. "ruleId": "C26495",
  2355. "message": {
  2356. "text": "Die Variable \"hb_buffer_t::context\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2357. },
  2358. "locations": [
  2359. {
  2360. "physicalLocation": {
  2361. "artifactLocation": {
  2362. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2363. },
  2364. "region": {
  2365. "startLine": 626,
  2366. "startColumn": 1,
  2367. "endLine": 626,
  2368. "endColumn": 1
  2369. }
  2370. },
  2371. "logicalLocations": [
  2372. {
  2373. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2374. "kind": "function"
  2375. }
  2376. ]
  2377. }
  2378. ],
  2379. "properties": {
  2380. "targetSymbol": "hb_buffer_t::context"
  2381. }
  2382. },
  2383. {
  2384. "ruleId": "C26495",
  2385. "message": {
  2386. "text": "Die Variable \"hb_buffer_t::context_len\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2387. },
  2388. "locations": [
  2389. {
  2390. "physicalLocation": {
  2391. "artifactLocation": {
  2392. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2393. },
  2394. "region": {
  2395. "startLine": 626,
  2396. "startColumn": 1,
  2397. "endLine": 626,
  2398. "endColumn": 1
  2399. }
  2400. },
  2401. "logicalLocations": [
  2402. {
  2403. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2404. "kind": "function"
  2405. }
  2406. ]
  2407. }
  2408. ],
  2409. "properties": {
  2410. "targetSymbol": "hb_buffer_t::context_len"
  2411. }
  2412. },
  2413. {
  2414. "ruleId": "C26495",
  2415. "message": {
  2416. "text": "Die Variable \"hb_buffer_t::allocated_var_bits\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2417. },
  2418. "locations": [
  2419. {
  2420. "physicalLocation": {
  2421. "artifactLocation": {
  2422. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2423. },
  2424. "region": {
  2425. "startLine": 626,
  2426. "startColumn": 1,
  2427. "endLine": 626,
  2428. "endColumn": 1
  2429. }
  2430. },
  2431. "logicalLocations": [
  2432. {
  2433. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2434. "kind": "function"
  2435. }
  2436. ]
  2437. }
  2438. ],
  2439. "properties": {
  2440. "targetSymbol": "hb_buffer_t::allocated_var_bits"
  2441. }
  2442. },
  2443. {
  2444. "ruleId": "C26495",
  2445. "message": {
  2446. "text": "Die Variable \"hb_buffer_t::serial\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2447. },
  2448. "locations": [
  2449. {
  2450. "physicalLocation": {
  2451. "artifactLocation": {
  2452. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2453. },
  2454. "region": {
  2455. "startLine": 626,
  2456. "startColumn": 1,
  2457. "endLine": 626,
  2458. "endColumn": 1
  2459. }
  2460. },
  2461. "logicalLocations": [
  2462. {
  2463. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2464. "kind": "function"
  2465. }
  2466. ]
  2467. }
  2468. ],
  2469. "properties": {
  2470. "targetSymbol": "hb_buffer_t::serial"
  2471. }
  2472. },
  2473. {
  2474. "ruleId": "C26495",
  2475. "message": {
  2476. "text": "Die Variable \"hb_buffer_t::scratch_flags\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2477. },
  2478. "locations": [
  2479. {
  2480. "physicalLocation": {
  2481. "artifactLocation": {
  2482. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2483. },
  2484. "region": {
  2485. "startLine": 626,
  2486. "startColumn": 1,
  2487. "endLine": 626,
  2488. "endColumn": 1
  2489. }
  2490. },
  2491. "logicalLocations": [
  2492. {
  2493. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2494. "kind": "function"
  2495. }
  2496. ]
  2497. }
  2498. ],
  2499. "properties": {
  2500. "targetSymbol": "hb_buffer_t::scratch_flags"
  2501. }
  2502. },
  2503. {
  2504. "ruleId": "C26495",
  2505. "message": {
  2506. "text": "Die Variable \"hb_buffer_t::max_len\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2507. },
  2508. "locations": [
  2509. {
  2510. "physicalLocation": {
  2511. "artifactLocation": {
  2512. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2513. },
  2514. "region": {
  2515. "startLine": 626,
  2516. "startColumn": 1,
  2517. "endLine": 626,
  2518. "endColumn": 1
  2519. }
  2520. },
  2521. "logicalLocations": [
  2522. {
  2523. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2524. "kind": "function"
  2525. }
  2526. ]
  2527. }
  2528. ],
  2529. "properties": {
  2530. "targetSymbol": "hb_buffer_t::max_len"
  2531. }
  2532. },
  2533. {
  2534. "ruleId": "C26495",
  2535. "message": {
  2536. "text": "Die Variable \"hb_buffer_t::max_ops\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2537. },
  2538. "locations": [
  2539. {
  2540. "physicalLocation": {
  2541. "artifactLocation": {
  2542. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2543. },
  2544. "region": {
  2545. "startLine": 626,
  2546. "startColumn": 1,
  2547. "endLine": 626,
  2548. "endColumn": 1
  2549. }
  2550. },
  2551. "logicalLocations": [
  2552. {
  2553. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2554. "kind": "function"
  2555. }
  2556. ]
  2557. }
  2558. ],
  2559. "properties": {
  2560. "targetSymbol": "hb_buffer_t::max_ops"
  2561. }
  2562. },
  2563. {
  2564. "ruleId": "C26495",
  2565. "message": {
  2566. "text": "Die Variable \"hb_buffer_t::message_func\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2567. },
  2568. "locations": [
  2569. {
  2570. "physicalLocation": {
  2571. "artifactLocation": {
  2572. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2573. },
  2574. "region": {
  2575. "startLine": 626,
  2576. "startColumn": 1,
  2577. "endLine": 626,
  2578. "endColumn": 1
  2579. }
  2580. },
  2581. "logicalLocations": [
  2582. {
  2583. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2584. "kind": "function"
  2585. }
  2586. ]
  2587. }
  2588. ],
  2589. "properties": {
  2590. "targetSymbol": "hb_buffer_t::message_func"
  2591. }
  2592. },
  2593. {
  2594. "ruleId": "C26495",
  2595. "message": {
  2596. "text": "Die Variable \"hb_buffer_t::message_data\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2597. },
  2598. "locations": [
  2599. {
  2600. "physicalLocation": {
  2601. "artifactLocation": {
  2602. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2603. },
  2604. "region": {
  2605. "startLine": 626,
  2606. "startColumn": 1,
  2607. "endLine": 626,
  2608. "endColumn": 1
  2609. }
  2610. },
  2611. "logicalLocations": [
  2612. {
  2613. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2614. "kind": "function"
  2615. }
  2616. ]
  2617. }
  2618. ],
  2619. "properties": {
  2620. "targetSymbol": "hb_buffer_t::message_data"
  2621. }
  2622. },
  2623. {
  2624. "ruleId": "C26495",
  2625. "message": {
  2626. "text": "Die Variable \"hb_buffer_t::message_destroy\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2627. },
  2628. "locations": [
  2629. {
  2630. "physicalLocation": {
  2631. "artifactLocation": {
  2632. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2633. },
  2634. "region": {
  2635. "startLine": 626,
  2636. "startColumn": 1,
  2637. "endLine": 626,
  2638. "endColumn": 1
  2639. }
  2640. },
  2641. "logicalLocations": [
  2642. {
  2643. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2644. "kind": "function"
  2645. }
  2646. ]
  2647. }
  2648. ],
  2649. "properties": {
  2650. "targetSymbol": "hb_buffer_t::message_destroy"
  2651. }
  2652. },
  2653. {
  2654. "ruleId": "C26495",
  2655. "message": {
  2656. "text": "Die Variable \"hb_buffer_t::message_depth\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  2657. },
  2658. "locations": [
  2659. {
  2660. "physicalLocation": {
  2661. "artifactLocation": {
  2662. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  2663. },
  2664. "region": {
  2665. "startLine": 626,
  2666. "startColumn": 1,
  2667. "endLine": 626,
  2668. "endColumn": 1
  2669. }
  2670. },
  2671. "logicalLocations": [
  2672. {
  2673. "decoratedName": "??0hb_buffer_t@@QEAA@XZ",
  2674. "kind": "function"
  2675. }
  2676. ]
  2677. }
  2678. ],
  2679. "properties": {
  2680. "targetSymbol": "hb_buffer_t::message_depth"
  2681. }
  2682. },
  2683. {
  2684. "ruleId": "C6001",
  2685. "message": {
  2686. "text": "Nicht initialisierter Speicher \"newBits\" wird verwendet."
  2687. },
  2688. "locations": [
  2689. {
  2690. "physicalLocation": {
  2691. "artifactLocation": {
  2692. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2693. },
  2694. "region": {
  2695. "startLine": 256,
  2696. "startColumn": 7,
  2697. "endLine": 256,
  2698. "endColumn": 7
  2699. }
  2700. },
  2701. "logicalLocations": [
  2702. {
  2703. "decoratedName": "?_update_unicode_ranges@OS2@OT@@QEBAXPEBUhb_set_t@@QEAU?$IntType@I$03@2@@Z",
  2704. "kind": "function"
  2705. }
  2706. ]
  2707. }
  2708. ],
  2709. "codeFlows": [
  2710. {
  2711. "threadFlows": [
  2712. {
  2713. "locations": [
  2714. {
  2715. "location": {
  2716. "physicalLocation": {
  2717. "artifactLocation": {
  2718. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2719. },
  2720. "region": {
  2721. "startLine": 254,
  2722. "startColumn": 14
  2723. }
  2724. },
  2725. "message": {
  2726. "text": "\"newBits\" ist nicht initialisiert"
  2727. }
  2728. },
  2729. "kinds": [
  2730. "declaration"
  2731. ],
  2732. "importance": "essential"
  2733. },
  2734. {
  2735. "location": {
  2736. "physicalLocation": {
  2737. "artifactLocation": {
  2738. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2739. },
  2740. "region": {
  2741. "startLine": 255,
  2742. "startColumn": 23
  2743. }
  2744. }
  2745. },
  2746. "importance": "unimportant"
  2747. },
  2748. {
  2749. "location": {
  2750. "physicalLocation": {
  2751. "artifactLocation": {
  2752. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2753. },
  2754. "region": {
  2755. "startLine": 255,
  2756. "startColumn": 32
  2757. }
  2758. },
  2759. "message": {
  2760. "text": "In diese Schleife eintreten (Annahme: \"i<4\")"
  2761. }
  2762. },
  2763. "kinds": [
  2764. "branch"
  2765. ],
  2766. "importance": "important"
  2767. },
  2768. {
  2769. "location": {
  2770. "physicalLocation": {
  2771. "artifactLocation": {
  2772. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2773. },
  2774. "region": {
  2775. "startLine": 256,
  2776. "startColumn": 18
  2777. }
  2778. },
  2779. "message": {
  2780. "text": "\"newBits\" ist eine Ausgabe von \"OT::IntType<unsigned int,4>::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:65 deklariert)"
  2781. }
  2782. },
  2783. "kinds": [
  2784. "declaration"
  2785. ],
  2786. "importance": "important"
  2787. },
  2788. {
  2789. "location": {
  2790. "physicalLocation": {
  2791. "artifactLocation": {
  2792. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  2793. },
  2794. "region": {
  2795. "startLine": 256,
  2796. "startColumn": 7
  2797. }
  2798. },
  2799. "message": {
  2800. "text": "\"newBits\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  2801. }
  2802. },
  2803. "kinds": [
  2804. "usage"
  2805. ],
  2806. "importance": "essential"
  2807. }
  2808. ]
  2809. }
  2810. ]
  2811. }
  2812. ]
  2813. },
  2814. {
  2815. "ruleId": "C26439",
  2816. "message": {
  2817. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  2818. },
  2819. "locations": [
  2820. {
  2821. "physicalLocation": {
  2822. "artifactLocation": {
  2823. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  2824. },
  2825. "region": {
  2826. "startLine": 45,
  2827. "startColumn": 3,
  2828. "endLine": 45,
  2829. "endColumn": 3
  2830. }
  2831. },
  2832. "logicalLocations": [
  2833. {
  2834. "decoratedName": "??0?$hb_sparseset_t@Uhb_bit_set_invertible_t@@@@QEAA@$$QEAU0@@Z",
  2835. "kind": "function"
  2836. }
  2837. ]
  2838. }
  2839. ]
  2840. },
  2841. {
  2842. "ruleId": "C26439",
  2843. "message": {
  2844. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  2845. },
  2846. "locations": [
  2847. {
  2848. "physicalLocation": {
  2849. "artifactLocation": {
  2850. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  2851. },
  2852. "region": {
  2853. "startLine": 67,
  2854. "startColumn": 3,
  2855. "endLine": 67,
  2856. "endColumn": 3
  2857. }
  2858. },
  2859. "logicalLocations": [
  2860. {
  2861. "decoratedName": "??0?$hb_vector_t@I$0A@@@QEAA@$$QEAU0@@Z",
  2862. "kind": "function"
  2863. }
  2864. ]
  2865. }
  2866. ]
  2867. },
  2868. {
  2869. "ruleId": "C26439",
  2870. "message": {
  2871. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  2872. },
  2873. "locations": [
  2874. {
  2875. "physicalLocation": {
  2876. "artifactLocation": {
  2877. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  2878. },
  2879. "region": {
  2880. "startLine": 47,
  2881. "startColumn": 3,
  2882. "endLine": 47,
  2883. "endColumn": 3
  2884. }
  2885. },
  2886. "logicalLocations": [
  2887. {
  2888. "decoratedName": "??0?$hb_hashmap_t@II$00@@QEAA@$$QEAU0@@Z",
  2889. "kind": "function"
  2890. }
  2891. ]
  2892. }
  2893. ]
  2894. },
  2895. {
  2896. "ruleId": "C6319",
  2897. "message": {
  2898. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  2899. },
  2900. "locations": [
  2901. {
  2902. "physicalLocation": {
  2903. "artifactLocation": {
  2904. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  2905. },
  2906. "region": {
  2907. "startLine": 213,
  2908. "startColumn": 9,
  2909. "endLine": 213,
  2910. "endColumn": 13
  2911. }
  2912. },
  2913. "logicalLocations": [
  2914. {
  2915. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$Record@UScript@OT@@@OT@@@@AEBU?$Record@UScript@OT@@@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$Record@UScript@OT@@@OT@@@@XZ",
  2916. "kind": "function"
  2917. }
  2918. ]
  2919. }
  2920. ]
  2921. },
  2922. {
  2923. "ruleId": "C6319",
  2924. "message": {
  2925. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  2926. },
  2927. "locations": [
  2928. {
  2929. "physicalLocation": {
  2930. "artifactLocation": {
  2931. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  2932. },
  2933. "region": {
  2934. "startLine": 213,
  2935. "startColumn": 9,
  2936. "endLine": 213,
  2937. "endColumn": 13
  2938. }
  2939. },
  2940. "logicalLocations": [
  2941. {
  2942. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$Record@ULangSys@OT@@@OT@@@@AEBU?$Record@ULangSys@OT@@@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$Record@ULangSys@OT@@@OT@@@@XZ",
  2943. "kind": "function"
  2944. }
  2945. ]
  2946. }
  2947. ]
  2948. },
  2949. {
  2950. "ruleId": "C6319",
  2951. "message": {
  2952. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  2953. },
  2954. "locations": [
  2955. {
  2956. "physicalLocation": {
  2957. "artifactLocation": {
  2958. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  2959. },
  2960. "region": {
  2961. "startLine": 213,
  2962. "startColumn": 9,
  2963. "endLine": 213,
  2964. "endColumn": 13
  2965. }
  2966. },
  2967. "logicalLocations": [
  2968. {
  2969. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@AEBU?$IntType@G$01@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@XZ",
  2970. "kind": "function"
  2971. }
  2972. ]
  2973. }
  2974. ]
  2975. },
  2976. {
  2977. "ruleId": "C6011",
  2978. "message": {
  2979. "text": "Dereferenzierender NULL-Zeiger \"out\". "
  2980. },
  2981. "locations": [
  2982. {
  2983. "physicalLocation": {
  2984. "artifactLocation": {
  2985. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  2986. },
  2987. "region": {
  2988. "startLine": 214,
  2989. "startColumn": 9,
  2990. "endLine": 214,
  2991. "endColumn": 9
  2992. }
  2993. },
  2994. "logicalLocations": [
  2995. {
  2996. "decoratedName": "??$serialize@U?$hb_map_iter_t@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_zip_iter_t@Uiter_t@Coverage@Common@Layout@OT@@U?$hb_array_t@$$CBUHBGlyphID16@OT@@@@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_second>@@$0A@@@V<lambda_703419f0b8ad6300a5a4939f3ee21527>@@$00$0A@@@U?$hb_array_t@$$CBU?$OffsetTo@UCoverage@Common@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@U2@$0A@$0A@$0A@@ReverseChainSingleSubstFormat1@GSUB_impl@Layout@OT@@QEBA_NPEAUhb_subset_context_t@@U?$hb_map_iter_t@U?$hb_filter_iter_t@U?$hb_filter_iter_t@U?$hb_zip_iter_t@Uiter_t@Coverage@Common@Layout@OT@@U?$hb_array_t@$$CBUHBGlyphID16@OT@@@@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_second>@@$0A@@@V<lambda_703419f0b8ad6300a5a4939f3ee21527>@@$00$0A@@@U?$hb_array_t@$$CBU?$OffsetTo@UCoverage@Common@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@2@Z",
  2997. "kind": "function"
  2998. }
  2999. ]
  3000. }
  3001. ],
  3002. "codeFlows": [
  3003. {
  3004. "threadFlows": [
  3005. {
  3006. "locations": [
  3007. {
  3008. "location": {
  3009. "physicalLocation": {
  3010. "artifactLocation": {
  3011. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3012. },
  3013. "region": {
  3014. "startLine": 191,
  3015. "startColumn": 5
  3016. }
  3017. }
  3018. },
  3019. "importance": "unimportant"
  3020. },
  3021. {
  3022. "location": {
  3023. "physicalLocation": {
  3024. "artifactLocation": {
  3025. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3026. },
  3027. "region": {
  3028. "startLine": 193,
  3029. "startColumn": 11
  3030. }
  3031. }
  3032. },
  3033. "importance": "unimportant"
  3034. },
  3035. {
  3036. "location": {
  3037. "physicalLocation": {
  3038. "artifactLocation": {
  3039. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3040. },
  3041. "region": {
  3042. "startLine": 194,
  3043. "startColumn": 9
  3044. }
  3045. },
  3046. "message": {
  3047. "text": "\"out\" kann NULL sein. (Diese Verzweigung überspringen)"
  3048. }
  3049. },
  3050. "kinds": [
  3051. "branch"
  3052. ],
  3053. "importance": "important"
  3054. },
  3055. {
  3056. "location": {
  3057. "physicalLocation": {
  3058. "artifactLocation": {
  3059. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3060. },
  3061. "region": {
  3062. "startLine": 195,
  3063. "startColumn": 9
  3064. }
  3065. },
  3066. "message": {
  3067. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3068. }
  3069. },
  3070. "kinds": [
  3071. "branch"
  3072. ],
  3073. "importance": "important"
  3074. },
  3075. {
  3076. "location": {
  3077. "physicalLocation": {
  3078. "artifactLocation": {
  3079. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3080. },
  3081. "region": {
  3082. "startLine": 196,
  3083. "startColumn": 9
  3084. }
  3085. },
  3086. "message": {
  3087. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3088. }
  3089. },
  3090. "kinds": [
  3091. "branch"
  3092. ],
  3093. "importance": "important"
  3094. },
  3095. {
  3096. "location": {
  3097. "physicalLocation": {
  3098. "artifactLocation": {
  3099. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3100. },
  3101. "region": {
  3102. "startLine": 198,
  3103. "startColumn": 9
  3104. }
  3105. },
  3106. "message": {
  3107. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3108. }
  3109. },
  3110. "kinds": [
  3111. "branch"
  3112. ],
  3113. "importance": "important"
  3114. },
  3115. {
  3116. "location": {
  3117. "physicalLocation": {
  3118. "artifactLocation": {
  3119. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3120. },
  3121. "region": {
  3122. "startLine": 199,
  3123. "startColumn": 9
  3124. }
  3125. },
  3126. "message": {
  3127. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3128. }
  3129. },
  3130. "kinds": [
  3131. "branch"
  3132. ],
  3133. "importance": "important"
  3134. },
  3135. {
  3136. "location": {
  3137. "physicalLocation": {
  3138. "artifactLocation": {
  3139. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3140. },
  3141. "region": {
  3142. "startLine": 201,
  3143. "startColumn": 11
  3144. }
  3145. }
  3146. },
  3147. "importance": "unimportant"
  3148. },
  3149. {
  3150. "location": {
  3151. "physicalLocation": {
  3152. "artifactLocation": {
  3153. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3154. },
  3155. "region": {
  3156. "startLine": 202,
  3157. "startColumn": 10
  3158. }
  3159. }
  3160. },
  3161. "importance": "unimportant"
  3162. },
  3163. {
  3164. "location": {
  3165. "physicalLocation": {
  3166. "artifactLocation": {
  3167. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3168. },
  3169. "region": {
  3170. "startLine": 207,
  3171. "startColumn": 10
  3172. }
  3173. }
  3174. },
  3175. "importance": "unimportant"
  3176. },
  3177. {
  3178. "location": {
  3179. "physicalLocation": {
  3180. "artifactLocation": {
  3181. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3182. },
  3183. "region": {
  3184. "startLine": 211,
  3185. "startColumn": 9
  3186. }
  3187. },
  3188. "message": {
  3189. "text": "Diese Verzweigung überspringen (Annahme: \"<Verzweigungsbedingung>\" ist false)"
  3190. }
  3191. },
  3192. "kinds": [
  3193. "branch"
  3194. ],
  3195. "importance": "important"
  3196. },
  3197. {
  3198. "location": {
  3199. "physicalLocation": {
  3200. "artifactLocation": {
  3201. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  3202. },
  3203. "region": {
  3204. "startLine": 214,
  3205. "startColumn": 9
  3206. }
  3207. },
  3208. "message": {
  3209. "text": "\"out\" wird dereferenziert, kann jedoch weiterhin NULL sein."
  3210. }
  3211. },
  3212. "kinds": [
  3213. "usage"
  3214. ],
  3215. "importance": "essential"
  3216. }
  3217. ]
  3218. }
  3219. ]
  3220. }
  3221. ]
  3222. },
  3223. {
  3224. "ruleId": "C26439",
  3225. "message": {
  3226. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3227. },
  3228. "locations": [
  3229. {
  3230. "physicalLocation": {
  3231. "artifactLocation": {
  3232. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  3233. },
  3234. "region": {
  3235. "startLine": 168,
  3236. "startColumn": 13,
  3237. "endLine": 168,
  3238. "endColumn": 13
  3239. }
  3240. },
  3241. "logicalLocations": [
  3242. {
  3243. "decoratedName": "??4hb_set_t@@QEAAAEAU0@$$QEAU0@@Z",
  3244. "kind": "function"
  3245. }
  3246. ]
  3247. }
  3248. ]
  3249. },
  3250. {
  3251. "ruleId": "C26439",
  3252. "message": {
  3253. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3254. },
  3255. "locations": [
  3256. {
  3257. "physicalLocation": {
  3258. "artifactLocation": {
  3259. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  3260. },
  3261. "region": {
  3262. "startLine": 47,
  3263. "startColumn": 19,
  3264. "endLine": 47,
  3265. "endColumn": 19
  3266. }
  3267. },
  3268. "logicalLocations": [
  3269. {
  3270. "decoratedName": "??4?$hb_sparseset_t@Uhb_bit_set_invertible_t@@@@QEAAAEAU0@$$QEAU0@@Z",
  3271. "kind": "function"
  3272. }
  3273. ]
  3274. }
  3275. ]
  3276. },
  3277. {
  3278. "ruleId": "C26439",
  3279. "message": {
  3280. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3281. },
  3282. "locations": [
  3283. {
  3284. "physicalLocation": {
  3285. "artifactLocation": {
  3286. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  3287. },
  3288. "region": {
  3289. "startLine": 126,
  3290. "startColumn": 16,
  3291. "endLine": 126,
  3292. "endColumn": 16
  3293. }
  3294. },
  3295. "logicalLocations": [
  3296. {
  3297. "decoratedName": "??4?$hb_vector_t@I$0A@@@QEAAAEAU0@$$QEAU0@@Z",
  3298. "kind": "function"
  3299. }
  3300. ]
  3301. }
  3302. ]
  3303. },
  3304. {
  3305. "ruleId": "C6319",
  3306. "message": {
  3307. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3308. },
  3309. "locations": [
  3310. {
  3311. "physicalLocation": {
  3312. "artifactLocation": {
  3313. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3314. },
  3315. "region": {
  3316. "startLine": 213,
  3317. "startColumn": 9,
  3318. "endLine": 213,
  3319. "endColumn": 13
  3320. }
  3321. },
  3322. "logicalLocations": [
  3323. {
  3324. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUIndex@OT@@@@AEBUIndex@OT@@@@QEBA?AU?$hb_array_t@$$CBUIndex@OT@@@@XZ",
  3325. "kind": "function"
  3326. }
  3327. ]
  3328. }
  3329. ]
  3330. },
  3331. {
  3332. "ruleId": "C6319",
  3333. "message": {
  3334. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3335. },
  3336. "locations": [
  3337. {
  3338. "physicalLocation": {
  3339. "artifactLocation": {
  3340. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3341. },
  3342. "region": {
  3343. "startLine": 213,
  3344. "startColumn": 9,
  3345. "endLine": 213,
  3346. "endColumn": 13
  3347. }
  3348. },
  3349. "logicalLocations": [
  3350. {
  3351. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUNameRecord@OT@@@@AEBUNameRecord@OT@@@@QEBA?AU?$hb_array_t@$$CBUNameRecord@OT@@@@XZ",
  3352. "kind": "function"
  3353. }
  3354. ]
  3355. }
  3356. ]
  3357. },
  3358. {
  3359. "ruleId": "C6319",
  3360. "message": {
  3361. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3362. },
  3363. "locations": [
  3364. {
  3365. "physicalLocation": {
  3366. "artifactLocation": {
  3367. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3368. },
  3369. "region": {
  3370. "startLine": 213,
  3371. "startColumn": 9,
  3372. "endLine": 213,
  3373. "endColumn": 13
  3374. }
  3375. },
  3376. "logicalLocations": [
  3377. {
  3378. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@Uitem_t@?$hb_hashmap_t@II$00@@@@AEAUitem_t@?$hb_hashmap_t@II$00@@@@QEBA?AU?$hb_array_t@Uitem_t@?$hb_hashmap_t@II$00@@@@XZ",
  3379. "kind": "function"
  3380. }
  3381. ]
  3382. }
  3383. ]
  3384. },
  3385. {
  3386. "ruleId": "C6319",
  3387. "message": {
  3388. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3389. },
  3390. "locations": [
  3391. {
  3392. "physicalLocation": {
  3393. "artifactLocation": {
  3394. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3395. },
  3396. "region": {
  3397. "startLine": 213,
  3398. "startColumn": 9,
  3399. "endLine": 213,
  3400. "endColumn": 13
  3401. }
  3402. },
  3403. "logicalLocations": [
  3404. {
  3405. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUEntryExitRecord@GPOS_impl@Layout@OT@@@@AEBUEntryExitRecord@GPOS_impl@Layout@OT@@@@QEBA?AU?$hb_array_t@$$CBUEntryExitRecord@GPOS_impl@Layout@OT@@@@XZ",
  3406. "kind": "function"
  3407. }
  3408. ]
  3409. }
  3410. ]
  3411. },
  3412. {
  3413. "ruleId": "C26800",
  3414. "message": {
  3415. "text": "Verwendung eines moved-from-Objekts: ''(*<ds_1>)'' (lifetime.1)."
  3416. },
  3417. "locations": [
  3418. {
  3419. "physicalLocation": {
  3420. "artifactLocation": {
  3421. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  3422. },
  3423. "region": {
  3424. "startLine": 729,
  3425. "startColumn": 11,
  3426. "endLine": 729,
  3427. "endColumn": 11
  3428. }
  3429. },
  3430. "logicalLocations": [
  3431. {
  3432. "decoratedName": "??$sanitize@PEBULookup@OT@@I@?$ArrayOf@U?$OffsetTo@UPosLookupSubTable@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@U?$IntType@G$01@2@@OT@@QEBA_NPEAUhb_sanitize_context_t@@$$QEAPEBULookup@1@$$QEAI@Z",
  3433. "kind": "function"
  3434. }
  3435. ]
  3436. }
  3437. ],
  3438. "codeFlows": [
  3439. {
  3440. "threadFlows": [
  3441. {
  3442. "locations": [
  3443. {
  3444. "location": {
  3445. "physicalLocation": {
  3446. "artifactLocation": {
  3447. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  3448. },
  3449. "region": {
  3450. "startLine": 729,
  3451. "startColumn": 11
  3452. }
  3453. }
  3454. },
  3455. "importance": "important"
  3456. }
  3457. ]
  3458. }
  3459. ]
  3460. }
  3461. ]
  3462. },
  3463. {
  3464. "ruleId": "C26800",
  3465. "message": {
  3466. "text": "Verwendung eines moved-from-Objekts: ''(*<ds_1>)'' (lifetime.1)."
  3467. },
  3468. "locations": [
  3469. {
  3470. "physicalLocation": {
  3471. "artifactLocation": {
  3472. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  3473. },
  3474. "region": {
  3475. "startLine": 729,
  3476. "startColumn": 11,
  3477. "endLine": 729,
  3478. "endColumn": 11
  3479. }
  3480. },
  3481. "logicalLocations": [
  3482. {
  3483. "decoratedName": "??$sanitize@PEBULookup@OT@@I@?$ArrayOf@U?$OffsetTo@USubstLookupSubTable@GSUB_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@U?$IntType@G$01@2@@OT@@QEBA_NPEAUhb_sanitize_context_t@@$$QEAPEBULookup@1@$$QEAI@Z",
  3484. "kind": "function"
  3485. }
  3486. ]
  3487. }
  3488. ],
  3489. "codeFlows": [
  3490. {
  3491. "threadFlows": [
  3492. {
  3493. "locations": [
  3494. {
  3495. "location": {
  3496. "physicalLocation": {
  3497. "artifactLocation": {
  3498. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  3499. },
  3500. "region": {
  3501. "startLine": 729,
  3502. "startColumn": 11
  3503. }
  3504. }
  3505. },
  3506. "importance": "important"
  3507. }
  3508. ]
  3509. }
  3510. ]
  3511. }
  3512. ]
  3513. },
  3514. {
  3515. "ruleId": "C26439",
  3516. "message": {
  3517. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3518. },
  3519. "locations": [
  3520. {
  3521. "physicalLocation": {
  3522. "artifactLocation": {
  3523. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  3524. },
  3525. "region": {
  3526. "startLine": 103,
  3527. "startColumn": 15,
  3528. "endLine": 103,
  3529. "endColumn": 15
  3530. }
  3531. },
  3532. "logicalLocations": [
  3533. {
  3534. "decoratedName": "??4?$unique_ptr@Uhb_set_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  3535. "kind": "function"
  3536. }
  3537. ]
  3538. }
  3539. ]
  3540. },
  3541. {
  3542. "ruleId": "C6319",
  3543. "message": {
  3544. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3545. },
  3546. "locations": [
  3547. {
  3548. "physicalLocation": {
  3549. "artifactLocation": {
  3550. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3551. },
  3552. "region": {
  3553. "startLine": 213,
  3554. "startColumn": 9,
  3555. "endLine": 213,
  3556. "endColumn": 13
  3557. }
  3558. },
  3559. "logicalLocations": [
  3560. {
  3561. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$hb_pair_t@II@@@@AEBU?$hb_pair_t@II@@@@QEBA?AU?$hb_array_t@$$CBU?$hb_pair_t@II@@@@XZ",
  3562. "kind": "function"
  3563. }
  3564. ]
  3565. }
  3566. ]
  3567. },
  3568. {
  3569. "ruleId": "C6001",
  3570. "message": {
  3571. "text": "Nicht initialisierter Speicher \"range_rec\" wird verwendet."
  3572. },
  3573. "locations": [
  3574. {
  3575. "physicalLocation": {
  3576. "artifactLocation": {
  3577. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3578. },
  3579. "region": {
  3580. "startLine": 1774,
  3581. "startColumn": 5,
  3582. "endLine": 1774,
  3583. "endColumn": 5
  3584. }
  3585. },
  3586. "logicalLocations": [
  3587. {
  3588. "decoratedName": "??$serialize@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@AEBU<unnamed-type-hb_second>@@AEBU<unnamed-type-hb_identity>@@$0A@@@$0A@@?$ClassDefFormat2_4@USmallTypes@Layout@OT@@@OT@@AEAA_NPEAUhb_serialize_context_t@@U?$hb_filter_iter_t@U?$hb_sorted_array_t@$$CBU?$hb_pair_t@II@@@@AEBU<unnamed-type-hb_second>@@AEBU<unnamed-type-hb_identity>@@$0A@@@@Z",
  3589. "kind": "function"
  3590. }
  3591. ]
  3592. }
  3593. ],
  3594. "codeFlows": [
  3595. {
  3596. "threadFlows": [
  3597. {
  3598. "locations": [
  3599. {
  3600. "location": {
  3601. "physicalLocation": {
  3602. "artifactLocation": {
  3603. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3604. },
  3605. "region": {
  3606. "startLine": 1759,
  3607. "startColumn": 5
  3608. }
  3609. }
  3610. },
  3611. "importance": "unimportant"
  3612. },
  3613. {
  3614. "location": {
  3615. "physicalLocation": {
  3616. "artifactLocation": {
  3617. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3618. },
  3619. "region": {
  3620. "startLine": 1760,
  3621. "startColumn": 9
  3622. }
  3623. }
  3624. },
  3625. "importance": "unimportant"
  3626. },
  3627. {
  3628. "location": {
  3629. "physicalLocation": {
  3630. "artifactLocation": {
  3631. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3632. },
  3633. "region": {
  3634. "startLine": 1762,
  3635. "startColumn": 9
  3636. }
  3637. }
  3638. },
  3639. "importance": "unimportant"
  3640. },
  3641. {
  3642. "location": {
  3643. "physicalLocation": {
  3644. "artifactLocation": {
  3645. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3646. },
  3647. "region": {
  3648. "startLine": 1769,
  3649. "startColumn": 14
  3650. }
  3651. }
  3652. },
  3653. "importance": "unimportant"
  3654. },
  3655. {
  3656. "location": {
  3657. "physicalLocation": {
  3658. "artifactLocation": {
  3659. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3660. },
  3661. "region": {
  3662. "startLine": 1770,
  3663. "startColumn": 20
  3664. }
  3665. }
  3666. },
  3667. "importance": "unimportant"
  3668. },
  3669. {
  3670. "location": {
  3671. "physicalLocation": {
  3672. "artifactLocation": {
  3673. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3674. },
  3675. "region": {
  3676. "startLine": 1771,
  3677. "startColumn": 14
  3678. }
  3679. }
  3680. },
  3681. "importance": "unimportant"
  3682. },
  3683. {
  3684. "location": {
  3685. "physicalLocation": {
  3686. "artifactLocation": {
  3687. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3688. },
  3689. "region": {
  3690. "startLine": 1773,
  3691. "startColumn": 24
  3692. }
  3693. },
  3694. "message": {
  3695. "text": "\"range_rec\" ist nicht initialisiert"
  3696. }
  3697. },
  3698. "kinds": [
  3699. "declaration"
  3700. ],
  3701. "importance": "essential"
  3702. },
  3703. {
  3704. "location": {
  3705. "physicalLocation": {
  3706. "artifactLocation": {
  3707. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3708. },
  3709. "region": {
  3710. "startLine": 1774,
  3711. "startColumn": 21
  3712. }
  3713. },
  3714. "message": {
  3715. "text": "\"range_rec\" ist eine Ausgabe von \"OT::HBGlyphID16::=\" (in c:\\users\\wruser\\source\\repos\\sharpmupdf\\mupdf\\thirdparty\\harfbuzz\\src\\hb-open-type.hh:197 deklariert)"
  3716. }
  3717. },
  3718. "kinds": [
  3719. "declaration"
  3720. ],
  3721. "importance": "important"
  3722. },
  3723. {
  3724. "location": {
  3725. "physicalLocation": {
  3726. "artifactLocation": {
  3727. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3728. },
  3729. "region": {
  3730. "startLine": 1775,
  3731. "startColumn": 20
  3732. }
  3733. }
  3734. },
  3735. "importance": "unimportant"
  3736. },
  3737. {
  3738. "location": {
  3739. "physicalLocation": {
  3740. "artifactLocation": {
  3741. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3742. },
  3743. "region": {
  3744. "startLine": 1776,
  3745. "startColumn": 21
  3746. }
  3747. }
  3748. },
  3749. "importance": "unimportant"
  3750. },
  3751. {
  3752. "location": {
  3753. "physicalLocation": {
  3754. "artifactLocation": {
  3755. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3756. },
  3757. "region": {
  3758. "startLine": 1778,
  3759. "startColumn": 11
  3760. }
  3761. }
  3762. },
  3763. "importance": "unimportant"
  3764. },
  3765. {
  3766. "location": {
  3767. "physicalLocation": {
  3768. "artifactLocation": {
  3769. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  3770. },
  3771. "region": {
  3772. "startLine": 1774,
  3773. "startColumn": 5
  3774. }
  3775. },
  3776. "message": {
  3777. "text": "\"range_rec\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  3778. }
  3779. },
  3780. "kinds": [
  3781. "usage"
  3782. ],
  3783. "importance": "essential"
  3784. }
  3785. ]
  3786. }
  3787. ]
  3788. }
  3789. ]
  3790. },
  3791. {
  3792. "ruleId": "C26817",
  3793. "message": {
  3794. "text": "Möglicherweise kostspielige Kopie der Variablen \"iter\" in range-for-Schleife. Erwägen Sie die Festlegung eines const-Verweises (es.71)."
  3795. },
  3796. "locations": [
  3797. {
  3798. "physicalLocation": {
  3799. "artifactLocation": {
  3800. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh"
  3801. },
  3802. "region": {
  3803. "startLine": 27,
  3804. "startColumn": 21,
  3805. "endLine": 27,
  3806. "endColumn": 48
  3807. }
  3808. },
  3809. "logicalLocations": [
  3810. {
  3811. "decoratedName": "??$get_format@U?$hb_zip_iter_t@U?$hb_map_iter_t@Uiter_t@hb_bit_set_invertible_t@@AEBUhb_map_t@@$00$0A@@@U?$hb_repeat_iter_t@U?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@@@@@$0A@@SinglePos@GPOS_impl@Layout@OT@@QEAAIU?$hb_zip_iter_t@U?$hb_map_iter_t@Uiter_t@hb_bit_set_invertible_t@@AEBUhb_map_t@@$00$0A@@@U?$hb_repeat_iter_t@U?$hb_array_t@$$CBU?$IntType@G$01@OT@@@@@@@@@Z",
  3812. "kind": "function"
  3813. }
  3814. ]
  3815. }
  3816. ]
  3817. },
  3818. {
  3819. "ruleId": "C26817",
  3820. "message": {
  3821. "text": "Möglicherweise kostspielige Kopie der Variablen \"iter\" in range-for-Schleife. Erwägen Sie die Festlegung eines const-Verweises (es.71)."
  3822. },
  3823. "locations": [
  3824. {
  3825. "physicalLocation": {
  3826. "artifactLocation": {
  3827. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh"
  3828. },
  3829. "region": {
  3830. "startLine": 27,
  3831. "startColumn": 21,
  3832. "endLine": 27,
  3833. "endColumn": 48
  3834. }
  3835. },
  3836. "logicalLocations": [
  3837. {
  3838. "decoratedName": "??$get_format@U?$hb_map_iter_t@U?$hb_filter_iter_t@U?$hb_zip_iter_t@Uiter_t@Coverage@Common@Layout@OT@@U?$hb_range_iter_t@II@@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@V<lambda_34ff3090db17327c9253e1982b22f390>@@$00$0A@@@$0A@@SinglePos@GPOS_impl@Layout@OT@@QEAAIU?$hb_map_iter_t@U?$hb_filter_iter_t@U?$hb_zip_iter_t@Uiter_t@Coverage@Common@Layout@OT@@U?$hb_range_iter_t@II@@@@AEBUhb_set_t@@AEBU<unnamed-type-hb_first>@@$0A@@@V<lambda_34ff3090db17327c9253e1982b22f390>@@$00$0A@@@@Z",
  3839. "kind": "function"
  3840. }
  3841. ]
  3842. }
  3843. ]
  3844. },
  3845. {
  3846. "ruleId": "C26439",
  3847. "message": {
  3848. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3849. },
  3850. "locations": [
  3851. {
  3852. "physicalLocation": {
  3853. "artifactLocation": {
  3854. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  3855. },
  3856. "region": {
  3857. "startLine": 61,
  3858. "startColumn": 15,
  3859. "endLine": 61,
  3860. "endColumn": 15
  3861. }
  3862. },
  3863. "logicalLocations": [
  3864. {
  3865. "decoratedName": "??4?$shared_ptr@Uhb_map_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  3866. "kind": "function"
  3867. }
  3868. ]
  3869. }
  3870. ]
  3871. },
  3872. {
  3873. "ruleId": "C26439",
  3874. "message": {
  3875. "text": "Diese Art von Funktion darf nicht 'throw'. Deklarieren Sie sie als \"noexcept\" (f.6)."
  3876. },
  3877. "locations": [
  3878. {
  3879. "physicalLocation": {
  3880. "artifactLocation": {
  3881. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  3882. },
  3883. "region": {
  3884. "startLine": 61,
  3885. "startColumn": 15,
  3886. "endLine": 61,
  3887. "endColumn": 15
  3888. }
  3889. },
  3890. "logicalLocations": [
  3891. {
  3892. "decoratedName": "??4?$shared_ptr@Uhb_set_t@@@hb@@QEAAAEAU01@$$QEAU01@@Z",
  3893. "kind": "function"
  3894. }
  3895. ]
  3896. }
  3897. ]
  3898. },
  3899. {
  3900. "ruleId": "C6319",
  3901. "message": {
  3902. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3903. },
  3904. "locations": [
  3905. {
  3906. "physicalLocation": {
  3907. "artifactLocation": {
  3908. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3909. },
  3910. "region": {
  3911. "startLine": 213,
  3912. "startColumn": 9,
  3913. "endLine": 213,
  3914. "endColumn": 13
  3915. }
  3916. },
  3917. "logicalLocations": [
  3918. {
  3919. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@Uiter_t@hb_bit_set_invertible_t@@I@@QEBA?AUiter_t@hb_bit_set_invertible_t@@XZ",
  3920. "kind": "function"
  3921. }
  3922. ]
  3923. }
  3924. ]
  3925. },
  3926. {
  3927. "ruleId": "C6319",
  3928. "message": {
  3929. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  3930. },
  3931. "locations": [
  3932. {
  3933. "physicalLocation": {
  3934. "artifactLocation": {
  3935. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  3936. },
  3937. "region": {
  3938. "startLine": 213,
  3939. "startColumn": 9,
  3940. "endLine": 213,
  3941. "endColumn": 13
  3942. }
  3943. },
  3944. "logicalLocations": [
  3945. {
  3946. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUHBGlyphID16@OT@@@@AEBUHBGlyphID16@OT@@@@QEBA?AU?$hb_array_t@$$CBUHBGlyphID16@OT@@@@XZ",
  3947. "kind": "function"
  3948. }
  3949. ]
  3950. }
  3951. ]
  3952. },
  3953. {
  3954. "ruleId": "C6001",
  3955. "message": {
  3956. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  3957. },
  3958. "locations": [
  3959. {
  3960. "physicalLocation": {
  3961. "artifactLocation": {
  3962. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  3963. },
  3964. "region": {
  3965. "startLine": 52,
  3966. "startColumn": 12,
  3967. "endLine": 52,
  3968. "endColumn": 12
  3969. }
  3970. },
  3971. "logicalLocations": [
  3972. {
  3973. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_neg>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_neg>@@@Z",
  3974. "kind": "function"
  3975. }
  3976. ]
  3977. }
  3978. ],
  3979. "codeFlows": [
  3980. {
  3981. "threadFlows": [
  3982. {
  3983. "locations": [
  3984. {
  3985. "location": {
  3986. "physicalLocation": {
  3987. "artifactLocation": {
  3988. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  3989. },
  3990. "region": {
  3991. "startLine": 49,
  3992. "startColumn": 22
  3993. }
  3994. },
  3995. "message": {
  3996. "text": "\"r\" ist nicht initialisiert"
  3997. }
  3998. },
  3999. "kinds": [
  4000. "declaration"
  4001. ],
  4002. "importance": "essential"
  4003. },
  4004. {
  4005. "location": {
  4006. "physicalLocation": {
  4007. "artifactLocation": {
  4008. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4009. },
  4010. "region": {
  4011. "startLine": 50,
  4012. "startColumn": 23
  4013. }
  4014. }
  4015. },
  4016. "importance": "unimportant"
  4017. },
  4018. {
  4019. "location": {
  4020. "physicalLocation": {
  4021. "artifactLocation": {
  4022. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4023. },
  4024. "region": {
  4025. "startLine": 50,
  4026. "startColumn": 32
  4027. }
  4028. },
  4029. "message": {
  4030. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  4031. }
  4032. },
  4033. "kinds": [
  4034. "branch"
  4035. ],
  4036. "importance": "important"
  4037. },
  4038. {
  4039. "location": {
  4040. "physicalLocation": {
  4041. "artifactLocation": {
  4042. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4043. },
  4044. "region": {
  4045. "startLine": 52,
  4046. "startColumn": 5
  4047. }
  4048. }
  4049. },
  4050. "importance": "unimportant"
  4051. },
  4052. {
  4053. "location": {
  4054. "physicalLocation": {
  4055. "artifactLocation": {
  4056. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4057. },
  4058. "region": {
  4059. "startLine": 52,
  4060. "startColumn": 12
  4061. }
  4062. },
  4063. "message": {
  4064. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  4065. }
  4066. },
  4067. "kinds": [
  4068. "usage"
  4069. ],
  4070. "importance": "essential"
  4071. }
  4072. ]
  4073. }
  4074. ]
  4075. }
  4076. ]
  4077. },
  4078. {
  4079. "ruleId": "C6001",
  4080. "message": {
  4081. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  4082. },
  4083. "locations": [
  4084. {
  4085. "physicalLocation": {
  4086. "artifactLocation": {
  4087. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4088. },
  4089. "region": {
  4090. "startLine": 60,
  4091. "startColumn": 12,
  4092. "endLine": 60,
  4093. "endColumn": 12
  4094. }
  4095. },
  4096. "logicalLocations": [
  4097. {
  4098. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_xor>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_xor>@@AEBU0@@Z",
  4099. "kind": "function"
  4100. }
  4101. ]
  4102. }
  4103. ],
  4104. "codeFlows": [
  4105. {
  4106. "threadFlows": [
  4107. {
  4108. "locations": [
  4109. {
  4110. "location": {
  4111. "physicalLocation": {
  4112. "artifactLocation": {
  4113. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4114. },
  4115. "region": {
  4116. "startLine": 57,
  4117. "startColumn": 22
  4118. }
  4119. },
  4120. "message": {
  4121. "text": "\"r\" ist nicht initialisiert"
  4122. }
  4123. },
  4124. "kinds": [
  4125. "declaration"
  4126. ],
  4127. "importance": "essential"
  4128. },
  4129. {
  4130. "location": {
  4131. "physicalLocation": {
  4132. "artifactLocation": {
  4133. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4134. },
  4135. "region": {
  4136. "startLine": 58,
  4137. "startColumn": 23
  4138. }
  4139. }
  4140. },
  4141. "importance": "unimportant"
  4142. },
  4143. {
  4144. "location": {
  4145. "physicalLocation": {
  4146. "artifactLocation": {
  4147. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4148. },
  4149. "region": {
  4150. "startLine": 58,
  4151. "startColumn": 32
  4152. }
  4153. },
  4154. "message": {
  4155. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  4156. }
  4157. },
  4158. "kinds": [
  4159. "branch"
  4160. ],
  4161. "importance": "important"
  4162. },
  4163. {
  4164. "location": {
  4165. "physicalLocation": {
  4166. "artifactLocation": {
  4167. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4168. },
  4169. "region": {
  4170. "startLine": 60,
  4171. "startColumn": 5
  4172. }
  4173. }
  4174. },
  4175. "importance": "unimportant"
  4176. },
  4177. {
  4178. "location": {
  4179. "physicalLocation": {
  4180. "artifactLocation": {
  4181. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4182. },
  4183. "region": {
  4184. "startLine": 60,
  4185. "startColumn": 12
  4186. }
  4187. },
  4188. "message": {
  4189. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  4190. }
  4191. },
  4192. "kinds": [
  4193. "usage"
  4194. ],
  4195. "importance": "essential"
  4196. }
  4197. ]
  4198. }
  4199. ]
  4200. }
  4201. ]
  4202. },
  4203. {
  4204. "ruleId": "C6001",
  4205. "message": {
  4206. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  4207. },
  4208. "locations": [
  4209. {
  4210. "physicalLocation": {
  4211. "artifactLocation": {
  4212. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4213. },
  4214. "region": {
  4215. "startLine": 60,
  4216. "startColumn": 12,
  4217. "endLine": 60,
  4218. "endColumn": 12
  4219. }
  4220. },
  4221. "logicalLocations": [
  4222. {
  4223. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_and>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_and>@@AEBU0@@Z",
  4224. "kind": "function"
  4225. }
  4226. ]
  4227. }
  4228. ],
  4229. "codeFlows": [
  4230. {
  4231. "threadFlows": [
  4232. {
  4233. "locations": [
  4234. {
  4235. "location": {
  4236. "physicalLocation": {
  4237. "artifactLocation": {
  4238. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4239. },
  4240. "region": {
  4241. "startLine": 57,
  4242. "startColumn": 22
  4243. }
  4244. },
  4245. "message": {
  4246. "text": "\"r\" ist nicht initialisiert"
  4247. }
  4248. },
  4249. "kinds": [
  4250. "declaration"
  4251. ],
  4252. "importance": "essential"
  4253. },
  4254. {
  4255. "location": {
  4256. "physicalLocation": {
  4257. "artifactLocation": {
  4258. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4259. },
  4260. "region": {
  4261. "startLine": 58,
  4262. "startColumn": 23
  4263. }
  4264. }
  4265. },
  4266. "importance": "unimportant"
  4267. },
  4268. {
  4269. "location": {
  4270. "physicalLocation": {
  4271. "artifactLocation": {
  4272. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4273. },
  4274. "region": {
  4275. "startLine": 58,
  4276. "startColumn": 32
  4277. }
  4278. },
  4279. "message": {
  4280. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  4281. }
  4282. },
  4283. "kinds": [
  4284. "branch"
  4285. ],
  4286. "importance": "important"
  4287. },
  4288. {
  4289. "location": {
  4290. "physicalLocation": {
  4291. "artifactLocation": {
  4292. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4293. },
  4294. "region": {
  4295. "startLine": 60,
  4296. "startColumn": 5
  4297. }
  4298. }
  4299. },
  4300. "importance": "unimportant"
  4301. },
  4302. {
  4303. "location": {
  4304. "physicalLocation": {
  4305. "artifactLocation": {
  4306. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4307. },
  4308. "region": {
  4309. "startLine": 60,
  4310. "startColumn": 12
  4311. }
  4312. },
  4313. "message": {
  4314. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  4315. }
  4316. },
  4317. "kinds": [
  4318. "usage"
  4319. ],
  4320. "importance": "essential"
  4321. }
  4322. ]
  4323. }
  4324. ]
  4325. }
  4326. ]
  4327. },
  4328. {
  4329. "ruleId": "C6001",
  4330. "message": {
  4331. "text": "Nicht initialisierter Speicher \"r\" wird verwendet."
  4332. },
  4333. "locations": [
  4334. {
  4335. "physicalLocation": {
  4336. "artifactLocation": {
  4337. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4338. },
  4339. "region": {
  4340. "startLine": 60,
  4341. "startColumn": 12,
  4342. "endLine": 60,
  4343. "endColumn": 12
  4344. }
  4345. },
  4346. "logicalLocations": [
  4347. {
  4348. "decoratedName": "??$process@U<unnamed-type-hb_bitwise_or>@@@?$hb_vector_size_t@_K$0EA@@@QEBA?AU0@AEBU<unnamed-type-hb_bitwise_or>@@AEBU0@@Z",
  4349. "kind": "function"
  4350. }
  4351. ]
  4352. }
  4353. ],
  4354. "codeFlows": [
  4355. {
  4356. "threadFlows": [
  4357. {
  4358. "locations": [
  4359. {
  4360. "location": {
  4361. "physicalLocation": {
  4362. "artifactLocation": {
  4363. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4364. },
  4365. "region": {
  4366. "startLine": 57,
  4367. "startColumn": 22
  4368. }
  4369. },
  4370. "message": {
  4371. "text": "\"r\" ist nicht initialisiert"
  4372. }
  4373. },
  4374. "kinds": [
  4375. "declaration"
  4376. ],
  4377. "importance": "essential"
  4378. },
  4379. {
  4380. "location": {
  4381. "physicalLocation": {
  4382. "artifactLocation": {
  4383. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4384. },
  4385. "region": {
  4386. "startLine": 58,
  4387. "startColumn": 23
  4388. }
  4389. }
  4390. },
  4391. "importance": "unimportant"
  4392. },
  4393. {
  4394. "location": {
  4395. "physicalLocation": {
  4396. "artifactLocation": {
  4397. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4398. },
  4399. "region": {
  4400. "startLine": 58,
  4401. "startColumn": 32
  4402. }
  4403. },
  4404. "message": {
  4405. "text": "Diese Schleife überspringen (Annahme: \"i<ARRAY_LENGTH(*this->v)\" ist false)"
  4406. }
  4407. },
  4408. "kinds": [
  4409. "branch"
  4410. ],
  4411. "importance": "important"
  4412. },
  4413. {
  4414. "location": {
  4415. "physicalLocation": {
  4416. "artifactLocation": {
  4417. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4418. },
  4419. "region": {
  4420. "startLine": 60,
  4421. "startColumn": 5
  4422. }
  4423. }
  4424. },
  4425. "importance": "unimportant"
  4426. },
  4427. {
  4428. "location": {
  4429. "physicalLocation": {
  4430. "artifactLocation": {
  4431. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4432. },
  4433. "region": {
  4434. "startLine": 60,
  4435. "startColumn": 12
  4436. }
  4437. },
  4438. "message": {
  4439. "text": "\"r\" wird verwendet, wurde jedoch möglicherweise nicht initialisiert."
  4440. }
  4441. },
  4442. "kinds": [
  4443. "usage"
  4444. ],
  4445. "importance": "essential"
  4446. }
  4447. ]
  4448. }
  4449. ]
  4450. }
  4451. ]
  4452. },
  4453. {
  4454. "ruleId": "C26495",
  4455. "message": {
  4456. "text": "Die Variable \"AAT::KerxSubTableFormat1<OT::KernOTSubTableHeader>::driver_context_t::stack\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4457. },
  4458. "locations": [
  4459. {
  4460. "physicalLocation": {
  4461. "artifactLocation": {
  4462. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-kerx-table.hh"
  4463. },
  4464. "region": {
  4465. "startLine": 219,
  4466. "startColumn": 5,
  4467. "endLine": 219,
  4468. "endColumn": 5
  4469. }
  4470. },
  4471. "logicalLocations": [
  4472. {
  4473. "decoratedName": "??0driver_context_t@?$KerxSubTableFormat1@UKernOTSubTableHeader@OT@@@AAT@@QEAA@PEBU12@PEAUfzhb_aat_apply_context_t@2@@Z",
  4474. "kind": "function"
  4475. }
  4476. ]
  4477. }
  4478. ],
  4479. "properties": {
  4480. "targetSymbol": "AAT::KerxSubTableFormat1<OT::KernOTSubTableHeader>::driver_context_t::stack"
  4481. }
  4482. },
  4483. {
  4484. "ruleId": "C26495",
  4485. "message": {
  4486. "text": "Die Variable \"AAT::KerxSubTableFormat1<OT::KernAATSubTableHeader>::driver_context_t::stack\" ist nicht initialisiert. Eine Membervariable muss immer initialisiert werden (type.6)."
  4487. },
  4488. "locations": [
  4489. {
  4490. "physicalLocation": {
  4491. "artifactLocation": {
  4492. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-kerx-table.hh"
  4493. },
  4494. "region": {
  4495. "startLine": 219,
  4496. "startColumn": 5,
  4497. "endLine": 219,
  4498. "endColumn": 5
  4499. }
  4500. },
  4501. "logicalLocations": [
  4502. {
  4503. "decoratedName": "??0driver_context_t@?$KerxSubTableFormat1@UKernAATSubTableHeader@OT@@@AAT@@QEAA@PEBU12@PEAUfzhb_aat_apply_context_t@2@@Z",
  4504. "kind": "function"
  4505. }
  4506. ]
  4507. }
  4508. ],
  4509. "properties": {
  4510. "targetSymbol": "AAT::KerxSubTableFormat1<OT::KernAATSubTableHeader>::driver_context_t::stack"
  4511. }
  4512. },
  4513. {
  4514. "ruleId": "C6319",
  4515. "message": {
  4516. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4517. },
  4518. "locations": [
  4519. {
  4520. "physicalLocation": {
  4521. "artifactLocation": {
  4522. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4523. },
  4524. "region": {
  4525. "startLine": 213,
  4526. "startColumn": 9,
  4527. "endLine": 213,
  4528. "endColumn": 13
  4529. }
  4530. },
  4531. "logicalLocations": [
  4532. {
  4533. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$OffsetTo@U?$RuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@AEBU?$OffsetTo@U?$RuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$OffsetTo@U?$RuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@XZ",
  4534. "kind": "function"
  4535. }
  4536. ]
  4537. }
  4538. ]
  4539. },
  4540. {
  4541. "ruleId": "C6319",
  4542. "message": {
  4543. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4544. },
  4545. "locations": [
  4546. {
  4547. "physicalLocation": {
  4548. "artifactLocation": {
  4549. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4550. },
  4551. "region": {
  4552. "startLine": 213,
  4553. "startColumn": 9,
  4554. "endLine": 213,
  4555. "endColumn": 13
  4556. }
  4557. },
  4558. "logicalLocations": [
  4559. {
  4560. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$OffsetTo@U?$ChainRuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@AEBU?$OffsetTo@U?$ChainRuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$OffsetTo@U?$ChainRuleSet@USmallTypes@Layout@OT@@@OT@@U?$IntType@G$01@2@$00@OT@@@@XZ",
  4561. "kind": "function"
  4562. }
  4563. ]
  4564. }
  4565. ]
  4566. },
  4567. {
  4568. "ruleId": "C6319",
  4569. "message": {
  4570. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4571. },
  4572. "locations": [
  4573. {
  4574. "physicalLocation": {
  4575. "artifactLocation": {
  4576. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4577. },
  4578. "region": {
  4579. "startLine": 213,
  4580. "startColumn": 9,
  4581. "endLine": 213,
  4582. "endColumn": 13
  4583. }
  4584. },
  4585. "logicalLocations": [
  4586. {
  4587. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$OffsetTo@U?$PairSet@USmallTypes@Layout@OT@@@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@AEBU?$OffsetTo@U?$PairSet@USmallTypes@Layout@OT@@@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$OffsetTo@U?$PairSet@USmallTypes@Layout@OT@@@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@XZ",
  4588. "kind": "function"
  4589. }
  4590. ]
  4591. }
  4592. ]
  4593. },
  4594. {
  4595. "ruleId": "C6319",
  4596. "message": {
  4597. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4598. },
  4599. "locations": [
  4600. {
  4601. "physicalLocation": {
  4602. "artifactLocation": {
  4603. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4604. },
  4605. "region": {
  4606. "startLine": 213,
  4607. "startColumn": 9,
  4608. "endLine": 213,
  4609. "endColumn": 13
  4610. }
  4611. },
  4612. "logicalLocations": [
  4613. {
  4614. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBUMarkRecord@GPOS_impl@Layout@OT@@@@AEBUMarkRecord@GPOS_impl@Layout@OT@@@@QEBA?AU?$hb_array_t@$$CBUMarkRecord@GPOS_impl@Layout@OT@@@@XZ",
  4615. "kind": "function"
  4616. }
  4617. ]
  4618. }
  4619. ]
  4620. },
  4621. {
  4622. "ruleId": "C26800",
  4623. "message": {
  4624. "text": "Verwendung eines moved-from-Objekts: ''(*<ds_1>)'' (lifetime.1)."
  4625. },
  4626. "locations": [
  4627. {
  4628. "physicalLocation": {
  4629. "artifactLocation": {
  4630. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  4631. },
  4632. "region": {
  4633. "startLine": 729,
  4634. "startColumn": 11,
  4635. "endLine": 729,
  4636. "endColumn": 11
  4637. }
  4638. },
  4639. "logicalLocations": [
  4640. {
  4641. "decoratedName": "??$sanitize@PEBU?$List16OfOffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@@OT@@I@?$ArrayOf@U?$OffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@U?$IntType@G$01@2@@OT@@QEBA_NPEAUhb_sanitize_context_t@@$$QEAPEBU?$List16OfOffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@@1@$$QEAI@Z",
  4642. "kind": "function"
  4643. }
  4644. ]
  4645. }
  4646. ],
  4647. "codeFlows": [
  4648. {
  4649. "threadFlows": [
  4650. {
  4651. "locations": [
  4652. {
  4653. "location": {
  4654. "physicalLocation": {
  4655. "artifactLocation": {
  4656. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  4657. },
  4658. "region": {
  4659. "startLine": 729,
  4660. "startColumn": 11
  4661. }
  4662. }
  4663. },
  4664. "importance": "important"
  4665. }
  4666. ]
  4667. }
  4668. ]
  4669. }
  4670. ]
  4671. },
  4672. {
  4673. "ruleId": "C6319",
  4674. "message": {
  4675. "text": "Bei Verwendung des Komma-Operators in einem getesteten Ausdrucks wird das linke Argument ignoriert, wenn es keine Nebeneffekte hat."
  4676. },
  4677. "locations": [
  4678. {
  4679. "physicalLocation": {
  4680. "artifactLocation": {
  4681. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  4682. },
  4683. "region": {
  4684. "startLine": 213,
  4685. "startColumn": 9,
  4686. "endLine": 213,
  4687. "endColumn": 13
  4688. }
  4689. },
  4690. "logicalLocations": [
  4691. {
  4692. "decoratedName": "?__end__@?$hb_iter_fallback_mixin_t@U?$hb_array_t@$$CBU?$OffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@AEBU?$OffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@QEBA?AU?$hb_array_t@$$CBU?$OffsetTo@UAnchorMatrix@GPOS_impl@Layout@OT@@U?$IntType@G$01@4@$00@OT@@@@XZ",
  4693. "kind": "function"
  4694. }
  4695. ]
  4696. }
  4697. ]
  4698. }
  4699. ],
  4700. "tool": {
  4701. "driver": {
  4702. "name": "PREfast",
  4703. "fullName": "PREfast Code Analysis",
  4704. "version": "14.29.30159.0",
  4705. "informationUri": "https://aka.ms/cpp/ca"
  4706. }
  4707. },
  4708. "invocations": [
  4709. {
  4710. "commandLine": "D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\c1xx.dll -ACf{1F7B090C-16DB-4822-966A-A93D26ED4681} -ACpmspft140.dll -Alint -D_PREFAST_ -D_AST_FE_ -Analyze -zm0x00007FF62CE9FC60 -il C:\\Users\\wruser\\AppData\\Local\\Temp\\_CL_d4b6c014ast -typedil -f ..\\..\\thirdparty\\harfbuzz\\src\\hb-ot-layout.cc -Ze -D_MSC_EXTENSIONS -Zp16 -pc \\:/ -D_MSC_VER=1929 -D_MSC_FULL_VER=192930159 -D_MSC_BUILD=0 -D_M_AMD64=100 -ZILP448 -D_M_X64=100 -D_WIN64 -D_WIN32 -GR -D_CPPRTTI -I C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\thirdparty\\freetype\\include -nologo -W 3 -diagnostics:column -GF -Og -Ot -Oy -Oi -ltcg -DCODE_ANALYSIS -DWIN64 -DNDEBUG -D_CRT_SECURE_NO_WARNINGS -DHB_NO_MT -Dhb_malloc_impl=fz_hb_malloc -Dhb_calloc_impl=fz_hb_calloc -Dhb_realloc_impl=fz_hb_realloc -Dhb_free_impl=fz_hb_free -DHAVE_FREETYPE -D_MBCS -EHs -D_CPPUNWIND -EHc -MD -D_MT -D_DLL -GS -D_M_FP_PRECISE -Zc:wchar_t -Zc:forScope -Fox64\\Release\\libharfbuzz\\hb-ot-layout.obj -Fdx64\\Release\\libharfbuzz.pdb -external:W 3 -Gd -wd 4018 -wd 4244 -wd 4146 -wd 4267 -analyze:projectdirectory C:\\Users\\wruser\\source\\repos\\SharpMuPDF\\mupdf\\platform\\win32 -analyze:rulesetdirectory ;D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\\\Rule Sets; -analyze:ruleset D:\\Programme\\VS2022\\Team Tools\\Static Analysis Tools\\Rule Sets\\NativeRecommendedRules.ruleset -analyze:quiet -analyze:plugin D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\bin\\HostX64\\x64\\EspXEngine.dll -FC -errorreport:prompt -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\include -external:I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -I D:\\Programme\\VS2022\\VC\\Tools\\MSVC\\14.29.30133\\atlmfc\\include -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\ucrt -external:I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -I D:\\Programme\\VS2022\\VC\\Auxiliary\\VS\\UnitTest\\include -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\winrt -external:I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -I C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\cppwinrt -external:I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um -I C:\\Program Files (x86)\\Windows Kits\\NETFXSDK\\4.8\\Include\\um",
  4711. "executionSuccessful": true
  4712. }
  4713. ],
  4714. "artifacts": [
  4715. {
  4716. "location": {
  4717. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-map.hh"
  4718. },
  4719. "roles": [
  4720. "resultFile"
  4721. ],
  4722. "hashes": {
  4723. "md5": "ff5a8277d5fcb14cbcc2b5e06feda4f6"
  4724. }
  4725. },
  4726. {
  4727. "location": {
  4728. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set.hh"
  4729. },
  4730. "roles": [
  4731. "resultFile"
  4732. ],
  4733. "hashes": {
  4734. "md5": "328ea1e7c279bd128f8d02e53b3c69b8"
  4735. }
  4736. },
  4737. {
  4738. "location": {
  4739. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-set-invertible.hh"
  4740. },
  4741. "roles": [
  4742. "resultFile"
  4743. ],
  4744. "hashes": {
  4745. "md5": "b2a484c8afaf6a6642f15c165c53e321"
  4746. }
  4747. },
  4748. {
  4749. "location": {
  4750. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-set.hh"
  4751. },
  4752. "roles": [
  4753. "resultFile"
  4754. ],
  4755. "hashes": {
  4756. "md5": "6071d676b81588f3cab4f0cb54b35ba4"
  4757. }
  4758. },
  4759. {
  4760. "location": {
  4761. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-subset-plan.hh"
  4762. },
  4763. "roles": [
  4764. "resultFile"
  4765. ],
  4766. "hashes": {
  4767. "md5": "8069474abf527e6766a557ec56acd85b"
  4768. }
  4769. },
  4770. {
  4771. "location": {
  4772. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-map.cc"
  4773. },
  4774. "roles": [
  4775. "analysisTarget",
  4776. "resultFile"
  4777. ],
  4778. "hashes": {
  4779. "md5": "e32990aced6a7aca7a5d4d13eeecea21"
  4780. }
  4781. },
  4782. {
  4783. "location": {
  4784. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-vector.hh"
  4785. },
  4786. "roles": [
  4787. "resultFile"
  4788. ],
  4789. "hashes": {
  4790. "md5": "c61e323648e53704f465c3fee7b18ce4"
  4791. }
  4792. },
  4793. {
  4794. "location": {
  4795. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-bit-page.hh"
  4796. },
  4797. "roles": [
  4798. "resultFile"
  4799. ],
  4800. "hashes": {
  4801. "md5": "556630f4a504776f82f927c0a7f1de43"
  4802. }
  4803. },
  4804. {
  4805. "location": {
  4806. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.hh"
  4807. },
  4808. "hashes": {
  4809. "md5": "9e83818e264776a5a039633ad0af7e40"
  4810. }
  4811. },
  4812. {
  4813. "location": {
  4814. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-config.hh"
  4815. },
  4816. "hashes": {
  4817. "md5": "72e9b9ac69b98f07a023615f6a20fa88"
  4818. }
  4819. },
  4820. {
  4821. "location": {
  4822. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb.h"
  4823. },
  4824. "hashes": {
  4825. "md5": "a71dddd9ceffbe9ad7735e965fa31fa4"
  4826. }
  4827. },
  4828. {
  4829. "location": {
  4830. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.h"
  4831. },
  4832. "hashes": {
  4833. "md5": "150c53768a43873da08b8fe485f31b11"
  4834. }
  4835. },
  4836. {
  4837. "location": {
  4838. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-common.h"
  4839. },
  4840. "hashes": {
  4841. "md5": "6d34414d1aa6c8312eb518eb5e089698"
  4842. }
  4843. },
  4844. {
  4845. "location": {
  4846. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-rename.h"
  4847. },
  4848. "hashes": {
  4849. "md5": "cdc9086001bbf18983525796b95a3a32"
  4850. }
  4851. },
  4852. {
  4853. "location": {
  4854. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.h"
  4855. },
  4856. "hashes": {
  4857. "md5": "280ee9b0cc5e21dfb997fe5e1a4fd92d"
  4858. }
  4859. },
  4860. {
  4861. "location": {
  4862. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.h"
  4863. },
  4864. "hashes": {
  4865. "md5": "7e94d2c5e3e1a7af4804b15af817f5dd"
  4866. }
  4867. },
  4868. {
  4869. "location": {
  4870. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.h"
  4871. },
  4872. "hashes": {
  4873. "md5": "a2621e17ead0c30af0c1018708c64c34"
  4874. }
  4875. },
  4876. {
  4877. "location": {
  4878. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.h"
  4879. },
  4880. "hashes": {
  4881. "md5": "f55b5e142357c36cb7f2b58d24f2d88c"
  4882. }
  4883. },
  4884. {
  4885. "location": {
  4886. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set.h"
  4887. },
  4888. "hashes": {
  4889. "md5": "20a8f4c0626c2b2d6d73e0a04cd3d017"
  4890. }
  4891. },
  4892. {
  4893. "location": {
  4894. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-draw.h"
  4895. },
  4896. "hashes": {
  4897. "md5": "917b2456c4d3228be5ff3d5aab59e884"
  4898. }
  4899. },
  4900. {
  4901. "location": {
  4902. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-deprecated.h"
  4903. },
  4904. "hashes": {
  4905. "md5": "d779af772cc5ede9ddba22cb607ab06c"
  4906. }
  4907. },
  4908. {
  4909. "location": {
  4910. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-map.h"
  4911. },
  4912. "hashes": {
  4913. "md5": "654598015cf2ffd6992e511c67d77617"
  4914. }
  4915. },
  4916. {
  4917. "location": {
  4918. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape.h"
  4919. },
  4920. "hashes": {
  4921. "md5": "bb4be6a7031101fd4a62ae8c7d4c5000"
  4922. }
  4923. },
  4924. {
  4925. "location": {
  4926. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.h"
  4927. },
  4928. "hashes": {
  4929. "md5": "e8eac4b976461e1038c585d8fceec10b"
  4930. }
  4931. },
  4932. {
  4933. "location": {
  4934. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-style.h"
  4935. },
  4936. "hashes": {
  4937. "md5": "e5060f7cbf3cdf79a1e907601c33066a"
  4938. }
  4939. },
  4940. {
  4941. "location": {
  4942. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-version.h"
  4943. },
  4944. "hashes": {
  4945. "md5": "2ce6fb47c095f534d1aaec73565e454a"
  4946. }
  4947. },
  4948. {
  4949. "location": {
  4950. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot.h"
  4951. },
  4952. "hashes": {
  4953. "md5": "88b79a72bc7fe966bb770648ea55587e"
  4954. }
  4955. },
  4956. {
  4957. "location": {
  4958. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-color.h"
  4959. },
  4960. "hashes": {
  4961. "md5": "7a60ba0967b0441b9991a0cbca31810b"
  4962. }
  4963. },
  4964. {
  4965. "location": {
  4966. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name.h"
  4967. },
  4968. "hashes": {
  4969. "md5": "d5811ae99bfc284dc9e98ba3172b1119"
  4970. }
  4971. },
  4972. {
  4973. "location": {
  4974. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-deprecated.h"
  4975. },
  4976. "hashes": {
  4977. "md5": "7f05c4d984f2283941c955dc59be58ed"
  4978. }
  4979. },
  4980. {
  4981. "location": {
  4982. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-font.h"
  4983. },
  4984. "hashes": {
  4985. "md5": "d7ee1240d446af9d1b24937b8ebd74de"
  4986. }
  4987. },
  4988. {
  4989. "location": {
  4990. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.h"
  4991. },
  4992. "hashes": {
  4993. "md5": "e71405022c21180bb9fe727aa758cd29"
  4994. }
  4995. },
  4996. {
  4997. "location": {
  4998. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-math.h"
  4999. },
  5000. "hashes": {
  5001. "md5": "0da4f3b18ba2317ac94ae697e7fc9a81"
  5002. }
  5003. },
  5004. {
  5005. "location": {
  5006. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-meta.h"
  5007. },
  5008. "hashes": {
  5009. "md5": "7036bc3baf74206ebefe43d2004fac13"
  5010. }
  5011. },
  5012. {
  5013. "location": {
  5014. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-metrics.h"
  5015. },
  5016. "hashes": {
  5017. "md5": "afb89348296fe25677fd13a8e1fab75c"
  5018. }
  5019. },
  5020. {
  5021. "location": {
  5022. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.h"
  5023. },
  5024. "hashes": {
  5025. "md5": "9e959af0731f2bdcc3f12fc93cf6fc83"
  5026. }
  5027. },
  5028. {
  5029. "location": {
  5030. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-var.h"
  5031. },
  5032. "hashes": {
  5033. "md5": "1f00f7feb631ffad88770150180e67b2"
  5034. }
  5035. },
  5036. {
  5037. "location": {
  5038. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat.h"
  5039. },
  5040. "hashes": {
  5041. "md5": "0c8d18fc93cb1113eacb718e4ba198fe"
  5042. }
  5043. },
  5044. {
  5045. "location": {
  5046. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.h"
  5047. },
  5048. "hashes": {
  5049. "md5": "4b4a1524be1b795c0704d88437c3aca3"
  5050. }
  5051. },
  5052. {
  5053. "location": {
  5054. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-cplusplus.hh"
  5055. },
  5056. "roles": [
  5057. "resultFile"
  5058. ],
  5059. "hashes": {
  5060. "md5": "cc6ecf9b201913bfc4f25c97e91afbfa"
  5061. }
  5062. },
  5063. {
  5064. "location": {
  5065. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-meta.hh"
  5066. },
  5067. "hashes": {
  5068. "md5": "24131b8ef7b63f8257bd7f45fbeb32c6"
  5069. }
  5070. },
  5071. {
  5072. "location": {
  5073. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-mutex.hh"
  5074. },
  5075. "hashes": {
  5076. "md5": "99002e53372a94ec3f8c4ee03e753501"
  5077. }
  5078. },
  5079. {
  5080. "location": {
  5081. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-number.hh"
  5082. },
  5083. "hashes": {
  5084. "md5": "f80eb7a71558c6caeab4bf03cf3a7413"
  5085. }
  5086. },
  5087. {
  5088. "location": {
  5089. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-atomic.hh"
  5090. },
  5091. "hashes": {
  5092. "md5": "951183c1ed2181c1d42da812d09215d5"
  5093. }
  5094. },
  5095. {
  5096. "location": {
  5097. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-null.hh"
  5098. },
  5099. "hashes": {
  5100. "md5": "060426e619ef484f2b13a79544199615"
  5101. }
  5102. },
  5103. {
  5104. "location": {
  5105. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-algs.hh"
  5106. },
  5107. "hashes": {
  5108. "md5": "db4f6801f6deef0087e10e6e12315333"
  5109. }
  5110. },
  5111. {
  5112. "location": {
  5113. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-iter.hh"
  5114. },
  5115. "roles": [
  5116. "resultFile"
  5117. ],
  5118. "hashes": {
  5119. "md5": "8b8487829b25e2959f69e16f4e9eb104"
  5120. }
  5121. },
  5122. {
  5123. "location": {
  5124. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-debug.hh"
  5125. },
  5126. "hashes": {
  5127. "md5": "e04bd31cda6612ff06cce01d05304d32"
  5128. }
  5129. },
  5130. {
  5131. "location": {
  5132. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-array.hh"
  5133. },
  5134. "hashes": {
  5135. "md5": "8e209d94f950caa65d412ee8bde3f363"
  5136. }
  5137. },
  5138. {
  5139. "location": {
  5140. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-object.hh"
  5141. },
  5142. "hashes": {
  5143. "md5": "6153e989de17517cbccbfc32f6a96c2f"
  5144. }
  5145. },
  5146. {
  5147. "location": {
  5148. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-map.hh"
  5149. },
  5150. "hashes": {
  5151. "md5": "a7844bbe78b172a6055ed833c319c1dc"
  5152. }
  5153. },
  5154. {
  5155. "location": {
  5156. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-buffer.hh"
  5157. },
  5158. "roles": [
  5159. "resultFile"
  5160. ],
  5161. "hashes": {
  5162. "md5": "353126bead1e62cae5810c1e8fccbb19"
  5163. }
  5164. },
  5165. {
  5166. "location": {
  5167. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-unicode.hh"
  5168. },
  5169. "hashes": {
  5170. "md5": "16f1d95ff99040ed89da6afca082692e"
  5171. }
  5172. },
  5173. {
  5174. "location": {
  5175. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-set-digest.hh"
  5176. },
  5177. "hashes": {
  5178. "md5": "fc2d66eec3097c40c2c9869ea2a9ffa0"
  5179. }
  5180. },
  5181. {
  5182. "location": {
  5183. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-machinery.hh"
  5184. },
  5185. "hashes": {
  5186. "md5": "73d07cdd5dab7386ffb6cc0d01a97345"
  5187. }
  5188. },
  5189. {
  5190. "location": {
  5191. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-blob.hh"
  5192. },
  5193. "hashes": {
  5194. "md5": "3c8f2b1cfb0b66349f2bd7ce23523cd3"
  5195. }
  5196. },
  5197. {
  5198. "location": {
  5199. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-dispatch.hh"
  5200. },
  5201. "hashes": {
  5202. "md5": "241177eed3ec267287217798e8d1a58d"
  5203. }
  5204. },
  5205. {
  5206. "location": {
  5207. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-sanitize.hh"
  5208. },
  5209. "hashes": {
  5210. "md5": "188b6afcc937febb86d0ccfbca27de13"
  5211. }
  5212. },
  5213. {
  5214. "location": {
  5215. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-serialize.hh"
  5216. },
  5217. "hashes": {
  5218. "md5": "177a2f10f3f39c8d62b856177bcf27e2"
  5219. }
  5220. },
  5221. {
  5222. "location": {
  5223. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-pool.hh"
  5224. },
  5225. "hashes": {
  5226. "md5": "2b8edc0ca91f650a204d58a41b08b907"
  5227. }
  5228. },
  5229. {
  5230. "location": {
  5231. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-shape.hh"
  5232. },
  5233. "hashes": {
  5234. "md5": "4bbcb40517826ccbe9c2cbf903f5ad2f"
  5235. }
  5236. },
  5237. {
  5238. "location": {
  5239. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-map.hh"
  5240. },
  5241. "hashes": {
  5242. "md5": "b21571cf9c50d022046d38338b608655"
  5243. }
  5244. },
  5245. {
  5246. "location": {
  5247. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.hh"
  5248. },
  5249. "hashes": {
  5250. "md5": "a446739860d83b5ccca95b4f2523c6c6"
  5251. }
  5252. },
  5253. {
  5254. "location": {
  5255. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-font.hh"
  5256. },
  5257. "hashes": {
  5258. "md5": "d44aee950fcb503187e9b13c8563875d"
  5259. }
  5260. },
  5261. {
  5262. "location": {
  5263. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-face.hh"
  5264. },
  5265. "hashes": {
  5266. "md5": "af006f8e6b4598a6997b531d6a2bcf3a"
  5267. }
  5268. },
  5269. {
  5270. "location": {
  5271. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper.hh"
  5272. },
  5273. "hashes": {
  5274. "md5": "1e85a9a61d4c84ad83a92ca2f9dabb31"
  5275. }
  5276. },
  5277. {
  5278. "location": {
  5279. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shaper-list.hh"
  5280. },
  5281. "hashes": {
  5282. "md5": "7b2ff6cdaf723facbc3bf755a21d0493"
  5283. }
  5284. },
  5285. {
  5286. "location": {
  5287. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-shape-plan.hh"
  5288. },
  5289. "hashes": {
  5290. "md5": "9aac62480877c6bc8123a9db028c168e"
  5291. }
  5292. },
  5293. {
  5294. "location": {
  5295. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face.hh"
  5296. },
  5297. "hashes": {
  5298. "md5": "263c856b357733232aec1f15d07df495"
  5299. }
  5300. },
  5301. {
  5302. "location": {
  5303. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-face-table-list.hh"
  5304. },
  5305. "hashes": {
  5306. "md5": "ec044f287821ff4092a947c833c26ec9"
  5307. }
  5308. },
  5309. {
  5310. "location": {
  5311. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-open-type.hh"
  5312. },
  5313. "roles": [
  5314. "resultFile"
  5315. ],
  5316. "hashes": {
  5317. "md5": "4c330fba65301df988cb2939d3dffa35"
  5318. }
  5319. },
  5320. {
  5321. "location": {
  5322. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.hh"
  5323. },
  5324. "hashes": {
  5325. "md5": "25c6ff571fa13a6dbf66d4ef05cb5896"
  5326. }
  5327. },
  5328. {
  5329. "location": {
  5330. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset.h"
  5331. },
  5332. "hashes": {
  5333. "md5": "eeee85824ec99c2c18127bd7db14f692"
  5334. }
  5335. },
  5336. {
  5337. "location": {
  5338. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-input.hh"
  5339. },
  5340. "hashes": {
  5341. "md5": "f2c75216169b71f344f7adbea0941b4d"
  5342. }
  5343. },
  5344. {
  5345. "location": {
  5346. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-subset-accelerator.hh"
  5347. },
  5348. "hashes": {
  5349. "md5": "ba12ab09aee1fb822ba02eb799a10522"
  5350. }
  5351. },
  5352. {
  5353. "location": {
  5354. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-multimap.hh"
  5355. },
  5356. "hashes": {
  5357. "md5": "1fb05badd1865ed9c8eb34899de34279"
  5358. }
  5359. },
  5360. {
  5361. "location": {
  5362. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-bimap.hh"
  5363. },
  5364. "hashes": {
  5365. "md5": "3236cfed6d09c1a8b030ba667bb8b41f"
  5366. }
  5367. },
  5368. {
  5369. "location": {
  5370. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/Common/Coverage.hh"
  5371. },
  5372. "roles": [
  5373. "resultFile"
  5374. ],
  5375. "hashes": {
  5376. "md5": "d830c78a0d4bd3f6f789d2fc96fde11d"
  5377. }
  5378. },
  5379. {
  5380. "location": {
  5381. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsubgpos.hh"
  5382. },
  5383. "roles": [
  5384. "resultFile"
  5385. ],
  5386. "hashes": {
  5387. "md5": "e2ac9b05249c15a50ef91e5ab6466279"
  5388. }
  5389. },
  5390. {
  5391. "location": {
  5392. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-table.hh"
  5393. },
  5394. "roles": [
  5395. "resultFile"
  5396. ],
  5397. "hashes": {
  5398. "md5": "a4588d624a9192615a0ba6e1ff90d077"
  5399. }
  5400. },
  5401. {
  5402. "location": {
  5403. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh"
  5404. },
  5405. "roles": [
  5406. "resultFile"
  5407. ],
  5408. "hashes": {
  5409. "md5": "f52ad3a43931b7c0fc91cc8827897691"
  5410. }
  5411. },
  5412. {
  5413. "location": {
  5414. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-common.hh"
  5415. },
  5416. "roles": [
  5417. "resultFile"
  5418. ],
  5419. "hashes": {
  5420. "md5": "1f2f19e20ede933ed209b3c74eb5f1cd"
  5421. }
  5422. },
  5423. {
  5424. "location": {
  5425. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/OT/Layout/GPOS/SinglePos.hh"
  5426. },
  5427. "roles": [
  5428. "resultFile"
  5429. ],
  5430. "hashes": {
  5431. "md5": "b8da2baf30f3c40f5a9a27e64ccb8232"
  5432. }
  5433. },
  5434. {
  5435. "location": {
  5436. "uri": "file:///C:/Users/wruser/source/repos/SharpMuPDF/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-kerx-table.hh"
  5437. },
  5438. "roles": [
  5439. "resultFile"
  5440. ],
  5441. "hashes": {
  5442. "md5": "dca0a1672055b36f5ace45ab4b191589"
  5443. }
  5444. },
  5445. {
  5446. "location": {
  5447. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout.cc"
  5448. },
  5449. "roles": [
  5450. "analysisTarget"
  5451. ],
  5452. "hashes": {
  5453. "md5": "24be1e958344bf3d9cb51cd1d647a3f9"
  5454. }
  5455. },
  5456. {
  5457. "location": {
  5458. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-kern-table.hh"
  5459. },
  5460. "hashes": {
  5461. "md5": "ad9dc6fa0fd2192ff7afc5e917c2e4ff"
  5462. }
  5463. },
  5464. {
  5465. "location": {
  5466. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-kern.hh"
  5467. },
  5468. "hashes": {
  5469. "md5": "9989c9bd9a9c9981fd17b46856e9e07c"
  5470. }
  5471. },
  5472. {
  5473. "location": {
  5474. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-common.hh"
  5475. },
  5476. "hashes": {
  5477. "md5": "6cfdd3e97f43fc4f974ce475360d1a08"
  5478. }
  5479. },
  5480. {
  5481. "location": {
  5482. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout.hh"
  5483. },
  5484. "hashes": {
  5485. "md5": "cb5219ebbbb85ab984dcbf4cd9a4eb90"
  5486. }
  5487. },
  5488. {
  5489. "location": {
  5490. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-ltag-table.hh"
  5491. },
  5492. "hashes": {
  5493. "md5": "c27577c1be7ae8e5c2e4078a088bbb55"
  5494. }
  5495. },
  5496. {
  5497. "location": {
  5498. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gpos-table.hh"
  5499. },
  5500. "hashes": {
  5501. "md5": "a83c26e3c40334e8e2720325577939f8"
  5502. }
  5503. },
  5504. {
  5505. "location": {
  5506. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/gpos.hh"
  5507. },
  5508. "hashes": {
  5509. "md5": "d4b62d1a551fb3fe3cf34ed1a0462c07"
  5510. }
  5511. },
  5512. {
  5513. "location": {
  5514. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/types.hh"
  5515. },
  5516. "hashes": {
  5517. "md5": "d9150daa543714505e8e44a73553b462"
  5518. }
  5519. },
  5520. {
  5521. "location": {
  5522. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat1.hh"
  5523. },
  5524. "hashes": {
  5525. "md5": "0060329b676c1795856ba9f5e2d1b936"
  5526. }
  5527. },
  5528. {
  5529. "location": {
  5530. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/coverageformat2.hh"
  5531. },
  5532. "hashes": {
  5533. "md5": "12cd65d70c76032546471a73dd7fb290"
  5534. }
  5535. },
  5536. {
  5537. "location": {
  5538. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/common/rangerecord.hh"
  5539. },
  5540. "hashes": {
  5541. "md5": "d9493528366e8bd174afd80bbd4d2615"
  5542. }
  5543. },
  5544. {
  5545. "location": {
  5546. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gdef-table.hh"
  5547. },
  5548. "hashes": {
  5549. "md5": "5815ce664f62781de3eba8542be6b58e"
  5550. }
  5551. },
  5552. {
  5553. "location": {
  5554. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/common.hh"
  5555. },
  5556. "hashes": {
  5557. "md5": "17628a346a7d052b81a2c498adb3b67d"
  5558. }
  5559. },
  5560. {
  5561. "location": {
  5562. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookup.hh"
  5563. },
  5564. "hashes": {
  5565. "md5": "422949158cc7e85a21d549434266007f"
  5566. }
  5567. },
  5568. {
  5569. "location": {
  5570. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/poslookupsubtable.hh"
  5571. },
  5572. "hashes": {
  5573. "md5": "fcc9167205a6a65bbac83418d57156c7"
  5574. }
  5575. },
  5576. {
  5577. "location": {
  5578. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat1.hh"
  5579. },
  5580. "hashes": {
  5581. "md5": "410e7690608819f07be953b437bcd6b9"
  5582. }
  5583. },
  5584. {
  5585. "location": {
  5586. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/valueformat.hh"
  5587. },
  5588. "hashes": {
  5589. "md5": "1efb7fa3e4b8050b4232abc8fe5d9dea"
  5590. }
  5591. },
  5592. {
  5593. "location": {
  5594. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/singleposformat2.hh"
  5595. },
  5596. "hashes": {
  5597. "md5": "d15f5d00fb882f831093934905cd0e6c"
  5598. }
  5599. },
  5600. {
  5601. "location": {
  5602. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairpos.hh"
  5603. },
  5604. "hashes": {
  5605. "md5": "2b168dd217baa7531ff7df962f1de464"
  5606. }
  5607. },
  5608. {
  5609. "location": {
  5610. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat1.hh"
  5611. },
  5612. "hashes": {
  5613. "md5": "a5bf42d1dfcf56f03aabcd20c854452d"
  5614. }
  5615. },
  5616. {
  5617. "location": {
  5618. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairset.hh"
  5619. },
  5620. "hashes": {
  5621. "md5": "621bed38dc3612201eeb81d8f17472af"
  5622. }
  5623. },
  5624. {
  5625. "location": {
  5626. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairvaluerecord.hh"
  5627. },
  5628. "hashes": {
  5629. "md5": "1db7c32f0aa712159ce960817452c4ec"
  5630. }
  5631. },
  5632. {
  5633. "location": {
  5634. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/pairposformat2.hh"
  5635. },
  5636. "hashes": {
  5637. "md5": "e8b43ff7379aa996d3c8fc7ff4e750ff"
  5638. }
  5639. },
  5640. {
  5641. "location": {
  5642. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursivepos.hh"
  5643. },
  5644. "hashes": {
  5645. "md5": "5878fa64b4a16f661b99970d7896a31b"
  5646. }
  5647. },
  5648. {
  5649. "location": {
  5650. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/cursiveposformat1.hh"
  5651. },
  5652. "hashes": {
  5653. "md5": "2473b3cb163d3c595af2d5575903d328"
  5654. }
  5655. },
  5656. {
  5657. "location": {
  5658. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchor.hh"
  5659. },
  5660. "hashes": {
  5661. "md5": "e8f1a4cb81e9ea1e529652071687f644"
  5662. }
  5663. },
  5664. {
  5665. "location": {
  5666. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat1.hh"
  5667. },
  5668. "hashes": {
  5669. "md5": "f6a4117ec968bf72a621be6229b50521"
  5670. }
  5671. },
  5672. {
  5673. "location": {
  5674. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat2.hh"
  5675. },
  5676. "hashes": {
  5677. "md5": "9af0cd569f8f909ce929d90c8f4f7e59"
  5678. }
  5679. },
  5680. {
  5681. "location": {
  5682. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchorformat3.hh"
  5683. },
  5684. "hashes": {
  5685. "md5": "71dac01f375122bc65573a515e01f1c3"
  5686. }
  5687. },
  5688. {
  5689. "location": {
  5690. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbasepos.hh"
  5691. },
  5692. "hashes": {
  5693. "md5": "ac71c453af288b5098c0610f1cc0518d"
  5694. }
  5695. },
  5696. {
  5697. "location": {
  5698. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markbaseposformat1.hh"
  5699. },
  5700. "hashes": {
  5701. "md5": "fdc3fa6c813e1c6fd49b4b8d15f8e653"
  5702. }
  5703. },
  5704. {
  5705. "location": {
  5706. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markarray.hh"
  5707. },
  5708. "hashes": {
  5709. "md5": "dae0c28a3a8953a896c0ae86dca25c10"
  5710. }
  5711. },
  5712. {
  5713. "location": {
  5714. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/anchormatrix.hh"
  5715. },
  5716. "hashes": {
  5717. "md5": "94b230d7853e02678ec212a5739b8b1a"
  5718. }
  5719. },
  5720. {
  5721. "location": {
  5722. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markrecord.hh"
  5723. },
  5724. "hashes": {
  5725. "md5": "2f5e03b606f7e74bf137bf443715d6c8"
  5726. }
  5727. },
  5728. {
  5729. "location": {
  5730. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligpos.hh"
  5731. },
  5732. "hashes": {
  5733. "md5": "8b0233dd70ef2dde74f23ff63a748f0a"
  5734. }
  5735. },
  5736. {
  5737. "location": {
  5738. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markligposformat1.hh"
  5739. },
  5740. "hashes": {
  5741. "md5": "1f2ad27761616fbac256a5eab34eff05"
  5742. }
  5743. },
  5744. {
  5745. "location": {
  5746. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/ligaturearray.hh"
  5747. },
  5748. "hashes": {
  5749. "md5": "c56ecf9dafca0a6ad7602e5263e7c6ec"
  5750. }
  5751. },
  5752. {
  5753. "location": {
  5754. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkpos.hh"
  5755. },
  5756. "hashes": {
  5757. "md5": "c76c51426e3661ad286a365f6b08e33c"
  5758. }
  5759. },
  5760. {
  5761. "location": {
  5762. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/markmarkposformat1.hh"
  5763. },
  5764. "hashes": {
  5765. "md5": "ff0f93b16f9c93a55aa720631a93670d"
  5766. }
  5767. },
  5768. {
  5769. "location": {
  5770. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/contextpos.hh"
  5771. },
  5772. "hashes": {
  5773. "md5": "5534d1bedef5e8c8fb4e20583df1af19"
  5774. }
  5775. },
  5776. {
  5777. "location": {
  5778. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/chaincontextpos.hh"
  5779. },
  5780. "hashes": {
  5781. "md5": "65308c499cd022980d02de9b707bd6ef"
  5782. }
  5783. },
  5784. {
  5785. "location": {
  5786. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gpos/extensionpos.hh"
  5787. },
  5788. "hashes": {
  5789. "md5": "e5f7e9a60210cb910563b08145a9d2d1"
  5790. }
  5791. },
  5792. {
  5793. "location": {
  5794. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-ankr-table.hh"
  5795. },
  5796. "hashes": {
  5797. "md5": "5b201c8df8925a81f9c496033847c7ed"
  5798. }
  5799. },
  5800. {
  5801. "location": {
  5802. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-gsub-table.hh"
  5803. },
  5804. "hashes": {
  5805. "md5": "97b8a6695545a4525de9161c570153c5"
  5806. }
  5807. },
  5808. {
  5809. "location": {
  5810. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/gsub.hh"
  5811. },
  5812. "hashes": {
  5813. "md5": "395ca6f0cf648e5f395c5a2aa9eb51d0"
  5814. }
  5815. },
  5816. {
  5817. "location": {
  5818. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/common.hh"
  5819. },
  5820. "hashes": {
  5821. "md5": "f920e78392709d5572a288a1324c16d4"
  5822. }
  5823. },
  5824. {
  5825. "location": {
  5826. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookup.hh"
  5827. },
  5828. "hashes": {
  5829. "md5": "4aa52f43b36b1dc495631d4bc4a190bb"
  5830. }
  5831. },
  5832. {
  5833. "location": {
  5834. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/substlookupsubtable.hh"
  5835. },
  5836. "hashes": {
  5837. "md5": "e629342fa234daadbdeac480560837a9"
  5838. }
  5839. },
  5840. {
  5841. "location": {
  5842. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubst.hh"
  5843. },
  5844. "hashes": {
  5845. "md5": "ef6312cd1b9ea744af16d8929aedef56"
  5846. }
  5847. },
  5848. {
  5849. "location": {
  5850. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat1.hh"
  5851. },
  5852. "hashes": {
  5853. "md5": "b188b2c15a9430bf325448eb8be1abde"
  5854. }
  5855. },
  5856. {
  5857. "location": {
  5858. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/singlesubstformat2.hh"
  5859. },
  5860. "hashes": {
  5861. "md5": "cf74acfcc46790d6440302e11b7b9e5d"
  5862. }
  5863. },
  5864. {
  5865. "location": {
  5866. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubst.hh"
  5867. },
  5868. "hashes": {
  5869. "md5": "17c8783ce51ade55e28c4e0310b1fe31"
  5870. }
  5871. },
  5872. {
  5873. "location": {
  5874. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/multiplesubstformat1.hh"
  5875. },
  5876. "hashes": {
  5877. "md5": "fe73b5c2ff67dc270420e797b437956c"
  5878. }
  5879. },
  5880. {
  5881. "location": {
  5882. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/sequence.hh"
  5883. },
  5884. "hashes": {
  5885. "md5": "30c87c9f161d576b4763e6f8882c1fa4"
  5886. }
  5887. },
  5888. {
  5889. "location": {
  5890. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubst.hh"
  5891. },
  5892. "hashes": {
  5893. "md5": "e17f7e04e117267b34be1d5222506fb5"
  5894. }
  5895. },
  5896. {
  5897. "location": {
  5898. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternatesubstformat1.hh"
  5899. },
  5900. "hashes": {
  5901. "md5": "38cdb3e6aad2fed8c0edbe5ea0ece73c"
  5902. }
  5903. },
  5904. {
  5905. "location": {
  5906. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/alternateset.hh"
  5907. },
  5908. "hashes": {
  5909. "md5": "d815246a84efade2060f4eb2eb02a057"
  5910. }
  5911. },
  5912. {
  5913. "location": {
  5914. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubst.hh"
  5915. },
  5916. "hashes": {
  5917. "md5": "19b1e32e7b0df4f41d4dfc05b6e040d7"
  5918. }
  5919. },
  5920. {
  5921. "location": {
  5922. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligaturesubstformat1.hh"
  5923. },
  5924. "hashes": {
  5925. "md5": "9a3fc168a60717282869fb7694e14018"
  5926. }
  5927. },
  5928. {
  5929. "location": {
  5930. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligatureset.hh"
  5931. },
  5932. "hashes": {
  5933. "md5": "3862040dbf63b9b9cae6dc9de0d0d273"
  5934. }
  5935. },
  5936. {
  5937. "location": {
  5938. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/ligature.hh"
  5939. },
  5940. "hashes": {
  5941. "md5": "4ec47174be25c39263a4d09d25e14279"
  5942. }
  5943. },
  5944. {
  5945. "location": {
  5946. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/contextsubst.hh"
  5947. },
  5948. "hashes": {
  5949. "md5": "eb2317eca7cb6778e3b2de1a1d0bd6b3"
  5950. }
  5951. },
  5952. {
  5953. "location": {
  5954. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/chaincontextsubst.hh"
  5955. },
  5956. "hashes": {
  5957. "md5": "8c58aa9df88257cf7397be9642c47dd1"
  5958. }
  5959. },
  5960. {
  5961. "location": {
  5962. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/extensionsubst.hh"
  5963. },
  5964. "hashes": {
  5965. "md5": "d79feb78281f37556ced7d8a0090af89"
  5966. }
  5967. },
  5968. {
  5969. "location": {
  5970. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/ot/layout/gsub/reversechainsinglesubst.hh"
  5971. },
  5972. "hashes": {
  5973. "md5": "c5c3cb48abd8c921db7d91beec15b13f"
  5974. }
  5975. },
  5976. {
  5977. "location": {
  5978. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-base-table.hh"
  5979. },
  5980. "hashes": {
  5981. "md5": "b81d054c4468a9d3560ccabe2763a5ed"
  5982. }
  5983. },
  5984. {
  5985. "location": {
  5986. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-layout-jstf-table.hh"
  5987. },
  5988. "hashes": {
  5989. "md5": "6f8141f832882a61019883e21447eef1"
  5990. }
  5991. },
  5992. {
  5993. "location": {
  5994. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-table.hh"
  5995. },
  5996. "hashes": {
  5997. "md5": "063a246d87c52424e99fd5e6f68f63b5"
  5998. }
  5999. },
  6000. {
  6001. "location": {
  6002. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-name-language.hh"
  6003. },
  6004. "hashes": {
  6005. "md5": "d6754b18bdb5117e924b19efaf9c3c81"
  6006. }
  6007. },
  6008. {
  6009. "location": {
  6010. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-utf.hh"
  6011. },
  6012. "hashes": {
  6013. "md5": "01785426245d29d0ca41c5d79a8a0605"
  6014. }
  6015. },
  6016. {
  6017. "location": {
  6018. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-ot-os2-unicode-ranges.hh"
  6019. },
  6020. "hashes": {
  6021. "md5": "bb199773d41e991ebc92b83667f1bdc8"
  6022. }
  6023. },
  6024. {
  6025. "location": {
  6026. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-morx-table.hh"
  6027. },
  6028. "hashes": {
  6029. "md5": "7765ca3cfb4a2cff390ac3678039bd4d"
  6030. }
  6031. },
  6032. {
  6033. "location": {
  6034. "uri": "file:///c:/users/wruser/source/repos/sharpmupdf/mupdf/thirdparty/harfbuzz/src/hb-aat-layout-opbd-table.hh"
  6035. },
  6036. "hashes": {
  6037. "md5": "c4a6c8393ead4b85acbfa5c76d351f17"
  6038. }
  6039. }
  6040. ]
  6041. }
  6042. ]
  6043. }