| /external/skia/src/core/ |
| SkOrderedReadBuffer.cpp | 90 const char* string = fReader.readString(); local 91 const int32_t length = strlen(string); 93 strcpy(value, string);
|
| /external/skia/src/xml/ |
| SkJS.cpp | 197 SkBool SkJS::ValueToString(jsval value, SkString* string) { 201 string->set(JS_GetStringBytes(str)); 211 SkString string; local 212 success = js.ValueToString(val, &string); 214 SkASSERT(strcmp(string.c_str(), "3.142857142857143") == 0); 225 success = js.ValueToString(val, &string);
|
| SkJSDisplayable.cpp | 234 SkString* string= NULL; local 257 info->getString(displayable, &string); 287 str = JS_NewStringCopyN(cx, string->c_str(), string->size()); 310 SkString string; local 335 string.set(JS_GetStringBytes(str)); 360 info->setString(displayable, &string);
|
| /external/smack/src/org/xbill/DNS/ |
| Header.java | 240 /** Converts the header's flags into a String */ 241 public String 247 sb.append(Flags.string(i)); 253 String 258 sb.append("opcode: " + Opcode.string(getOpcode())); 259 sb.append(", status: " + Rcode.string(newrcode)); 266 sb.append(Section.string(i) + ": " + getCount(i) + " "); 270 /** Converts the header into a String */ 271 public String
|
| Rcode.java | 105 /** Converts a numeric Rcode into a String */ 106 public static String 107 string(int i) { method in class:Rcode 111 /** Converts a numeric TSIG extended Rcode into a String */ 112 public static String 117 /** Converts a String representation of an Rcode into its numeric value */ 119 value(String s) {
|
| TypeBitmap.java | 87 public String 92 sb.append(Type.string(t));
|
| /external/v8/tools/ |
| js2c.py | 34 import os, re, sys, string namespace 89 def ParseValue(string): 90 string = string.strip() 91 if string.startswith('[') and string.endswith(']'): 92 return string.lstrip('[').rstrip(']').split() 94 return string 198 args = map(string.strip, macro_match.group(2).split(',')) 205 args = map(string.strip, python_match.group(2).split(',') [all...] |
| /external/webkit/Source/JavaScriptCore/runtime/ |
| JSString.cpp | 37 // Overview: this methods converts a JSString from holding a string in rope form 38 // down to a simple UString representation. It does so by building up the string 41 // (since appending to the string is likely more common) - and as such resolving 51 // Allocate the buffer to hold the final string, position initially points to the end. 85 StringImpl* string = static_cast<StringImpl*>(currentFiber); local 86 unsigned length = string->length(); 88 StringImpl::copyChars(position, string->characters(), length); 92 // Create a string from the UChar buffer, clear the rope RefPtr. 176 // Count total fibers and find matching string. 185 StringImpl* string = *it local 200 StringImpl* string = *it; local 258 return new (exec) StringObject(exec->globalData(), globalObject->stringObjectStructure(), string); local [all...] |
| /external/webkit/Source/JavaScriptCore/wtf/text/ |
| AtomicString.h | 28 // to disallow (expensive) implicit String-->AtomicString conversions. 50 ATOMICSTRING_CONVERSION AtomicString(const String& s) : m_string(add(s.impl())) { } 58 operator const String&() const { return m_string; } 59 const String& string() const { return m_string; }; function in class:WTF::AtomicString 71 bool contains(const String& s, bool caseSensitive = true) const 77 size_t find(const String& s, size_t start = 0, bool caseSentitive = true) const 80 bool startsWith(const String& s, bool caseSensitive = true) const 82 bool endsWith(const String& s, bool caseSensitive = true) const 99 AtomicString(CFStringRef s) : m_string(add(String(s).impl())) { [all...] |
| /external/webkit/Source/WebCore/bridge/jni/ |
| jni_jsobject.h | 69 jstring string; member in struct:JSC::Bindings::JSObjectCallContext
|
| /external/webkit/Source/WebCore/platform/text/ |
| TextBreakIteratorICU.cpp | 35 UBreakIteratorType type, const UChar* string, int length) 37 if (!string) 50 ubrk_setText(reinterpret_cast<UBreakIterator*>(iterator), string, length, &setTextStatus); local 57 TextBreakIterator* characterBreakIterator(const UChar* string, int length) 62 staticCharacterBreakIterator, UBRK_CHARACTER, string, length); 65 TextBreakIterator* wordBreakIterator(const UChar* string, int length) 70 staticWordBreakIterator, UBRK_WORD, string, length); 76 TextBreakIterator* acquireLineBreakIterator(const UChar* string, int length) 80 setUpIterator(createdLineBreakIterator, staticLineBreakIterator, UBRK_LINE, string, length); 86 setUpIterator(createdNewLineBreakIterator, lineBreakIterator, UBRK_LINE, string, length) 170 ubrk_setText(reinterpret_cast<UBreakIterator*>(iterator), string, length, &setTextStatus); local [all...] |
| /external/webkit/Source/WebCore/platform/text/brew/ |
| TextBreakIteratorBrew.cpp | 55 string = str; 74 const UChar* string; member in class:WebCore::TextBreakIterator 116 if (haveSpace && !isSpace(string[currentPos])) 118 if (isSpace(string[currentPos])) 133 if (haveSpace && !isSpace(string[currentPos])) 135 if (isSpace(string[currentPos])) 153 while (currentPos < length && !isCharStop(string[currentPos])) 165 while (currentPos > 0 && !isCharStop(string[currentPos])) 184 if (haveSpace && !isLineStop(string[currentPos])) 186 if (isLineStop(string[currentPos]) [all...] |
| /external/webkit/Source/WebCore/platform/text/wince/ |
| TextBreakIteratorWinCE.cpp | 55 string = str; 83 const UChar* string; member in class:WebCore::TextBreakIterator 115 if (haveSpace && !isSpace(string[currentPos])) 117 if (isSpace(string[currentPos])) 132 if (haveSpace && !isSpace(string[currentPos])) 134 if (isSpace(string[currentPos])) 146 while (currentPos < length && !isCharStop(string[currentPos])) 158 while (currentPos > 0 && !isCharStop(string[currentPos])) 171 if (haveSpace && !isLineStop(string[currentPos])) 173 if (isLineStop(string[currentPos]) [all...] |
| /external/webkit/Source/WebKit/win/ |
| WebLocalizableStrings.cpp | 47 typedef HashMap<String, LocalizedString*> LocalizedStringMap; 76 LocalizedString(CFStringRef string) 77 : m_cfString(string) 79 ASSERT_ARG(string, string); 87 mutable String m_string; 136 String bundlePathString(pathStr); 165 static CFStringRef copyLocalizedStringFromBundle(WebLocalizableStringsBundle* stringsBundle, const String& key) 167 static CFStringRef notFound = CFSTR("localized string not found"); 176 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key) 209 LocalizedString* string = findCachedString(stringsBundle, key); local [all...] |
| /external/webkit/Source/WebKit2/Shared/ |
| UserMessageCoders.h | 50 // - String -> String 94 WebString* string = static_cast<WebString*>(m_root); local 95 encoder->encode(string->string()); 120 encoder->encode(urlObject->string()); 176 // - String -> String 221 String key; 239 String string local 274 String string; local 281 String string; local [all...] |
| /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
| JSNPObject.cpp | 351 const char* string = identifierRep->string(); local 352 int length = strlen(string); 354 identifier = Identifier(exec, String::fromUTF8WithLatin1Fallback(string, length).impl());
|
| /external/webkit/Tools/wx/packaging/ |
| build-mac-installer.py | 35 import string namespace 159 exitIfError(packagemaker + " %s" % (string.join(pkg_args, " ")))
|
| /frameworks/av/media/libmedia/ |
| MemoryLeakTrackUtil.cpp | 37 // Use the String-class below instead of String8 to allocate all memory 55 const char *string() const { function in struct:android::MyString8 161 write(fd, result.string(), result.size());
|
| /frameworks/base/core/java/android/webkit/ |
| ZoomControlEmbedded.java | 49 com.android.internal.R.string.double_tap_toast,
|
| /frameworks/base/media/jni/mediaeditor/ |
| VideoEditorJava.cpp | 74 // Get the error string. 318 jstring string = NULL; local 329 // Check if an object containing a string was specified. 332 // Retrieve the string object. 333 string = (jstring)pEnv->GetObjectField(object, stringFieldId); 340 // The string itself was specified. 341 string = (jstring)object; 344 // Check if the string could be retrieved. 345 if (NULL != string) 347 // Get a local copy of the string [all...] |
| /frameworks/base/tools/aapt/ |
| XMLNode.h | 88 String16 string; member in struct:XMLNode::attribute_entry
|
| /frameworks/compile/mclinker/lib/Support/ |
| Path.cpp | 15 #include <string.h> 67 assert(0 && "assign a null or empty string to Path"); 85 else if(this->string()[this->native().size()-1] != separator && 86 pPath.string()[0] != separator) { 102 std::string Path::string() const function in class:Path 109 std::string result = m_PathName;
|
| /frameworks/wilhelm/tests/examples/ |
| xaVideoDecoderCapabilities.cpp | 19 #include <string.h> 57 // Use a table of [integer, string] entries to map an integer to a string 61 const char *string; member in struct:__anon20400 69 return table[i].string; 75 // Use a table of [integer, table] entries to map a pair of integers to a string 95 // Map a video codec and profile to string 158 // Map a video codec and level to string
|
| /libcore/dalvik/src/main/java/dalvik/system/profiler/ |
| BinaryHprof.java | 37 static String MAGIC = "JAVA PROFILE "; 40 * Returns the file's magic value as a String if found, otherwise null. 42 public static final String readMagic(DataInputStream in) { 48 String string = new String(bytes, 0, i, "UTF-8"); local 49 if (string.startsWith(MAGIC)) { 50 return string; 119 * String error message if not. 121 public String checkSize(int actual) [all...] |
| /ndk/sources/host-tools/make-3.81/ |
| vmsfunctions.c | 161 static struct dsc$descriptor_s string = local
|