HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 401 - 425 of 856) sorted by null

<<11121314151617181920>>

  /external/smack/src/org/xbill/DNS/
CERTRecord.java 75 public static String
76 string(int type) { method in class:CERTRecord.CertificateType
87 value(String s) {
148 String certTypeString = st.getString();
154 String algString = st.getString();
162 * Converts rdata to a String
164 String
SIGBase.java 66 String typeString = st.getString();
70 String algString = st.getString();
83 /** Converts the RRSIG/SIG Record to a String */
84 String
87 sb.append (Type.string(covered));
  /external/v8/test/cctest/
test-compiler.cc 51 v8::Handle<v8::String> name);
62 v8::Handle<v8::String> str) {
72 v8::Handle<v8::String> string_obj = arg->ToString();
75 uint16_t* string = NewArray<uint16_t>(length + 1); local
76 string_obj->Write(string);
78 printf("%lc", static_cast<wchar_t>(string[j]));
79 DeleteArray(string);
103 Handle<String> symbol = FACTORY->LookupAsciiSymbol(name);
110 Handle<String> symbol = FACTORY->LookupAsciiSymbol(name);
117 Handle<String> source_code(FACTORY->NewStringFromUtf8(CStrVector(source)))
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readstabs.c 146 Char *string; local
157 /* handle continued string stabs */
167 string = stabstr + qstringidx;
168 qlen = VG_(strlen)(string);
170 while (string
172 && (qcontinuing || string[qlen-1] == '\\')) {
178 qcontinuing = string[qlen-1] == '\\';
181 while (string[qlen-1] == '\\' && qlen > 0)
185 VG_(printf)("found extension string: \"%s\" "
187 string, qlen, string[qlen-1], qidx, qbuflen)
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObjectFunctions.cpp 57 return throwError(exec, createURIError(exec, "String contained an illegal UTF-16 sequence."));
387 // Empty string.
428 // Empty string.
593 CString string = exec->argument(0).toString(exec).utf8(); local
594 puts(string.data());
JSString.h 40 JSString* jsString(JSGlobalData*, const UString&); // returns empty string if passed null string
41 JSString* jsString(ExecState*, const UString&); // returns empty string if passed null string
87 void append(const UString& string)
90 m_rope->initializeFiber(m_index, string.impl());
98 append(jsString->string());
221 // This constructor constructs a new string by concatenating s1 & s2.
234 // This constructor constructs a new string by concatenating s1 & s2.
247 // This constructor constructs a new string by concatenating s1 & s2
433 UString& string() { ASSERT(!isRope()); return m_value; } function in class:JSC::JSString
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8NPObject.cpp 58 const char* string() const { return m_isString ? m_value.m_string : 0; } function in struct:WebCore::IdentifierRep
116 v8::Handle<v8::String> functionName(v8::String::Cast(*args.Data()));
215 v8Function->SetName(v8::Handle<v8::String>::Cast(key));
222 v8::Handle<v8::Value> npObjectNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
234 v8::Handle<v8::Value> npObjectGetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name)
246 v8::Handle<v8::Integer> npObjectQueryProperty(v8::Local<v8::String> name, const v8::AccessorInfo& info)
277 v8::Handle<v8::Value> npObjectNamedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
290 v8::Handle<v8::Value> npObjectSetNamedProperty(v8::Local<v8::Object> self, v8::Local<v8::String> name, v8::Local<v8::Value> value)
319 properties->Set(v8::Integer::New(i), v8::String::New(identifier->string()))
    [all...]
  /external/webkit/Source/WebCore/css/
CSSParserValues.h 38 operator String() const { return String(characters, length); }
50 CSSParserString string; member in union:WebCore::CSSParserValue::__anon17723
  /external/webkit/Source/WebCore/platform/
KURL.h 64 typedef HashMap<String, String> ParsedURLParameters;
70 // Generates a URL which contains a null string.
73 // The argument is an absolute URL string. The string is assumed to be output of KURL::string() called on a valid
75 // It is usually best to avoid repeatedly parsing a string, unless memory saving outweigh the possible slow-downs.
77 KURL(ParsedURLStringTag, const String&);
84 bool isHashTableDeletedValue() const { return string().isHashTableDeletedValue(); }
93 KURL(const KURL& base, const String& relative)
132 const String& string() const { return m_url.string(); } function in class:WebCore::KURL
135 const String& string() const { return m_string; } function in class:WebCore::KURL
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 50 static const QString fromRawDataWithoutRef(const String& string, int start = 0, int len = -1)
53 len = string.length() - start;
54 Q_ASSERT(start + len <= string.length());
56 // We don't detach. This assumes the WebCore string data will stay valid for the
57 // lifetime of the QString we pass back, since we don't ref the WebCore string.
58 return QString::fromRawData(reinterpret_cast<const QChar*>(string.characters() + start), len);
110 String sanitized = Font::normalizeSpaces(run.characters(), run.length());
111 QString string = fromRawDataWithoutRef(sanitized); local
116 QTextLayout layout(string, font)
285 QString string = fromRawDataWithoutRef(sanitized); local
308 QString string = fromRawDataWithoutRef(sanitized); local
321 QString string = fromRawDataWithoutRef(sanitized); local
344 QString string = fromRawDataWithoutRef(sanitized); local
366 QString string = fromRawDataWithoutRef(sanitized); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFileUploadControl.cpp 60 Vector<String> filenames;
113 void RenderFileUploadControl::receiveDropForDirectoryUpload(const Vector<String>& paths)
120 String RenderFileUploadControl::acceptTypes()
126 String RenderFileUploadControl::capture()
132 void RenderFileUploadControl::chooseIconForFiles(FileChooser* chooser, const Vector<String>& filenames)
229 const String& displayedFilename = fileTextValue();
231 const UChar* string = displayedFilename.characters(); local
232 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !style()->isLeftToRightDirection(), style()->unicodeBidi() == Override);
318 void RenderFileUploadControl::receiveDroppedFiles(const Vector<String>& paths)
333 String RenderFileUploadControl::buttonValue(
    [all...]
  /external/webkit/Source/WebKit/win/
MarshallingHelpers.cpp 44 return KURL(KURL(), String(urlStr, SysStringLen(urlStr)));
49 return SysAllocStringLen(url.string().characters(), url.string().length());
52 CFURLRef MarshallingHelpers::PathStringToFileCFURLRef(const String& string)
54 CFStringRef cfPath = CFStringCreateWithCharactersNoCopy(0, (const UniChar*)string.characters(), string.length(), kCFAllocatorNull);
60 String MarshallingHelpers::FileCFURLRefToPathString(CFURLRef fileURL)
62 CFStringRef string = CFURLCopyFileSystemPath(fileURL, kCFURLWindowsPathStyle); local
63 String result(string)
    [all...]
  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.cpp 180 RetainPtr<CFStringRef> string; local
181 if (!decode(decoder, string))
183 result.adoptCF(string.leakRef());
410 void encode(ArgumentEncoder* encoder, CFStringRef string)
412 CFIndex length = CFStringGetLength(string);
413 CFStringEncoding encoding = CFStringGetFastestEncoding(string);
418 CFIndex numConvertedBytes = CFStringGetBytes(string, range, encoding, 0, false, 0, 0, &bufferLength);
422 numConvertedBytes = CFStringGetBytes(string, range, encoding, 0, false, buffer.data(), buffer.size(), &bufferLength);
442 CFStringRef string = CFStringCreateWithBytes(0, dataReference.data(), dataReference.size(), encoding, false);
443 if (!string)
471 RetainPtr<CFStringRef> string; local
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 84 const char* string = identifierRep->string(); local
85 int length = strlen(string);
87 return Identifier(exec, String::fromUTF8WithLatin1Fallback(string, length).impl());
  /external/webkit/Tools/GtkLauncher/
main.c 44 GString *string = g_string_new(webkit_web_view_get_title(webView)); local
46 g_string_append(string, " - WebKit Launcher");
48 g_string_append_printf(string, " (%f%%)", loadProgress);
49 gchar *title = g_string_free(string, FALSE);
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.cpp 184 QString string = m_addressBar->text(); local
185 m_browser->load(string);
  /frameworks/base/core/java/android/text/util/
Linkify.java 143 public final String transformUrl(final Matcher match, String url) {
194 String transformUrl(final Matcher match, String url);
219 new String[] { "http://", "https://", "rtsp://" },
225 new String[] { "mailto:" },
302 * @param scheme Url scheme string (eg <code>http://</code> to be
306 public static final void addLinks(TextView text, Pattern pattern, String scheme) {
318 * @param scheme Url scheme string (eg <code>http://</code> to be
325 public static final void addLinks(TextView text, Pattern p, String scheme
464 String string = s.toString(); local
    [all...]
  /frameworks/base/core/java/android/util/
JsonWriter.java 118 * malformed JSON string will fail with an {@link IllegalStateException}.
131 * A string containing a full set of spaces for a single level of
134 private String indent;
139 private String separator = ":";
156 * Sets the indentation string to be repeated for each level of indentation
161 * @param indent a string containing only whitespace.
163 public void setIndent(String indent) {
238 private JsonWriter open(JsonScope empty, String openBracket) throws IOException {
249 private JsonWriter close(JsonScope empty, JsonScope nonempty, String closeBracket)
284 public JsonWriter name(String name) throws IOException
369 String string = value.toString(); local
400 private void string(String value) throws IOException { method in class:JsonWriter
    [all...]
  /frameworks/rs/
rsCppUtils.h 41 #include <string>
57 class String8: public std::string {
59 String8(const char *ptr) : std::string(ptr) {
62 String8(const char *ptr, size_t len) : std::string(ptr, len) {
65 String8() : std::string() {
69 const char* string() const { function in class:android::String8
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 52 const char* string; member in struct:android::integer_string_pair
206 return degress_to_exif_lut[i].string;
222 // convert the decimal string into a rational
  /libcore/json/src/main/java/org/json/
JSONStringer.java 30 * String json = object.toString();</pre>
43 * Calls that would result in a malformed JSON string will fail with a
117 * A string containing a full set of spaces for a single level of
120 private final String indent;
129 indent = new String(indentChars);
174 JSONStringer open(Scope empty, String openBracket) throws JSONException {
188 JSONStringer close(Scope empty, Scope nonempty, String closeBracket) throws JSONException {
222 * @param value a {@link JSONObject}, {@link JSONArray}, String, Boolean,
252 string(value.toString());
302 private void string(String value) method in class:JSONStringer
    [all...]
  /libcore/luni/src/main/java/java/util/
TimeZone.java 86 private String ID;
107 public static synchronized String[] getAvailableIDs() {
118 public static synchronized String[] getAvailableIDs(int offsetMillis) {
140 public final String getDisplayName() {
147 public final String getDisplayName(Locale locale) {
155 public final String getDisplayName(boolean daylightTime, int style) {
169 public String getDisplayName(boolean daylightTime, int style, Locale locale) {
174 String[][] zoneStrings = TimeZoneNames.getZoneStrings(locale);
175 String result = TimeZoneNames.getDisplayName(zoneStrings, getID(), daylightTime, style);
211 String string = Integer.toString(value) local
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeBreakIterator.java 35 private String string; field in class:NativeBreakIterator
48 clone.string = this.string;
81 return currentImpl(this.address, this.string);
85 return firstImpl(this.address, this.string);
89 return followingImpl(this.address, this.string, offset);
93 int newLocation = currentImpl(this.address, this.string);
99 return lastImpl(this.address, this.string);
103 return nextImpl(this.address, this.string, n)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 67 * iPAddress [7] OCTET STRING,
130 /** the name value (can be String or byte array) */
139 * well established string representation of the name value.
140 * The String representation of [7] iPAddress is such as:
149 * have no the string representation, so exception will be thrown.
154 public GeneralName(int tag, String name) throws IOException {
163 throw new IOException("Unknown string representation for type [" + tag + "]");
259 * [1] rfc822Name - String object,
260 * [2] dNSName - String object,
264 * [6] uniformResourceIdentifier - String object
562 String string = dns.toLowerCase(Locale.US); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
SimpleTimeZoneTest.java 33 * java.util.SimpleTimeZone#SimpleTimeZone(int, java.lang.String)
36 // Test for method java.util.SimpleTimeZone(int, java.lang.String)
47 * java.util.SimpleTimeZone#SimpleTimeZone(int, java.lang.String,
51 // Test for method java.util.SimpleTimeZone(int, java.lang.String, int,
104 * java.util.SimpleTimeZone#SimpleTimeZone(int, java.lang.String,
108 // Test for method java.util.SimpleTimeZone(int, java.lang.String, int,
163 * java.util.SimpleTimeZone#SimpleTimeZone(int, java.lang.String,
167 // Test for method java.util.SimpleTimeZone(int, java.lang.String, int,
779 // Test for method java.lang.String java.util.SimpleTimeZone.toString()
780 String string = TimeZone.getTimeZone("EST").toString() local
    [all...]

Completed in 1310 milliseconds

<<11121314151617181920>>