Home
last modified time | relevance | path

Searched refs:c (Results 251 – 275 of 1145) sorted by relevance

1...<<11121314151617181920>>...46

/aoo4110/main/wizards/com/sun/star/wizards/ui/event/
H A DDataAwareFields.java59 Class c = f.getType(); in getFieldValueFor() local
61 if (c.equals(Boolean.TYPE)) in getFieldValueFor()
65 else if (c.equals(Integer.TYPE)) in getFieldValueFor()
69 else if (c.equals(Double.TYPE)) in getFieldValueFor()
73 else if (c.equals(String.class) && c2.equals(Integer.class)) in getFieldValueFor()
484 private static Number toNumber(double i, Class c) in toNumber() argument
486 if (c.equals(Integer.class)) in toNumber()
490 else if (c.equals(Short.class)) in toNumber()
494 else if (c.equals(Double.class)) in toNumber()
/aoo4110/main/odk/source/com/sun/star/lib/loader/
H A DLoader.java132 Class c = cl.loadClass( className ); in main() local
133 Method m = c.getMethod( "main", new Class[] { String[].class } ); in main()
179 Class c = cl.loadClass( in getCustomLoader() local
181 Method m = c.getMethod( "getJars", (Class[]) null ); in getCustomLoader()
362 Class c = findLoadedClass( name ); in loadClass() local
363 if ( c == null ) { in loadClass()
365 c = super.findClass( name ); in loadClass()
376 resolveClass( c ); in loadClass()
378 return c; in loadClass()
/aoo4110/main/ridljar/com/sun/star/uno/
H A DType.java588 Class c; in determineClass() local
590 c = Class.forName(base); in determineClass()
594 if (args < 0 && new Type(c).getTypeClass() == TypeClass.UNKNOWN) in determineClass()
612 Class c; in determineClass() local
614 c = Class.forName(_typeName); in determineClass()
618 return new Type(c).equals(this) ? c : null; in determineClass()
624 Class c; in determineClass() local
626 c = Class.forName( in determineClass()
631 return args >= 0 || new Type(c).equals(this) ? c : null; in determineClass()
/aoo4110/main/scp2/inc/
H A Dmacros.inc38 #define DOCONCAT6( x, y, z, a, b, c ) x##y##z##a##b##c
39 #define CONCAT6( x, y, z, a, b, c ) DOCONCAT6(x,y,z,a,b,c)
40 #define DOCONCAT7( x, y, z, a, b, c, u) x##y##z##a##b##c##u
41 #define CONCAT7( x, y, z, a, b, c, u) DOCONCAT7(x,y,z,a,b,c,u)
42 #define DOCONCAT8( x, y, z, a, b, c, u, v) x##y##z##a##b##c##u##v
43 #define CONCAT8( x, y, z, a, b, c, u, v) DOCONCAT8(x,y,z,a,b,c,u,v)
44 #define DOCONCAT9( x, y, z, a, b, c, u, v, w) x##y##z##a##b##c##u##v##w
45 #define CONCAT9( x, y, z, a, b, c, u, v, w) DOCONCAT9(x,y,z,a,b,c,u,v,w)
/aoo4110/main/connectivity/source/commontools/
H A DCommonTools.cxx298 sal_Bool isCharOk(sal_Unicode c,const ::rtl::OUString& _rSpecials) in isCharOk() argument
301 return ( ((c >= 97) && (c <= 122)) || ((c >= 65) && (c <= 90)) || ((c >= 48) && (c <= 57)) || in isCharOk()
302 c == '_' || _rSpecials.indexOf(c) != -1); in isCharOk()
/aoo4110/main/xmlsecurity/source/xmlsec/mscrypt/
H A Dx509certificate_mscryptimpl.cxx72 sal_Unicode c = rRawString[i]; in findTypeInDN() local
74 if (c == '=') in findTypeInDN()
87 else if (c == '"') in findTypeInDN()
107 else if (c == ',' || c == '+') in findTypeInDN()
126 sal_Unicode c = rRawString[nTypeNameStart]; in findTypeInDN() local
127 if (c != ' ' && c != '\t') in findTypeInDN()
137 sal_Unicode c = rRawString[nTypeNameEnd]; in findTypeInDN() local
138 if (c == ' ' || c == '\t' || c == '=') in findTypeInDN()
/aoo4110/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DWseTextRun.java140 Color c = t.getFontColor(); in WseTextRun() local
141 if (c == null) in WseTextRun()
142 c = Color.black; in WseTextRun()
143 colorIndex = (byte)ct.findColor(c, true); in WseTextRun()
144 c = t.getBackgroundColor(); in WseTextRun()
145 if (c == null) in WseTextRun()
146 c = Color.white; in WseTextRun()
147 colorIndex |= (byte)(ct.findColor(c, false) << 4); in WseTextRun()
/aoo4110/main/l10ntools/source/filter/utils/
H A DFileHelper.java220 int c = lAllFiles.length; in getSystemFilesFromDir() local
221 java.util.Vector lFilteredFiles = new java.util.Vector(c); in getSystemFilesFromDir()
222 for (int i=0; i<c; ++i) in getSystemFilesFromDir()
265 char c = lBuffer[i]; in convertName2FileName() local
267 c>=48 && c<=57 // 0-9 in convertName2FileName()
269 c>=97 && c<=122 // a-z in convertName2FileName()
271 c>=65 && c<=90 // A-Z in convertName2FileName()
274 sNewName.append(c); in convertName2FileName()
H A DXMLHelper.java356 char c = sSource.charAt(i); in encodeHTMLSigns() local
357 if (c == '&') in encodeHTMLSigns()
360 sDestination.append(c); in encodeHTMLSigns()
469 int c = aValue.size(); in convertListToXML() local
470 if (c < 1) in convertListToXML()
489 for (int i=0; i<c; ++i) in convertListToXML()
503 if (i<(c-1)) in convertListToXML()
571 int c = aValue.size(); in convertLocalizedValueToXML() local
572 if (c < 1) in convertLocalizedValueToXML()
733 int c = lChilds.getLength(); in extractChildNodesByType() local
[all …]
/aoo4110/main/sal/inc/rtl/
H A Dustrbuf.hxx416 OUStringBuffer & append(sal_Unicode c) in append() argument
418 return append( &c, 1 ); in append()
502 OUStringBuffer & appendUtf32(sal_uInt32 c) { in appendUtf32() argument
503 return insertUtf32(getLength(), c); in appendUtf32()
612 OUStringBuffer & insert(sal_Int32 offset, sal_Unicode c) in insert() argument
614 return insert( offset, &c, 1 ); in insert()
728 OUStringBuffer & insertUtf32(sal_Int32 offset, sal_uInt32 c) { in insertUtf32() argument
729 rtl_uStringbuffer_insertUtf32(&pData, &nCapacity, offset, c); in insertUtf32()
/aoo4110/main/binaryurp/qa/
H A Dtest-cache.cxx52 binaryurp::Cache< int > c(4); in testNothingLostFromLruList() local
55 c.add(a[k], &f); in testNothingLostFromLruList()
60 c.add(-1, &f) + c.add(-2, &f) + c.add(-3, &f) + c.add(-4, &f)); in testNothingLostFromLruList()
/aoo4110/main/io/source/stm/
H A Dodata.cxx353 sal_uInt8 c = (sal_uInt8)readByte(); in readUTF() local
355 switch( c >> 4 ) in readUTF()
360 pStr[nStrLen++] = c; in readUTF()
767 sal_uInt16 c = pStr[i]; in writeUTF() local
768 if( (c >= 0x0001) && (c <= 0x007F) ) in writeUTF()
772 else if( c > 0x07FF ) in writeUTF()
796 sal_uInt16 c = pStr[i]; in writeUTF() local
797 if( (c >= 0x0001) && (c <= 0x007F) ) in writeUTF()
799 writeByte(sal_Int8(c)); in writeUTF()
801 else if( c > 0x07FF ) in writeUTF()
[all …]
/aoo4110/main/sw/source/ui/lingu/
H A Dcvdata.mac5 setfile -c 'SW/g' -t 'Lexi' "German Hyph"
7 setfile -c 'SW/g' -t 'Lexi' "German Spell"
9 setfile -c 'SW/g' -t 'Lexi' "German Thes"
15 setfile -c 'SW/g' -t 'Lexi' "English Hyph"
17 setfile -c 'SW/g' -t 'Lexi' "English Spell"
19 setfile -c 'SW/g' -t 'Lexi' "English Thes"
/aoo4110/main/tools/workben/
H A Dsolar.c35 int GetStackAlignment_3( char*p, long l, int i, short s, char b, char c, ... );
36 int GetStackAlignment_2( char*p, long l, int i, short s, char b, char c );
92 int GetStackAlignment_3( char*p, long l, int i, short s, char b, char c, ... ) in GetStackAlignment_3() argument
96 return &c - &b; in GetStackAlignment_3()
98 return &b - &c; in GetStackAlignment_3()
101 int GetStackAlignment_2( char*p, long l, int i, short s, char b, char c ) in GetStackAlignment_2() argument
105 return &c - &b; in GetStackAlignment_2()
107 return &b - &c; in GetStackAlignment_2()
/aoo4110/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_1/demoCA/newcerts/
H A D1000.pem19 5a:1e:d8:fa:97:92:82:0e:e3:0c:ac:20:dc:b8:e3:
20 5e:87:8b:89:e3:a1:c3:87:49:1d:92:a5:fd:7c:77:
21 79:ce:1f:fa:9c:5a:17:d9:11:0c:f2:7f:1a:fa:d8:
34 33:dd:e8:57:3e:69:1b:a0:4c:83:51:99:dd:73:b0:0c:cb:c7:
37 e9:f7:4e:3e:be:bd:4c:9e:74:07:19:b0:4d:88:97:af:23:a7:
/aoo4110/main/sw/source/filter/rtf/
H A Drtffld.cxx225 sal_Unicode c, cKey = 0; in GetSwitch() local
229 c = sParam.GetChar( ++nCurPos ); in GetSwitch()
231 cKey = c; in GetSwitch()
234 ' ' == ( c = sParam.GetChar( nCurPos )) ) in GetSwitch()
241 if( '"' != c && '\'' != c ) in GetSwitch()
242 c = '\\', nOffset = 0; in GetSwitch()
247 rParam = sParam.GetToken( 0, c ); in GetSwitch()
249 if( '\\' == c ) in GetSwitch()
423 sal_Unicode c = aSaveStr.GetChar( 0 ); in MakeFieldInst() local
424 if( '"' == c || '\'' == c ) in MakeFieldInst()
[all …]
/aoo4110/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_9/demoCA/newcerts/
H A D1000.pem15 00:f2:d3:15:3c:73:42:ce:22:e4:40:3a:6b:02:f6:
19 6d:ec:81:12:23:48:36:2d:7a:5a:d0:88:88:49:7c:
22 0e:08:8a:c8:1c:ef:85:a5:e6:f3:54:68:02:fd:de:
35 fb:45:dd:5c:96:62:f5:28:45:c8:90:2a:7e:84:88:e9:e9:b7:
37 d1:bb:ca:d2:6c:7c:39:2e:e9:65:57:2b:74:47:04:49:99:74:
39 15:f4:4f:38:43:9e:4f:9f:e3:97:5c:8d:dc:1e:ad:ad:1e:b7:
/aoo4110/main/vcl/source/gdi/
H A Dimpfont.cxx442 for( sal_UCS4 c = cMinChar; c <= cMaxChar; ++c, pGlyphIdPtr+=2 ) { in ParseCMAP() local
850 sal_Unicode c = rPSName.GetChar( --i ); in UpdateAttributesFromPSName() local
851 if( c == 'C' ) { // "capitals" in UpdateAttributesFromPSName()
853 c = rPSName.GetChar( --i ); in UpdateAttributesFromPSName()
855 if( c == 'O' ) { // CFF-based OpenType in UpdateAttributesFromPSName()
856 c = rPSName.GetChar( --i ); in UpdateAttributesFromPSName()
858 if( c == 'I' ) { // "italic" in UpdateAttributesFromPSName()
860 c = rPSName.GetChar( --i ); in UpdateAttributesFromPSName()
862 if( c == 'B' ) // "bold" in UpdateAttributesFromPSName()
864 if( c == 'C' ) // "capitals" in UpdateAttributesFromPSName()
/aoo4110/main/framework/source/jobs/
H A Djob.cxx408 sal_Int32 c = lEnvArgs.getLength(); in impl_generateJobArgs() local
409 lEnvArgs.realloc(c+1); in impl_generateJobArgs()
410 lEnvArgs[c].Name = ::rtl::OUString::createFromAscii(JobData::PROP_FRAME); in impl_generateJobArgs()
411 lEnvArgs[c].Value <<= m_xFrame; in impl_generateJobArgs()
415 sal_Int32 c = lEnvArgs.getLength(); in impl_generateJobArgs() local
416 lEnvArgs.realloc(c+1); in impl_generateJobArgs()
417 lEnvArgs[c].Name = ::rtl::OUString::createFromAscii(JobData::PROP_MODEL); in impl_generateJobArgs()
418 lEnvArgs[c].Value <<= m_xModel; in impl_generateJobArgs()
422 sal_Int32 c = lEnvArgs.getLength(); in impl_generateJobArgs() local
423 lEnvArgs.realloc(c+1); in impl_generateJobArgs()
[all …]
/aoo4110/main/configmgr/source/
H A Dwritemodfile.cxx201 sal_Unicode c = value[j]; in writeValueContent() local
202 if ((c < 0x0020 && c != 0x0009 && c != 0x000A && c != 0x000D) || in writeValueContent()
203 c == 0xFFFE || c == 0xFFFF) in writeValueContent()
209 handle, rtl::OString::valueOf(static_cast< sal_Int32 >(c))); in writeValueContent()
212 } else if (c == '\x0D') { in writeValueContent()
216 } else if (c == '&') { in writeValueContent()
220 } else if (c == '<') { in writeValueContent()
224 } else if (c == '>') { in writeValueContent()
/aoo4110/main/cosv/source/strings/
H A Dstreamstr.cxx535 char c = 0; in operator_read_line() local
537 for ( nCount = i_src.read(&c, 1); in operator_read_line()
538 nCount == 1 AND c != 13 AND c != 10; in operator_read_line()
539 nCount = i_src.read(&c, 1) ) in operator_read_line()
541 operator<<(c); in operator_read_line()
546 if ( NOT bEndOfStream AND c != 0 ) in operator_read_line()
548 char oldc = c; in operator_read_line()
549 if (i_src.read(&c, 1) == 1) in operator_read_line()
551 if ( (c != 13 AND c != 10) OR c == oldc) in operator_read_line()
/aoo4110/main/rsc/source/rscpp/
H A Dmakefile.mk81 cpp1.c: cppdef.h cpp.h
82 cpp2.c: cppdef.h cpp.h
83 cpp3.c: cppdef.h cpp.h
84 cpp4.c: cppdef.h cpp.h
85 cpp5.c: cppdef.h cpp.h
86 cpp6.c: cppdef.h cpp.h
/aoo4110/main/writerfilter/source/resourcemodel/
H A Dutil.cxx70 char c = *aIt; in xmlify() local
72 if (isprint(c) && c != '\"') in xmlify()
74 if (c == '<') in xmlify()
76 else if (c == '>') in xmlify()
78 else if (c == '&') in xmlify()
81 result += c; in xmlify()
85 snprintf(sBuffer, sizeof(sBuffer), "\\%03d", c); in xmlify()
/aoo4110/main/scaddins/source/analysis/
H A Danalysisdefs.hxx29 #define REF(c) CSS::uno::Reference< c > argument
31 #define SEQ(c) CSS::uno::Sequence< c > argument
32 #define SEQSEQ(c) CSS::uno::Sequence< CSS::uno::Sequence< c > > argument
/aoo4110/main/solenv/inc/
H A Drules.mk253 $(OBJ)/%.obj : %.c
260 …E_C) $(CFLAGSCC) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ) $(OBJ)/$*.o $*.c
270 …_C) $(CFLAGSCC) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(OBJ)/$*.obj $*.c
275 …_C) $(CFLAGSCC) $(CFLAGSOBJ) $(CDEFS) $(CDEFSOBJ) $(CFLAGSAPPEND) $(CFLAGSOUTOBJ)$(OBJ)/$*.obj $*.c
283 $(OBJ)/%.obj : $(MISC)/%.c
305 $(SLO)/%.obj : $(MISC)/%.c
328 $(SLO)/%.obj : %.c
400 not_existing/s_%.dpcc : %.c;@noop $(assign all_local_slo+:=$<)
401 not_existing/o_%.dpcc : %.c;@noop $(assign all_local_obj+:=$<)
490 not_existing/s_%.dpcc : $(MISC)/%.c;@noop $(assign all_misc_slo+:=$<)
[all …]

Completed in 176 milliseconds

1...<<11121314151617181920>>...46