HomeSort by relevance Sort by last modified time
    Searched full:appendstring (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebCore/html/
FormDataList.h 51 appendString(key);
52 appendString(value);
56 appendString(key);
57 appendString(value);
61 appendString(key);
62 appendString(String::number(value));
66 appendString(key);
74 void appendString(const CString&);
75 void appendString(const String&);
FormDataList.cpp 33 void FormDataList::appendString(const String& s)
39 void FormDataList::appendString(const CString& s)
  /external/icu4c/common/unicode/
appendable.h 82 virtual UBool appendString(const UChar *s, int32_t length);
103 * After writing at most *resultCapacity UChars, call appendString() with the
105 * Many appendString() implementations will avoid copying UChars if this function
113 * app.appendString(buffer, n);
123 * a prefix to it to appendString().
124 * That is, it is not correct to pass an interior pointer to appendString().
193 virtual UBool appendString(const UChar *s, int32_t length);
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.mm 267 [result appendString:@"\n--------------------------------------------\n"];
268 [result appendString:@"WebBackForwardList:\n"];
276 [result appendString:@" >>>"];
278 [result appendString:@" "];
282 [result appendString:[kit(entries[i].get()) description]];
288 [result appendString:@"\n"];
291 [result appendString:@"\n--------------------------------------------\n"];
WebHistoryItem.mm 221 [result appendString:@" *target*"];
224 [result appendString:@" *POST*"];
233 [result appendString:@"\n"];
234 [result appendString:[child description]];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRParseTree.m 113 [buf appendString:[hidden text]];
118 [buf appendString:nodeText];
135 [buf appendString:[self toStringWithHiddenTokens]];
ANTLRFastQueue.m 154 [buf appendString:[[self objectAtIndex:i] description]];
156 [buf appendString:@" "];
ANTLRBaseTree.m 507 [buf appendString:@"("];
508 [buf appendString:[self toString]];
509 [buf appendString:@" "];
514 [buf appendString:@" "];
516 [buf appendString:[(id<ANTLRBaseTree>)t toStringTree]];
519 [buf appendString:@")"];
AMutableArray.m 269 [str appendString:@"["];
271 [str appendString:[[self objectAtIndex:idx] toString]];
273 [str appendString:@"]"];
ANTLRPtrBuffer.m 340 [str appendString:@"["];
342 [str appendString:[[self objectAtIndex:idx] description]];
344 [str appendString:@"]"];
ANTLRCommonTreeNodeStream.m 236 [buf appendString:@" "];
237 [buf appendString:[NSString stringWithFormat:@"%d", type]];
ANTLRTokenRewriteStream.m 113 [buf appendString:text];
115 [buf appendString:[[tokens objectAtIndex:rwIndex] text]];
146 [buf appendString:text];
437 [buf appendString:[[tokens objectAtIndex:i] text]];
485 [buf appendString:t.text];
504 [buf appendString:op.text];
687 [buf appendString:[[tokens objectAtIndex:i] text]];
ANTLRBitSet.m 285 [descString appendString:@","];
291 [descString appendString:@"}"];
ANTLRCommonTree.m 262 [desc appendString:[self description]];
267 [desc appendString:@")"];
ANTLRBufferedTreeNodeStream.m 528 [buf appendString:text];
536 [buf appendString:text];
  /external/webkit/Tools/DumpRenderTree/mac/
AppleScriptController.m 81 [(NSMutableString*)value appendString:@", "];
83 [(NSMutableString*)value appendString:[obj description]];
85 [(NSMutableString*)value appendString:@")"];
  /external/icu4c/common/
appendable.cpp 33 Appendable::appendString(const UChar *s, int32_t length) {
  /external/chromium/chrome/browser/ui/cocoa/
confirm_quit_panel_controller.mm 390 [string appendString:@"\u2318"];
392 [string appendString:@"\u2303"];
394 [string appendString:@"\u2325"];
396 [string appendString:@"\u21E7"];
398 [string appendString:[item.characters() uppercaseString]];
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_printf.cc 76 static int AppendString(char **buff, const char *buff_end, const char *s) {
88 result += AppendString(buff, buff_end, "0x");
148 result += AppendString(&buff, buff_end, va_arg(args, char*));
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 201 [curDesc appendString:@"\n"];
208 [curDesc appendString:[curLayer _descriptionWithPrefix:sublayerPrefix]];
211 [curDesc appendString:@"\n"];
  /external/webkit/Source/WebKit/mac/Misc/
WebKitNSStringExtras.mm 237 [result appendString:@" "];
239 [result appendString:[self substringWithRange:
271 [result appendString:@" "];
272 [result appendString:[self substringWithRange:NSMakeRange(nonSpace.location, space.location - nonSpace.location)]];
  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.h 75 virtual void appendString(const String&);
MarkupAccumulator.cpp 117 void MarkupAccumulator::appendString(const String& string)
126 appendString(String::adopt(markup));
135 appendString(String::adopt(markup));
markup.cpp 127 virtual void appendString(const String& s) { return MarkupAccumulator::appendString(s); }
174 appendString(isBlock ? divClose : styleSpanClose);
571 accumulator.appendString(interchangeNewlineString);
665 accumulator.appendString(interchangeNewlineString);
    [all...]
  /external/v8/src/
log.cc 457 void AppendString(String* str) {
907 name_buffer_->AppendString(name);
949 name_buffer_->AppendString(name);
990 name_buffer_->AppendString(shared->DebugName());
992 name_buffer_->AppendString(source);
1063 name_buffer_->AppendString(source);
    [all...]

Completed in 1001 milliseconds

1 2