Home
last modified time | relevance | path

Searched refs:c (Results 201 – 225 of 1139) sorted by relevance

12345678910>>...46

/trunk/main/i18npool/source/breakiterator/
H A Dxdictionary.cxx122 sal_Bool xdictionary::exists(const sal_uInt32 c) { in exists() argument
124 …sal_Bool exist = (existMark && ((c>>3) < 0x1FFF)) ? sal::static_int_cast<sal_Bool>((existMark[c>>3… in exists()
126 return BreakIteratorImpl::getScriptClass(c) == ScriptType::ASIAN; in exists()
229 static sal_Int16 JapaneseCharType(sal_Unicode c) in JapaneseCharType() argument
231 if (0x3041 <= c && c <= 0x309e) in JapaneseCharType()
233 if ((0x30a1 <= c && c <= 0x30fe) || (0xff65 <= c && c <= 0xff9f)) in JapaneseCharType()
/trunk/main/vcl/aqua/source/res/MainMenu.nib/
H A Dkeyedobjects.nib4 ���"�'��V�W��X�0�Z�[�\]NSDestinationWNSLabelXNSSource���� ��^�_�`�a�b�c�d��e�f�g�h�i�j�k�lVN…
5c�d��e�f�����i���k�l� ��������[Hide OthersQh_hideOtherApplications:��V�W��X�0���[����!…
6 �� �8�)�"�.� �=��G�V�ίWXYZ[\]^_`abcdef�H�I�J�K�L�M�N�O�P�Q�R�S�T�U�V�W�=��…
10 #+4KMOQSUWY[]_actvxz|������������������%/8:<>@BD…
/trunk/main/shell/source/unix/exec/
H A Dshellexec.cxx95 sal_Char c = rURL[n]; in escapeForShell() local
97 …if( ( c < 'A' || c > 'Z' ) && ( c < 'a' || c > 'z' ) && ( c < '0' || c > '9' ) && c != '/' && c !… in escapeForShell()
101 rBuffer.append( c ); in escapeForShell()
/trunk/main/basebmp/inc/basebmp/
H A Drgb24pixelformats.hxx42 ColorType operator()( PixelType const& c ) const in operator ()()
44 return ColorType(c.red(),c.green(),c.blue()); in operator ()()
51 PixelType operator()( ColorType const& c ) const in operator ()()
54 res.setRed(c.getRed()); in operator ()()
55 res.setGreen(c.getGreen()); in operator ()()
56 res.setBlue(c.getBlue()); in operator ()()
/trunk/main/slideshow/source/engine/transitions/
H A Dfigurewipe.cxx75 const double c = cos( basegfx::deg2rad(18.0) ); in createPentagonWipe() local
78 figure.append( ::basegfx::B2DPoint( 0.5 + s, 0.5 - c ) ); in createPentagonWipe()
79 figure.append( ::basegfx::B2DPoint( 0.0, 0.5 - c - sin(basegfx::deg2rad(36.0)) ) ); in createPentagonWipe()
80 figure.append( ::basegfx::B2DPoint( -0.5 - s, 0.5 - c ) ); in createPentagonWipe()
89 const double c = cos( basegfx::deg2rad(30.0) ); in createHexagonWipe() local
91 figure.append( ::basegfx::B2DPoint( 0.5, c ) ); in createHexagonWipe()
93 figure.append( ::basegfx::B2DPoint( 0.5, -c ) ); in createHexagonWipe()
94 figure.append( ::basegfx::B2DPoint( -0.5, -c ) ); in createHexagonWipe()
96 figure.append( ::basegfx::B2DPoint( -0.5, c ) ); in createHexagonWipe()
/trunk/main/solenv/inc/
H A Dpstrules.mk45 $(OBJ)/$(SECOND_BUILD)_%.obj : %.c
49 …SECOND_BUILD)CDEFS) $(CDEFSOBJ) -E $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$(SECOND_BUILD)_$*.o $*.c
52 …($(SECOND_BUILD)CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$(SECOND_BUILD)_$*.o $*.c
59 …SECOND_BUILD)CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(OBJ)\$(SECOND_BUILD)_$*.obj $*.c )
62 …$(SECOND_BUILD)CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(OBJ)\$(SECOND_BUILD)_$*.obj $*.c
64 …SECOND_BUILD)CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(OBJ)\$(SECOND_BUILD)_$*.obj $*.c )
91 $(SLO)/$(SECOND_BUILD)_%.obj : %.c
95 …UILD)CDEFS) $(CDEFSSLO) $(CDEFSMT) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(SLO)/$(SECOND_BUILD)_$*.o $*.c
103 …LD)CDEFS) $(CDEFSSLO) $(CDEFSMT) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(SLO)/$(SECOND_BUILD)_$*.obj $*.c
105 …D)CDEFS) $(CDEFSSLO) $(CDEFSMT) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(SLO)/$(SECOND_BUILD)_$*.obj $*.c )
[all …]
H A Dverinfo.hrc118 #define VER1 c
139 #define VERC1(a, b, c) a.b##c
140 #define VERC2(a, b, c) VERC1(a, b, c)
195 #define VERC3(a, b, c) a.b.c
197 #define VERC3(a, b, c) c-b-a
199 #define VERC4(a, b, c) VERC3(a, b, c)
/trunk/main/basic/source/sbx/
H A Dsbxexec.cxx36 sal_Bool isAlpha( sal_Unicode c ) const in isAlpha()
38 sal_Bool bRet = (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); in isAlpha()
42 sal_Bool isDigit( sal_Unicode c ) const in isDigit()
44 sal_Bool bRet = (c >= '0' && c <= '9'); in isDigit()
48 sal_Bool isAlphaNumeric( sal_Unicode c ) const in isAlphaNumeric()
50 sal_Bool bRet = isDigit( c ) || isAlpha( c ); in isAlphaNumeric()
/trunk/main/tools/source/string/
H A Dstrcvt.cxx360 sal_uChar c = (sal_uChar)*pStr; in ImplStringConvert() local
361 sal_uChar cConv = pConvertTab[c]; in ImplStringConvert()
362 if ( c != cConv ) in ImplStringConvert()
439 char ByteString::Convert( char c, in Convert() argument
449 return c; in Convert()
464 return (char)pConvertTab[(sal_uChar)c]; in Convert()
471 sal_Unicode ByteString::ConvertToUnicode( char c, rtl_TextEncoding eTextEncoding ) in ConvertToUnicode() argument
474 return ConvertToUnicode( &c, &nLen, eTextEncoding ); in ConvertToUnicode()
479 char ByteString::ConvertFromUnicode( sal_Unicode c, rtl_TextEncoding eTextEncoding, sal_Bool bRepla… in ConvertFromUnicode() argument
483 nLen = ConvertFromUnicode( c, aBuf, sizeof( aBuf ), eTextEncoding, bReplace ); in ConvertFromUnicode()
[all …]
/trunk/main/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/
H A D1015.pem15 00:f0:7c:07:f6:13:52:ce:13:cf:8a:5f:7f:5f:3c:
19 b6:cf:55:65:5e:3e:15:93:8e:9c:39:4e:a3:ae:1d:
20 c0:49:22:dc:25:09:33:95:0d:b5:62:7c:96:0b:05:
21 b6:10:ae:ee:f8:18:24:9f:d4:ed:b3:4c:a9:4d:f2:
22 be:6c:66:37:b9:17:cb:14:df:52:b4:a8:de:63:0d:
37 9f:ae:30:6a:b1:6f:85:18:7f:ff:9c:30:49:b7:56:bf:a3:86:
38 d7:dd:5d:79:d1:7f:9a:95:b6:bd:1d:43:cc:2c:aa:7a:40:c4:
39 de:17:02:22:74:ec:a9:cd:8d:93:f6:6c:98:7e:bb:6a:68:70:
H A D100C.pem15 00:e2:8b:a9:94:06:b0:cb:e7:1b:a3:fd:7c:70:d1:
20 95:d2:87:c3:9c:3d:94:96:9d:01:81:5d:61:43:aa:
21 4c:92:d5:68:aa:6c:73:88:52:7b:ee:9b:76:65:0d:
22 2a:ae:3d:83:71:41:44:8b:23:7d:a6:f9:3c:81:56:
23 6c:9b:52:96:87:c8:97:18:8d
39 a3:e5:ec:b5:67:ef:c3:ee:23:dd:c3:3e:24:86:6c:09:03:59:
40 ab:93:d6:c7:0a:4c:ef:c5:4a:be:d6:ff:0f:2e:81:8e:18:d5:
42 29:7d:d2:fc:85:8d:0c:d3:bd:ea:47:be:40:bb:fa:2f:29:fc:
H A D1014.pem15 00:ca:cc:98:77:0c:10:dd:0e:87:a2:da:b6:e6:97:
18 e3:0b:2c:f5:e6:e5:e5:0f:f8:e0:a1:bc:11:06:a1:
20 3c:b4:3a:2b:3b:94:64:6d:e3:ce:b3:fa:d8:28:e2:
21 ed:76:9a:97:41:64:7c:0d:48:b8:1d:6a:56:e3:f9:
22 4c:88:e9:1a:3c:b8:af:7a:13:67:19:59:36:46:79:
36 6e:05:c4:48:32:4a:62:6f:a3:8c:23:af:47:dd:d4:c7:c1:91:
40 94:a3:bf:6c:6b:b9:fa:fd:f9:d4:1f:6f:75:27:b9:0d:d3:d2:
42 42:02:99:3c:cf:aa:6b:98:66:17:83:39:4a:6f:47:36:ad:db:
/trunk/main/xmlsecurity/test_docs/CAs/Root_9/demoCA/newcerts/
H A D1000.pem16 92:a1:79:9d:ce:d2:0c:16:15:f2:7e:b3:e4:45:9c:
19 1f:5c:94:eb:cf:cf:8f:15:eb:b8:22:fe:69:61:51:
20 a9:08:b8:80:bd:48:99:da:85:10:1c:75:97:fd:d3:
21 c3:c4:0b:dd:eb:01:12:5d:ee:62:62:c3:0c:18:ea:
22 ed:76:ff:9b:1c:1f:c7:81:f9:9a:cd:e5:25:89:b2:
37 dd:75:ec:04:e2:23:ae:ea:8c:15:fa:73:2e:83:f4:16:eb:c1:
38 e1:87:36:bd:58:d0:64:e0:6e:2c:bc:27:cb:dc:4b:58:01:80:
41 74:78:96:6d:6e:52:23:4a:67:30:78:03:91:b7:89:bf:3c:4a:
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_3/demoCA/newcerts/
H A D1000.pem15 00:bc:82:f1:75:77:02:f8:fb:3a:c2:8d:3c:1b:cb:
19 d4:a5:d6:57:cf:24:c1:d7:56:eb:00:9c:5d:80:bc:
20 23:0c:91:d6:8e:2a:62:f6:af:4d:c9:19:5b:dd:16:
38 30:b2:50:31:8d:30:6b:8b:54:17:67:bc:b8:c1:d5:1c:6c:95:
39 c5:e4:c4:ad:12:39:2f:38:ee:53:6a:cf:be:1c:4f:ac:98:0c:
42 99:4f:b4:1e:87:95:73:63:76:d4:ff:21:57:2c:c3:f4:3c:fd:
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_4/demoCA/newcerts/
H A D1000.pem16 73:1b:39:4c:0e:57:7e:da:78:03:7e:65:11:57:97:
17 e6:f4:0d:72:1f:f6:2b:a4:33:f9:5c:bd:2b:25:6c:
20 75:91:cc:d6:3a:4c:15:4d:15:03:a4:e6:80:4a:93:
21 fe:6c:91:ab:77:60:3b:43:65:21:cd:04:3d:01:71:
36 7a:83:0c:a0:2d:14:52:97:a1:0e:dd:b3:2e:a1:1f:0d:51:e7:
38 f7:85:8c:01:7a:1b:25:63:7e:d6:f9:8e:ad:84:9e:42:3e:1d:
40 e1:05:e6:35:71:ca:43:98:3a:e5:93:52:e1:3c:3a:1b:83:53:
42 47:87:7f:2e:ae:76:49:88:55:1e:65:70:6c:d6:35:ab:64:48:
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/
H A Dcacert.pem16 92:a1:79:9d:ce:d2:0c:16:15:f2:7e:b3:e4:45:9c:
19 1f:5c:94:eb:cf:cf:8f:15:eb:b8:22:fe:69:61:51:
20 a9:08:b8:80:bd:48:99:da:85:10:1c:75:97:fd:d3:
21 c3:c4:0b:dd:eb:01:12:5d:ee:62:62:c3:0c:18:ea:
22 ed:76:ff:9b:1c:1f:c7:81:f9:9a:cd:e5:25:89:b2:
37 dd:75:ec:04:e2:23:ae:ea:8c:15:fa:73:2e:83:f4:16:eb:c1:
38 e1:87:36:bd:58:d0:64:e0:6e:2c:bc:27:cb:dc:4b:58:01:80:
41 74:78:96:6d:6e:52:23:4a:67:30:78:03:91:b7:89:bf:3c:4a:
/trunk/main/sal/rtl/source/
H A Dustrbuf.c145 rtl_uString ** pThis, sal_Int32 * capacity, sal_Int32 offset, sal_uInt32 c) in rtl_uStringbuffer_insertUtf32() argument
149 OSL_ASSERT(c <= 0x10FFFF && !(c >= 0xD800 && c <= 0xDFFF)); in rtl_uStringbuffer_insertUtf32()
150 if (c <= 0xFFFF) { in rtl_uStringbuffer_insertUtf32()
151 buf[0] = (sal_Unicode) c; in rtl_uStringbuffer_insertUtf32()
154 c -= 0x10000; in rtl_uStringbuffer_insertUtf32()
155 buf[0] = (sal_Unicode) ((c >> 10) | 0xD800); in rtl_uStringbuffer_insertUtf32()
156 buf[1] = (sal_Unicode) ((c & 0x3FF) | 0xDC00); in rtl_uStringbuffer_insertUtf32()
/trunk/main/filter/source/graphicfilter/idxf/
H A Ddxfgrprd.cxx43 char c = 0; in DXFReadLine() local
62 c = buf[n]; in DXFReadLine()
63 if( c != '\n' && c != '\r' ) in DXFReadLine()
65 if( !c ) in DXFReadLine()
66 c = ' '; in DXFReadLine()
67 rStr += c; in DXFReadLine()
85 if( bEnd && (c=='\r' || c=='\n')) // Sonderbehandlung DOS-Dateien in DXFReadLine()
89 if( cTemp == c || (cTemp != '\n' && cTemp != '\r') ) in DXFReadLine()
/trunk/main/jvmfwk/plugins/sunmajor/pluginlib/
H A Dutil.cxx1010 for ( sal_Int32 c = 0; in getJREInfoByPath() local
1011 gVendorMap[c].sVendorName != NULL; ++c ) in getJREInfoByPath()
1013 OUString sNameMap(gVendorMap[c].sVendorName, strlen(gVendorMap[c].sVendorName), in getJREInfoByPath()
1017 ret = createInstance(gVendorMap[c].createFunc, props); in getJREInfoByPath()
1025 for ( sal_Int32 c = 0; in getJREInfoByPath() local
1026 gVendorMap[c].sVendorName != NULL; ++c ) in getJREInfoByPath()
1028 OUString sNameMap(gVendorMap[c].sVendorName, strlen(gVendorMap[c].sVendorName), in getJREInfoByPath()
1037 ret = createInstance(gVendorMap[c].createFunc, props); in getJREInfoByPath()
1180 for(int c = 0; c < cSearchPaths; c++) in createJavaInfoDirScan() local
1181 arPaths[c] = OUString(g_arSearchPaths[c].path, strlen(g_arSearchPaths[c].path), in createJavaInfoDirScan()
/trunk/main/xmlsecurity/test_docs/CAs/Root_7/demoCA/newcerts/
H A D1000.pem16 ac:b7:4c:53:6d:4b:b3:12:82:40:54:c9:44:28:fc:
17 4e:10:e6:65:40:de:70:5d:8b:ab:1f:5c:77:03:43:
19 fb:9c:a3:87:57:5d:ec:d6:55:5a:18:b5:e1:2b:d2:
20 c4:10:fe:f0:01:a5:da:29:ee:c4:af:15:c9:8c:dc:
21 7c:45:84:bd:e5:5b:09:1f:16:1d:11:e7:61:e6:22:
40 61:83:80:42:8d:1a:7e:b1:9a:58:d5:01:fd:e7:ae:5c:c8:65:
41 fb:9e:1d:bf:49:ba:ed:40:f4:05:7c:3b:2d:db:0e:53:d0:05:
45 6e:9c:a3:df:f0:52:1a:14:4e:78:25:0c:8b:02:cb:56:e9:4d:
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/
H A Dcacert.pem16 ac:b7:4c:53:6d:4b:b3:12:82:40:54:c9:44:28:fc:
17 4e:10:e6:65:40:de:70:5d:8b:ab:1f:5c:77:03:43:
19 fb:9c:a3:87:57:5d:ec:d6:55:5a:18:b5:e1:2b:d2:
20 c4:10:fe:f0:01:a5:da:29:ee:c4:af:15:c9:8c:dc:
21 7c:45:84:bd:e5:5b:09:1f:16:1d:11:e7:61:e6:22:
40 61:83:80:42:8d:1a:7e:b1:9a:58:d5:01:fd:e7:ae:5c:c8:65:
41 fb:9e:1d:bf:49:ba:ed:40:f4:05:7c:3b:2d:db:0e:53:d0:05:
45 6e:9c:a3:df:f0:52:1a:14:4e:78:25:0c:8b:02:cb:56:e9:4d:
/trunk/main/scripting/workben/ifc/scripting/
H A D_XScriptInfoAccess.java59 Collection c = in _getScriptLogicalNames() local
64 if (c != null) { in _getScriptLogicalNames()
65 tests = c.iterator(); in _getScriptLogicalNames()
117 Collection c = in _getImplementations() local
122 if (c != null) { in _getImplementations()
123 tests = c.iterator(); in _getImplementations()
174 Collection c = in _getAllImplementations() local
179 if (c != null) { in _getAllImplementations()
180 tests = c.iterator(); in _getAllImplementations()
/trunk/main/bridges/source/jni_uno/
H A Dnativethreadpool.cxx63 jclass c = env->FindClass("java/lang/OutOfMemoryError"); in throwOutOfMemory() local
64 if (c != 0) { in throwOutOfMemory()
65 env->ThrowNew(c, ""); in throwOutOfMemory()
123 jclass c = env->FindClass("java/lang/RuntimeException"); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create() local
124 if (c != 0) { in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create()
125 env->ThrowNew(c, "JNI GetJavaVM failed"); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create()
129 jclass c = env->FindClass("com/sun/star/lib/uno/environments/remote/Job"); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create() local
130 if (c == 0) { in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create()
133 jmethodID execute = env->GetMethodID(c, "execute", "()Ljava/lang/Object;"); in Java_com_sun_star_lib_uno_environments_remote_NativeThreadPool_create()
/trunk/main/i18npool/source/textconversion/
H A Dgenconv_dict.cxx165 sal_Unicode c = Hanja2HangulData[((i*0x10+j)*0x10)+k]; in make_hhc_char() local
166 fprintf(cfp, "0x%04x, ", c ? c : 0xFFFF); in make_hhc_char()
241 sal_Unicode c = SChinese2TChineseData[((i*0x10+j)*0x10)+k]; in make_stc_char() local
242 fprintf(cfp, "0x%04x, ", c ? c : 0xFFFF); in make_stc_char()
278 sal_Unicode c = SChinese2VChineseData[((i*0x10+j)*0x10)+k]; in make_stc_char() local
279 fprintf(cfp, "0x%04x, ", c ? c : 0xFFFF); in make_stc_char()
315 sal_Unicode c = TChinese2SChineseData[((i*0x10+j)*0x10)+k]; in make_stc_char() local
316 fprintf(cfp, "0x%04x, ", c ? c : 0xFFFF); in make_stc_char()
/trunk/main/configmgr/source/
H A Dvalueparser.cxx57 bool parseHexDigit(char c, int * value) { in parseHexDigit() argument
59 if (c >= '0' && c <= '9') { in parseHexDigit()
60 *value = c - '0'; in parseHexDigit()
63 if (c >= 'A' && c <= 'F') { in parseHexDigit()
64 *value = c - 'A' + 10; in parseHexDigit()
67 if (c >= 'a' && c <= 'f') { in parseHexDigit()
68 *value = c - 'a' + 10; in parseHexDigit()
336 char c = static_cast< char >(scalar); in startElement() local
337 pad_.add(&c, 1); in startElement()

Completed in 101 milliseconds

12345678910>>...46