HomeSort by relevance Sort by last modified time
    Searched refs:stringRef (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebKit2/Shared/API/c/cf/
WKStringCF.cpp 41 CFStringRef WKStringCopyCFString(CFAllocatorRef allocatorRef, WKStringRef stringRef)
43 ASSERT(!toImpl(stringRef)->string().isNull());
47 return CFStringCreateWithCharacters(allocatorRef, reinterpret_cast<const UniChar*>(toImpl(stringRef)->string().characters()), toImpl(stringRef)->string().length());
  /external/webkit/Source/WebKit2/Shared/API/c/
WKString.cpp 45 bool WKStringIsEmpty(WKStringRef stringRef)
47 return toImpl(stringRef)->isEmpty();
50 size_t WKStringGetLength(WKStringRef stringRef)
52 return toImpl(stringRef)->length();
55 size_t WKStringGetCharacters(WKStringRef stringRef, WKChar* buffer, size_t bufferLength)
58 return (toImpl(stringRef)->getCharacters(static_cast<UChar*>(buffer), bufferLength));
61 size_t WKStringGetMaximumUTF8CStringSize(WKStringRef stringRef)
63 return toImpl(stringRef)->maximumUTF8CStringSize();
66 size_t WKStringGetUTF8CString(WKStringRef stringRef, char* buffer, size_t bufferSize)
68 return toImpl(stringRef)->getUTF8CString(buffer, bufferSize)
    [all...]
WKSharedAPICast.h 160 inline String toWTFString(WKStringRef stringRef)
162 if (!stringRef)
164 return toImpl(stringRef)->string();
  /external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/
WKStringQt.cpp 37 QString WKStringCopyQString(WKStringRef stringRef)
39 if (!stringRef)
41 const WTF::String& string = toImpl(stringRef)->string();
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpreferences.cpp 93 WKRetainPtr<WKStringRef> stringRef(AdoptWK, WKPreferencesCopyStandardFontFamily(d->ref));
94 return WKStringCopyQString(stringRef.get());
97 WKRetainPtr<WKStringRef> stringRef(AdoptWK, WKPreferencesCopyFixedFontFamily(d->ref));
98 return WKStringCopyQString(stringRef.get());
101 WKRetainPtr<WKStringRef> stringRef(AdoptWK, WKPreferencesCopySerifFontFamily(d->ref));
102 return WKStringCopyQString(stringRef.get());
105 WKRetainPtr<WKStringRef> stringRef(AdoptWK, WKPreferencesCopySansSerifFontFamily(d->ref));
106 return WKStringCopyQString(stringRef.get());
109 WKRetainPtr<WKStringRef> stringRef(AdoptWK, WKPreferencesCopyCursiveFontFamily(d->ref));
110 return WKStringCopyQString(stringRef.get())
    [all...]
qgraphicswkview.h 18 QString WKStringCopyQString(WKStringRef stringRef);
  /external/webkit/Tools/WebKitTestRunner/
StringFunctions.h 82 inline std::ostream& operator<<(std::ostream& out, WKStringRef stringRef)
84 if (!stringRef)
87 return out << toSTD(stringRef);
90 inline std::ostream& operator<<(std::ostream& out, const WKRetainPtr<WKStringRef>& stringRef)
92 return out << stringRef.get();
  /external/llvm/include/llvm/ADT/
Twine.h 13 #include "llvm/ADT/StringRef.h"
22 class StringRef;
80 /// StringRef) codegen as desired.
100 /// A pointer to a StringRef instance.
138 const StringRef *stringRef;
281 /// Construct from a StringRef.
282 /*implicit*/ Twine(const StringRef &Str)
284 LHS.stringRef = &Str;
347 /// Construct as the concatenation of a C string and a StringRef
    [all...]
  /external/llvm/lib/Support/
Twine.cpp 31 StringRef Twine::toStringRef(SmallVectorImpl<char> &Out) const {
35 return StringRef(Out.data(), Out.size());
38 StringRef Twine::toNullTerminatedStringRef(SmallVectorImpl<char> &Out) const {
43 return StringRef(LHS.cString);
46 return StringRef(str->c_str(), str->size());
55 return StringRef(Out.data(), Out.size());
73 OS << *Ptr.stringRef;
122 OS << "stringref:\""
123 << Ptr.stringRef << "\"";
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceTest.java 287 WeakReference<String> stringRef;
290 stringRef = new WeakReference<String>(referent);
300 String s = stringRef.get();
  /external/webkit/Source/JavaScriptCore/API/
JSValueRef.cpp 291 RefPtr<OpaqueJSString> stringRef(OpaqueJSString::create(jsValue.toString(exec)));
296 stringRef.clear();
298 return stringRef.release().leakRef();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 513 milliseconds