Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ce2147ec
Kaydet (Commit)
ce2147ec
authored
Ock 20, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Code clean up.
üst
b2ceee71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
reclass.hxx
regexp/inc/regexp/reclass.hxx
+1
-1
reclass.cxx
regexp/source/reclass.cxx
+2
-2
No files found.
regexp/inc/regexp/reclass.hxx
Dosyayı görüntüle @
ce2147ec
...
@@ -364,7 +364,7 @@ class REGEXP_DLLPUBLIC Regexpr
...
@@ -364,7 +364,7 @@ class REGEXP_DLLPUBLIC Regexpr
sal_Int32
arg2
,
sal_Unicode
*
end
);
sal_Int32
arg2
,
sal_Unicode
*
end
);
sal_Bool
at_begline_loc_p
(
const
sal_Unicode
*
local_pattern
,
sal_Bool
at_begline_loc_p
(
const
sal_Unicode
*
local_pattern
,
const
sal_Unicode
*
p
);
const
sal_Unicode
*
p
);
sal_Bool
at_endline_loc_p
(
const
sal_Unicode
*
p
,
const
sal_Unicode
*
pend
);
sal_Bool
at_endline_loc_p
(
const
sal_Unicode
*
p
);
reg_errcode_t
compile_range
(
sal_Unicode
range_begin
,
sal_Unicode
range_end
,
sal_Unicode
*
b
);
reg_errcode_t
compile_range
(
sal_Unicode
range_begin
,
sal_Unicode
range_end
,
sal_Unicode
*
b
);
sal_Bool
group_in_compile_stack
(
compile_stack_type
compile_stack
,
sal_Bool
group_in_compile_stack
(
compile_stack_type
compile_stack
,
sal_uInt32
regnum
);
sal_uInt32
regnum
);
...
...
regexp/source/reclass.cxx
Dosyayı görüntüle @
ce2147ec
...
@@ -688,7 +688,7 @@ Regexpr::at_begline_loc_p(const sal_Unicode *local_pattern, const sal_Unicode *p
...
@@ -688,7 +688,7 @@ Regexpr::at_begline_loc_p(const sal_Unicode *local_pattern, const sal_Unicode *p
at least one character after the $, i.e., `P < PEND'. */
at least one character after the $, i.e., `P < PEND'. */
sal_Bool
sal_Bool
Regexpr
::
at_endline_loc_p
(
const
sal_Unicode
*
p
,
const
sal_Unicode
*
/* pend */
)
Regexpr
::
at_endline_loc_p
(
const
sal_Unicode
*
p
)
{
{
const
sal_Unicode
*
next
=
p
;
const
sal_Unicode
*
next
=
p
;
//sal_Bool next_backslash = *next == (sal_Unicode)'\\';
//sal_Bool next_backslash = *next == (sal_Unicode)'\\';
...
@@ -993,7 +993,7 @@ Regexpr::regex_compile()
...
@@ -993,7 +993,7 @@ Regexpr::regex_compile()
if
(
/* If at end of pattern, it's an operator. */
if
(
/* If at end of pattern, it's an operator. */
p
==
pend
p
==
pend
/* Otherwise, depends on what's next. */
/* Otherwise, depends on what's next. */
||
at_endline_loc_p
(
p
,
pend
))
{
||
at_endline_loc_p
(
p
))
{
BUF_PUSH
(
endline
);
BUF_PUSH
(
endline
);
}
else
{
}
else
{
goto
normal_char
;
goto
normal_char
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment