| /AOO41X/main/basegfx/source/workbench/ |
| H A D | bezierclip.cxx | 143 const Bezier& c1 ) in Impl_calcBounds() argument 145 leftTop.x = ::std::min( c1.p0.x, ::std::min( c1.p1.x, ::std::min( c1.p2.x, c1.p3.x ) ) ); in Impl_calcBounds() 146 leftTop.y = ::std::min( c1.p0.y, ::std::min( c1.p1.y, ::std::min( c1.p2.y, c1.p3.y ) ) ); in Impl_calcBounds() 147 rightBottom.x = ::std::max( c1.p0.x, ::std::max( c1.p1.x, ::std::max( c1.p2.x, c1.p3.x ) ) ); in Impl_calcBounds() 148 rightBottom.y = ::std::max( c1.p0.y, ::std::max( c1.p1.y, ::std::max( c1.p2.y, c1.p3.y ) ) ); in Impl_calcBounds() 151 bool Impl_doBBoxIntersect( const Bezier& c1, in Impl_doBBoxIntersect() argument 160 Impl_calcBounds( lt1, rb1, c1 ); in Impl_doBBoxIntersect() 292 double c1, in Impl_calcSafeParams_clip() argument 299 poly[1] = Point2D(1.0/3.0, c1); in Impl_calcSafeParams_clip() 400 void printCurvesWithSafeRange( const Bezier& c1, const Bezier& c2, double t1_c1, double t2_c1, in printCurvesWithSafeRange() argument [all …]
|
| /AOO41X/main/svtools/source/svrtf/ |
| H A D | svparser.cxx | 193 sal_uChar c1, c2; in GetNextChar() local 196 rInput >> c1; in GetNextChar() 200 if( 0xff == c1 || 0xfe == c1 ) in GetNextChar() 206 if( 0xfe == c1 && 0xff == c2 ) in GetNextChar() 212 else if( 0xff == c1 && 0xfe == c2 ) in GetNextChar() 232 sal_uChar c1, c2; in GetNextChar() local 234 rInput >> c1 >> c2; in GetNextChar() 237 ( (bUCS2BSrcEnc && 0xfe == c1 && 0xff == c2) || in GetNextChar() 238 (!bUCS2BSrcEnc && 0xff == c1 && 0xfe == c2) ) ) in GetNextChar() 239 rInput >> c1 >> c2; in GetNextChar() [all …]
|
| /AOO41X/main/rsc/source/rscpp/ |
| H A D | cpp5.c | 390 register int c, c1, t; in evallex() local 421 c1 = c = skipws(); in evallex() 426 if (c1 != '(' /* Need to balance */ in evallex() 458 c1 = cget(); /* Peek at next char */ in evallex() 461 if (c1 == '=') in evallex() 466 if (c1 != '=') { /* Can't say a=b in #if */ in evallex() 475 if (c1 == c) in evallex() 477 else if (c1 == '=') in evallex() 483 if (c1 == c) in evallex() 488 if (c1 == '\n') /* Multi-line if */ in evallex() [all …]
|
| /AOO41X/main/sal/rtl/source/ |
| H A D | ustring.c | 279 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase() local 284 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase() 286 if ( (c1 >= 65) && (c1 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase() 287 c1 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase() 290 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase() 309 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() local 317 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() 319 if ( (c1 >= 65) && (c1 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() 320 c1 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() 323 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() [all …]
|
| H A D | strtmpl.c | 166 sal_Int32 c1; in IMPL_RTL_STRNAME() local 171 c1 = (sal_Int32)IMPL_RTL_USTRCODE( *pStr1 ); in IMPL_RTL_STRNAME() 173 if ( (c1 >= 65) && (c1 <= 90) ) in IMPL_RTL_STRNAME() 174 c1 += 32; in IMPL_RTL_STRNAME() 177 nRet = c1-c2; in IMPL_RTL_STRNAME() 199 sal_Int32 c1; in IMPL_RTL_STRNAME() local 204 c1 = (sal_Int32)IMPL_RTL_USTRCODE( *pStr1 ); in IMPL_RTL_STRNAME() 206 if ( (c1 >= 65) && (c1 <= 90) ) in IMPL_RTL_STRNAME() 207 c1 += 32; in IMPL_RTL_STRNAME() 210 nRet = c1-c2; in IMPL_RTL_STRNAME() [all …]
|
| /AOO41X/main/qadevOOo/runner/util/ |
| H A D | AccessibilityTools.java | 419 public static boolean equals(XAccessible c1, XAccessible c2) { in equals() argument 420 if ((c1 == null) || (c2 == null)) { in equals() 421 return c1 == c2; in equals() 424 return AccessibilityTools.equals(c1.getAccessibleContext(), in equals() 428 public static boolean equals(XAccessibleContext c1, XAccessibleContext c2) { in equals() argument 429 if ((c1 == null) || (c2 == null)) { in equals() 430 return c1 == c2; in equals() 433 if (c1.getAccessibleRole() != c2.getAccessibleRole()) { in equals() 437 if (!c1.getAccessibleName().equals(c2.getAccessibleName())) { in equals() 441 if (!c1.getAccessibleDescription() in equals() [all …]
|
| /AOO41X/main/tools/source/string/ |
| H A D | strascii.cxx | 117 sal_Unicode c1; in ImplStringICompareAscii() local 122 c1 = *pStr1; in ImplStringICompareAscii() 124 if ( (c1 >= 65) && (c1 <= 90) ) in ImplStringICompareAscii() 125 c1 += 32; in ImplStringICompareAscii() 128 nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2)); in ImplStringICompareAscii() 146 sal_Unicode c1; in ImplStringICompareAscii() local 154 c1 = *pStr1; in ImplStringICompareAscii() 156 if ( (c1 >= 65) && (c1 <= 90) ) in ImplStringICompareAscii() 157 c1 += 32; in ImplStringICompareAscii() 160 nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2)); in ImplStringICompareAscii()
|
| H A D | strimp.cxx | 81 STRCODE c1; in ImplStringICompare() local 86 c1 = *pStr1; in ImplStringICompare() 88 if ( (c1 >= 65) && (c1 <= 90) ) in ImplStringICompare() 89 c1 += 32; in ImplStringICompare() 92 nRet = ((sal_Int32)((STRCODEU)c1))-((sal_Int32)((STRCODEU)c2)); in ImplStringICompare() 110 STRCODE c1; in ImplStringICompare() local 118 c1 = *pStr1; in ImplStringICompare() 120 if ( (c1 >= 65) && (c1 <= 90) ) in ImplStringICompare() 121 c1 += 32; in ImplStringICompare() 124 nRet = ((sal_Int32)((STRCODEU)c1))-((sal_Int32)((STRCODEU)c2)); in ImplStringICompare() [all …]
|
| /AOO41X/main/migrationanalysis/src/driver_docs/sources/excel/ |
| H A D | MigrationAnalyser.cls | 2044 Dim c1() As String 2075 ReDim c1(2) 2077 c1(0) = "" 2078 c1(1) = "" 2084 c1 = SplitRange(myarray(0, 0)) 2097 …btemp1 = v1(0) = v1(2) And c1(0) = v1(0) And Asclong(c1(1)) <= Asclong(v1(1)) - 1 'data label besi… 2098 …btemp2 = v1(1) = v1(3) And c1(1) = v1(1) And Asclong(c1(0)) <= Asclong(v1(0)) - 1 'data label besi… 2129 …btemp1 = v2(0) = v2(2) And Asclong(c2(0)) = Asclong(c1(0)) + 1 And c2(1) = c1(1) And Asclong(v2(0)… 2131 …btemp2 = v2(1) = v2(3) And c1(0) = c2(0) And Asclong(c2(1)) = Asclong(c1(1)) + 1 And Asclong(v2(1)… 2145 c1(j) = c2(j) [all …]
|
| /AOO41X/main/vcl/win/source/app/ |
| H A D | saldata.cxx | 92 wchar_t c1; in ImplSalWICompareAscii() local 97 c1 = *pStr1; in ImplSalWICompareAscii() 99 if ( (c1 >= 65) && (c1 <= 90) ) in ImplSalWICompareAscii() 100 c1 += 32; in ImplSalWICompareAscii() 103 nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2)); in ImplSalWICompareAscii()
|
| /AOO41X/main/framework/source/dispatch/ |
| H A D | dispatchinformationprovider.cxx | 81 …sal_Int32 c1 = … in getSupportedCommandGroups() local 86 for (i1=0; i1<c1; ++i1) in getSupportedCommandGroups() 113 …sal_Int32 c1 = … in getConfigurableDispatchInformation() local 118 for (i1=0; i1<c1; ++i1) in getConfigurableDispatchInformation() 144 c1 = (sal_Int32)lInfos.size(); in getConfigurableDispatchInformation() 147 css::uno::Sequence< css::frame::DispatchInformation > lReturn(c1); in getConfigurableDispatchInformation() 150 pStepp != lInfos.end () && i1<c1 ; in getConfigurableDispatchInformation()
|
| /AOO41X/main/idlc/test/parser/ |
| H A D | constructor.tests | 120 c1([in] long a, [in] com::sun::star::test::X b); 132 c1([in] sequence<long> a); 142 c1([in] any... a); 152 c1([in] any... a); 171 c1([in] long a, [in] long b); 181 c1([in] long a); 191 c1([in] long a, [in] short b);
|
| /AOO41X/main/ucb/source/regexp/ |
| H A D | regexp.cxx | 80 sal_Unicode c1 = *p++; in matchStringIgnoreCase() local 82 if (c1 >= 'a' && c1 <= 'z') in matchStringIgnoreCase() 83 c1 -= 'a' - 'A'; in matchStringIgnoreCase() 86 if (c1 != c2) in matchStringIgnoreCase() 327 sal_Unicode c1 = *p++; in matchString() local 329 if (c1 != c2) in matchString()
|
| /AOO41X/main/qadevOOo/tests/java/ifc/table/ |
| H A D | _XTableColumns.java | 359 String c1 = getCellText(xCellRange.getCellByPosition(col, 0)); in checkColumn() 362 if (!((""+ idx + "a").equals(c1) && (""+ idx + "b").equals(c2))) { in checkColumn() 365 + c1 + "," + c2 + ")"); in checkColumn() 384 String c1 = getCellText(xCellRange.getCellByPosition(col, 0)); in checkColumnEmpty() 386 if (!("".equals(c1) && "".equals(c2))) { in checkColumnEmpty() 388 + c1 + "," + c2 + ")"); in checkColumnEmpty()
|
| /AOO41X/main/rsc/source/parser/ |
| H A D | rsclex.cxx | 115 int c1; in MakeToken() local 122 c1 = c; in MakeToken() 139 return( c1 ); in MakeToken() 294 c1 = c; in MakeToken() 296 return( c1 ); in MakeToken()
|
| /AOO41X/main/i18npool/source/transliteration/ |
| H A D | transliteration_caseignore.cxx | 148 sal_Unicode c1, c2; in compare() local 156 … c1 = casefolding::getNextChar(unistr1, nMatch1, nCount1, e1, aLocale, nMappingType, moduleLoaded); in compare() 158 if (c1 != c2) { in compare() 160 return c1 > c2 ? 1 : -1; in compare()
|
| /AOO41X/main/l10ntools/source/ |
| H A D | cfglex.l | 104 char c1 = 0, c2 = 0, c3 = input(); 115 if ( c1 == '-' && c2 == '-' && c3 == '>' ) 117 c1 = c2;
|
| H A D | xrmlex.l | 128 char c1 = 0, c2 = 0, c3 = input(); variable 139 if ( c1 == '-' && c2 == '-' && c3 == '>' ) 141 c1 = c2;
|
| H A D | srclex.l | 96 char c1 = 0, c2 = input(); variable 106 if ( c1 == '*' && c2 == '/' ) 108 c1 = c2;
|
| /AOO41X/main/sal/qa/rtl/textenc/ |
| H A D | rtl_textcvt.cxx | 266 sal_Char c1 = rTest.m_pText[i++]; in doComplexCharSetTest() local 271 aConverter, 0, &c1, 1, aUC, 2, in doComplexCharSetTest() 280 sBuffer[0] = c1; in doComplexCharSetTest() 288 c1 = rTest.m_pText[i++]; in doComplexCharSetTest() 289 sBuffer[nLen++] = c1; in doComplexCharSetTest() 322 aUnicode[nSize++] = c1; in doComplexCharSetTest()
|
| /AOO41X/main/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/ |
| H A D | 101C.pem | 23 66:10:34:32:e5:2d:3f:55:c1 37 62:8e:2d:68:6c:db:12:02:86:e0:66:65:c1:7c:c4:83:35:4c: 38 16:53:fd:34:c1:3c:60:15:fc:3d:3b:90:07:68:ca:af:a1:10:
|
| H A D | 1010.pem | 16 1f:a3:c5:13:86:16:63:6b:cc:b8:c1:aa:54:fd:57: 39 50:2e:0a:17:41:0b:75:e9:6a:a4:fb:bb:c2:cc:c1:94:64:03: 41 38:cb:8f:56:82:9c:d3:f3:f3:20:1f:45:19:8e:ea:91:9c:c1:
|
| /AOO41X/main/unotools/source/config/ |
| H A D | securityoptions.cxx | 476 sal_Int32 c1 = lAuthors.getLength(); in LoadAuthors() local 477 if( c1 ) in LoadAuthors() 479 … sal_Int32 c2 = c1 * 3; // 3 Properties inside Struct TrustedAuthor in LoadAuthors() 485 for( i1 = 0, i2 = 0 ; i1 < c1 ; ++i1 ) in LoadAuthors() 498 m_seqTrustedAuthors.realloc( c1 ); in LoadAuthors() 500 for( i1 = 0, i2 = 0 ; i1 < c1 ; ++i1 ) in LoadAuthors()
|
| /AOO41X/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_8/demoCA/newcerts/ |
| H A D | 1001.pem | 16 c7:0e:6d:db:f6:54:65:4d:55:39:14:ea:c1:ad:75: 38 5c:f3:db:8d:b7:d0:95:35:8c:f6:c1:1c:2c:d9:0c:0a:41:27: 40 45:d3:c1:7b:6e:db:42:84:7b:0d:57:47:f5:07:38:dd:cf:38:
|
| /AOO41X/main/basic/source/classes/ |
| H A D | sb.cxx | 1496 sal_uInt16 StarBASIC::BreakPoint( sal_uInt16 l, sal_uInt16 c1, sal_uInt16 c2 ) in BreakPoint() argument 1498 SetErrorData( 0, l, c1, c2 ); in BreakPoint() 1506 sal_uInt16 StarBASIC::StepPoint( sal_uInt16 l, sal_uInt16 c1, sal_uInt16 c2 ) in StepPoint() argument 1508 SetErrorData( 0, l, c1, c2 ); in StepPoint() 1736 ( SbError code, const String& rMsg, sal_uInt16 l, sal_uInt16 c1, sal_uInt16 c2 ) in CError() argument 1761 SetErrorData( code, l, c1, c2 ); in CError() 1773 ( SbError code, sal_uInt16 l, sal_uInt16 c1, sal_uInt16 c2 ) in RTError() argument 1775 return RTError( code, String(), l, c1, c2 ); in RTError() 1778 sal_Bool StarBASIC::RTError( SbError code, const String& rMsg, sal_uInt16 l, sal_uInt16 c1, sal_uIn… in RTError() argument 1806 SetErrorData( code, l, c1, c2 ); in RTError()
|