Searched refs:cString (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.9.5/ICU-511.35/icuSources/test/letest/
H A Dletsutil.cpp38 char *cString = NEW_ARRAY(char, cLength + 1); local
40 uString->extract(0, uLength, cString, cLength, US_INV);
41 cString[cLength] = '\0';
43 return cString;
65 char *cString = NEW_ARRAY(char, cLength + 1); local
67 uString->extract(0, uLength, cString, cLength, "UTF-8");
69 cString[cLength] = '\0';
71 return cString;
74 void freeCString(char *cString) argument
76 DELETE_ARRAY(cString);
[all...]
H A Dletsutil.h33 void freeCString(char *cString);
/macosx-10.9.5/kext_tools-326.95.1/
H A Dkextfind_report.c150 char * cString = NULL; // must free local
159 cString = createUTF8CStringForCFString(propKey);
160 if (!cString) {
165 cString);
169 cString = cStringForCFValue(propVal);
170 if (!cString) {
175 cString);
182 if (cString) free(cString);
233 char * cString local
393 char * cString = NULL; // must free local
438 char * cString = NULL; // must free local
608 char * cString = NULL; // must free local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DHTTPHeaderMap.cpp82 static unsigned hash(const char* cString) argument
84 return CaseFoldingHash::hash(cString, strlen(cString));
87 static bool equal(const AtomicString& key, const char* cString) argument
89 return equalIgnoringCase(key, cString);
92 static void translate(AtomicString& location, const char* cString, unsigned /*hash*/) argument
94 location = AtomicString(cString);
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/c++/
H A DOSString.h144 * @param cString The C string to copy into the new OSString.
152 static OSString * withCString(const char * cString);
162 * @param cString The C string to reference.
165 * An instance of OSString containing <code>cString</code>,
181 static OSString * withCStringNoCopy(const char * cString);
208 * @param cString The C string to copy into the new OSString.
217 virtual bool initWithCString(const char * cString);
227 * @param cString The C string to reference.
247 virtual bool initWithCStringNoCopy(const char * cString);
349 * @param cString Th
[all...]
H A DOSSymbol.h124 * @param cString Unused.
133 virtual bool initWithCString(const char * cString);
142 * @param cString Unused.
151 virtual bool initWithCStringNoCopy(const char *cString);
267 * @param cString The C string to look up or copy.
271 * the same characters as <code>cString</code>;
276 * representing the string value of <code>cString</code>.
284 static const OSSymbol * withCString(const char * cString);
295 * @param cString The C string to look up or use.
298 * the same characters as <code>cString</cod
[all...]
H A DOSSerialize.h264 * @param cString The C string to append to the XML stream.
267 * <code>true</code> if <code>cString</code>
270 virtual bool addString(const char * cString);
/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSString.cpp73 bool OSString::initWithCString(const char *cString) argument
75 if (!cString || !super::init())
78 length = strlen(cString) + 1;
83 bcopy(cString, string, length);
90 bool OSString::initWithCStringNoCopy(const char *cString) argument
92 if (!cString || !super::init())
95 length = strlen(cString) + 1;
97 string = const_cast<char *>(cString);
114 OSString *OSString::withCString(const char *cString) argument
118 if (me && !me->initWithCString(cString)) {
126 withCStringNoCopy(const char *cString) argument
[all...]
H A DOSSymbol.cpp121 OSSymbol *findSymbol(const char *cString) const;
268 OSSymbol *OSSymbolPool::findSymbol(const char *cString) const
274 hashSymbol(cString, &hash, &inLen); inLen++;
285 && (strncmp(probeSymbol->string, cString, probeSymbol->length) == 0))
293 && (strncmp(probeSymbol->string, cString, probeSymbol->length) == 0))
302 const char *cString = sym->string; local
307 hashSymbol(cString, &hash, &inLen); inLen++;
322 && strncmp(probeSymbol->string, cString, probeSymbol->length) == 0)
341 && strncmp(probeSymbol->string, cString, probeSymbol->length) == 0)
491 const OSSymbol *OSSymbol::withCString(const char *cString) argument
521 withCStringNoCopy(const char *cString) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A Dmutils.m36 getpassword([prompt cString], buffer);
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A Dmutils.m36 getpassword([prompt cString], buffer);
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Hakoiri-Musume/
H A Dmain_0.3.m55 conf->main_script = strdup ([str cString]);
62 conf->ruby_program = strdup ([str cString]);
69 conf->main_script = strdup ([str cString]);
75 conf->resource_dir = strdup ([str cString]);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DTwine.h136 const char *cString; member in union:llvm::Twine::Child
266 LHS.cString = Str;
350 LHS.cString = _LHS;
359 RHS.cString = _RHS;
431 case CStringKind: return StringRef(LHS.cString);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DTwine.cpp43 return StringRef(LHS.cString);
67 OS << Ptr.cString;
115 << Ptr.cString << "\"";
/macosx-10.9.5/swig-10/Lib/csharp/
H A Dwchar.i32 static string CreateWString([MarshalAs(UnmanagedType.LPWStr)]IntPtr cString) {
33 return System.Runtime.InteropServices.Marshal.PtrToStringUni(cString);
H A Dcsharphead.swg303 static string CreateString(string cString) {
304 return cString;
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dobjc.vim74 syn region objcMessage display start="\[" end="\]" contains=objcMessage,objcStatement,objcType,objcTypeModifier,objcString,objcConstant,objcDirective,cType,cStructure,cStorageClass,cString,cCharacter,cSpecialCharacter,cNumbers,cConstant,cOperator,cComment,cCommentL,Type
91 HiLink objcImported cString
100 HiLink objcString cString
H A Dc.vim34 syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,@Spell
35 " cCppString: same as cString, but ends at end of line
44 syn region cString start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=cSpecial,cFormat,@Spell
45 " cCppString: same as cString, but ends at end of line
87 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
93 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cParen,cString,@Spell
99 syn region cCppParen transparent start='(' skip='\\$' excludenl end=')' end='$' contained contains=ALLBUT,@cParenGroup,cErrInBracket,cParen,cBracket,cString,@Spell
104 syn region cCppBracket transparent start='\[\|<::\@!' skip='\\$' excludenl end=']\|:>' end='$' contained contains=ALLBUT,@cParenGroup,cErrInParen,cParen,cBracket,cString,@Spell
138 " A comment can contain cString, cCharacter and cNumber.
139 " But a "*/" inside a cString i
[all...]
H A Dclipper.vim93 " A comment can contain cString, cCharacter and cNumber.
94 " But a "*/" inside a cString in a clipperComment DOES end the comment!
95 " So we need to use a special type of cString: clipperCommentString, which
/macosx-10.9.5/WebKit-7537.78.2/gtk/tests/
H A Dtestkeyevents.c168 gchar* cString = g_malloc(size); local
169 JSStringGetUTF8CString(inputString, cString, size);
172 gboolean result = g_utf8_collate(cString, text) == 0;
173 g_free(cString);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitHitTestResult.cpp259 static bool stringIsEqualToCString(const String& string, const CString& cString) argument
261 return ((string.isEmpty() && cString.isNull()) || (string.utf8() == cString));
/macosx-10.9.5/ncurses-42/ncurses/ncurses/base/
H A Dvsscanf.c62 ,cString enumerator in enum:__anon11137
138 result = cString;
324 case cString:
/macosx-10.9.5/CF-855.17/
H A DCFStringEncodings.c640 const unsigned char *cString = NULL; local
647 if ((cString = (const unsigned char *)CFStringGetCStringPtr(string, __CFStringGetEightBitStringEncoding()))) {
648 ptr = (cString += rangeLoc);
651 if (buffer) memmove(buffer, cString, numCharsProcessed);
661 numCharsProcessed = ptr - cString;
664 memmove(buffer, cString, numCharsProcessed);
675 if (!cString && (cString = CFStringGetPascalStringPtr(string, __CFStringGetEightBitStringEncoding()))) {
676 ptr = (cString += (rangeLoc + 1));
679 if (buffer) memmove(buffer, cString, numCharsProcesse
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dutexttst.c65 const char * cString = "\x61\x62\x63\x64"; local
78 uta = utext_openUTF8(&utLoc, cString, -1, &status);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/tests/
H A DWebViewTest.cpp372 char* cString = static_cast<char*>(g_malloc(cStringLength)); local
373 JSStringGetUTF8CString(stringValue.get(), cString, cStringLength);
374 return cString;

Completed in 192 milliseconds

12