Граф коммитов

261 Коммитов

Автор SHA1 Сообщение Дата
Isaac Aggrey 481e7dfb0b Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan 2012-09-28 01:57:33 -05:00
Makoto Kato 5adcbb8fb9 Bug 783206 - replace NULL with nullptr in intl except to OS API usages. r=smontagu 2012-08-24 16:49:00 +09:00
Ehsan Akhgari f22f8b7a49 Bug 579517 - Part 4: Manually rewrite some parts of the code base not covered by the automated conversion; r=bsmedberg 2012-08-22 11:59:54 -04:00
Ehsan Akhgari e368dc9c85 Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script.  Here's the source of the script for
future reference:

function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
       ! -wholename "*security/nss*" \
       ! -wholename "*/.hg*" \
       ! -wholename "obj-ff-dbg*" \
       ! -name nsXPCOMCID.h \
       ! -name prtypes.h \
         -type f \
      \( -iname "*.cpp" \
         -o -iname "*.h" \
         -o -iname "*.c" \
         -o -iname "*.cc" \
         -o -iname "*.idl" \
         -o -iname "*.ipdl" \
         -o -iname "*.ipdlh" \
         -o -iname "*.mm" \) | \
    xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}

convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t

convert PRIntn int
convert PRUintn unsigned

convert PRSize size_t

convert PROffset32 int32_t
convert PROffset64 int64_t

convert PRPtrdiff ptrdiff_t

convert PRFloat64 double
2012-08-22 11:56:38 -04:00
Mike Hommey 70d7c821af Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
Aryeh Gregor d0ad5a7d0c Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
Masayuki Nakano 6651c36d9d Bug 765166 lines should be able to be broken before/after Ideographic space next to breakable white space r=roc 2012-06-16 23:48:57 +09:00
Gervase Markham 68d38d677f Bug 759095 - upgrade license to MPL 2, and other licensing cleanups.
--HG--
extra : rebase_source : da55a4937383eda2baf7c9a362501da8ee664146
2012-05-29 16:52:43 +01:00
Makoto Kato 4047fae07a Bug 754176 - Make TestLineBreak unit test. r=smontagu 2012-05-28 23:46:22 +09:00
Gervase Markham 82ff7027aa Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Makoto Kato 388efdff7d Bug 249159 - Part 1 Add word-break interface to nsILineBreaker. r=smontagu 2012-05-07 12:18:23 -07:00
Ehsan Akhgari 92064e6d3f Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
2011-10-17 10:59:28 -04:00
Michael Wu d2b70213ac Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
2011-09-28 23:19:26 -07:00
Felix Fung 0bc71ca85d Bug 577266 - Correct misspellings in source code 2011-09-06 17:20:35 -07:00
Michael Wu 79d88fac19 Bug 675556 - Switch from PRPackedBool to PRUint8 in nsILineBreaker, r=roc 2011-08-01 18:20:52 -07:00
Ed Morley 74ba4e695f Bug 655475 - Remove WinCE code from I18N; r=smontagu 2011-05-08 19:46:10 +02:00
timeless@mozdev.org bab6b1bac7 Bug 585420 Drop files from intl and restore nsCaseConversionImp2
r=smontagu a=bsmedberg
2010-08-18 13:17:12 +03:00
Masayuki Nakano 23326c8213 Bug 608721 Between CJK full-stop and open parenthesis should be breakable r=roc, a=roc 2010-12-17 00:17:02 +09:00
Ehren Metcalfe ab19d256ae Remove dead code in intl. Bug 559489, r=smontagu 2010-07-04 15:42:04 +03:00
Zack Weinberg c7973f9c79 Bug 571989 follow-up: remove mentions of removed directories from toolkit-makefiles.sh and elsewhere. r=dholbert
--HG--
extra : rebase_source : c6e387430e6b2292b0925fdb681819ba109568e7
2010-06-30 08:54:39 -07:00
Makoto Kato b72190cb18 Bug 206802 - U+3005 is missing from the kinsoku list. r=smontagu 2010-05-12 17:06:32 +09:00
Makoto Kato de28235d5d Backout of Bug 206802 - U+3005 is missing from the kinsoku list. regtest fail on Linux 2010-04-15 12:12:11 +09:00
Makoto Kato f154165b2e Bug 206802 - U+3005 is missing from the kinsoku list. r=smontagu 2010-04-15 11:01:16 +09:00
Boris Zbarsky eb498351f7 Bug 548495 followup to fix reftest failure. r=masayuki pending 2010-02-26 22:20:56 -05:00
Boris Zbarsky cc1ac718b5 Bug 548495. Eliminate sources of O(N^2) backtracking in the linebreaker. r=masayuki 2010-02-26 21:32:31 -05:00
Jonas Sicking 2eb1e75087 Bug 541245 part 2: Make UTF8<->UTF16 comparison code consistent in the face of badly encoded strings. r=smontagu 2010-02-23 09:38:10 -08:00
Benjamin Smedberg ba372f3a4c Followup to bug 398573 - remove REQUIRES from the tree since it is no longer used... automatically generated patch, rs=ted 2009-08-25 08:59:31 -07:00
Robert O'Callahan 373843aa7f Backed out changeset 92cc21ed9634 2009-07-10 18:18:19 +12:00
Robert O'Callahan c19feb00e3 Bug 371839. Treat \n as space that the line-breaker will use as a word boundary. The main effect is that we don't have to scan backwards past \n when looking for a place to start linebreaking. r=smontagu 2009-07-10 14:04:52 +12:00
Daniel Holbert 4301671b45 Bug 473236 - Remove executable bit from files that don't need it. (Only changes file mode -- no code changes.) r=bsmedberg 2009-01-21 22:55:08 -08:00
Jonathan Kew 2cc2d22c2b Bug 472593. Don't call line-breaker's Next() method when already at end of text. r=bz,sr=roc 2009-01-19 22:07:11 +13:00
Jonathan Kew 19a3b09f74 bug 450088 - fix for bad line-breaking at quote marks in CJK text r=masayuki, sr=roc 2008-12-11 02:25:42 +09:00
Jonathan Kew fbb126a539 b=450088 backing out (new reftest failed) 2008-12-09 17:42:50 +09:00
Masayuki Nakano b797c39d4c Bug 450088 Line breaking regression (in Chinese and other languages) p=Jonathan Kew, r=masayuki, sr=roc 2008-12-09 15:41:42 +09:00
Doug Turner c2cdb8960a Bug 461839 - uniscribe breaker on windows mobile r+sr=roc 2008-12-03 08:42:03 -05:00
reed@reedloden.com d3243c57bd Bug 421255 - "fix misc mingw cross-compile issues" [p=cls@seawood.org (Chris Seawood [cls]) r=bsmedberg a1.9=beltzner] 2008-03-14 09:22:25 -07:00
smontagu@smontagu.org 9ab9ebf902 Testcase for bug 416721 2008-02-11 08:48:25 -08:00
smontagu@smontagu.org 1ede70214d Pass per-item offsets to ScriptBreak. Bug 416721, r=masayuki, sr=shaver, a=mconnor 2008-02-11 08:46:55 -08:00
mozilla@weilbacher.org a47fdbbc92 Bug 376790: remove support for non-cairo GFX ports from configure.in, r=ted.mielczarek, a=mtschrep 2008-01-23 00:27:47 -08:00
reed@reedloden.com 34fa5d1cba Bug 384172 - "Updated builds to latest trunk crashes with selinux error while loading shared library: /opt/firefox/libxul.so" (fix build flags) [p=thep@linux.thai.net (Theppitak Karoonboonyanan) r+sr+a1.9=roc] 2007-10-15 03:00:26 -07:00
roc+@cs.cmu.edu d38e95b231 Bug 397597. Enable native platform linebreaking for Tibetan and Lao. r=masayuki,a=dbaron 2007-09-30 13:30:31 -07:00
masayuki@d-toybox.com 69773b4483 Bug 389056 Don't break line between periods and quote, the additional patch r+sr+a=roc 2007-09-24 02:29:22 -07:00
masayuki@d-toybox.com 128332140f Bug 389056 Don't break line between periods and quote/Bug 388096 add line-breaking opportunity after U+058A ARMENIAN HYPHEN, U+2010 HYPHEN, U+2012 FIGURE DASH and U+2013 EN DASH. And U+2014 EM DASH should be breakable before and after except that between the same characters/Bug 389595 Don't break around '(' and ')'/Bug 390920 Don't break around &nbsp; r+sr=roc, b1.9=dbaron 2007-09-18 23:34:24 -07:00
roc+@cs.cmu.edu 2a503e140f Bug 389437. Handle searching for word breaks when starting at the end of the available text. r=smontagu,a=damon 2007-09-10 16:03:18 -07:00
roc+@cs.cmu.edu 93258a73cd Bug 336959. Exit properly if we get OOM. patch by Theppitak Karoonboonyanan, r+sr=roc,a=damon 2007-09-03 20:58:52 -07:00
masayuki@d-toybox.com d2aec0ff53 b=390048, fix bustage, patch by <bugzilla@mcsmurf.de> r=benjamin 2007-08-15 15:59:36 -07:00
masayuki@d-toybox.com 76a296aec2 Bug 389520 Complex Text Line Breaking with ATSUI/Carbon for Mac. patch by <vsatayamas@gmail.com> r+sr=roc, a=dsicore 2007-08-15 14:16:33 -07:00
masayuki@d-toybox.com d40efddf8c bug 390048 Complex Text Line Breaking with Uniscribe for Windows #2. patch by <nattachai@gmail.com> r+sr=roc, a=dsicor 2007-08-15 09:52:13 -07:00
masayuki@d-toybox.com 876b172e15 bug 390048 Complex Text Line Breaking with Uniscribe for Windows. patch by <nattachai@gmail.com> r+sr=roc, a=dsicor 2007-08-15 09:36:59 -07:00
roc+@cs.cmu.edu ef9ea276b7 Removing obsolete files 2007-07-18 20:27:42 -07:00