HomeSort by relevance Sort by last modified time
    Searched defs:append (Results 1 - 25 of 1243) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
DOMFormData.cpp 59 void DOMFormData::append(const String& name, const String& value) function in class:blink::DOMFormData
65 void DOMFormData::append(const String& name, Blob* blob, const String& filename) function in class:blink::DOMFormData
  /libcore/luni/src/main/java/java/lang/
Appendable.java 22 * Declares methods to append characters or character sequences. Any class that
41 * the character to append.
46 Appendable append(char c) throws IOException; method in interface:Appendable
50 * not append the whole sequence, for example if the target is a buffer with
56 * the character sequence to append.
61 Appendable append(CharSequence csq) throws IOException; method in interface:Appendable
67 * to calling {@code append(csq.subSequence(start, end))}.
72 * the character sequence to append.
86 Appendable append(CharSequence csq, int start, int end) throws IOException; method in interface:Appendable
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityParser.h 44 void append(UChar c) function in class:blink::DecodedHTMLEntity
50 void append(UChar32 c)
53 append(static_cast<UChar>(c));
56 append(U16_LEAD(c));
57 append(U16_TRAIL(c));
HTMLViewSourceParser.cpp 66 void HTMLViewSourceParser::append(PassRefPtr<StringImpl> input) function in class:blink::HTMLViewSourceParser
BackgroundHTMLInputStream.cpp 38 void BackgroundHTMLInputStream::append(const String& input) function in class:blink::BackgroundHTMLInputStream
40 m_current.append(SegmentedString(input));
41 m_segments.append(input);
52 m_checkpoints.append(Checkpoint(m_current, m_segments.size(), tokensExtractedSincePreviousCheckpoint));
91 m_current.append(SegmentedString(m_segments[i]));
  /external/chromium_org/third_party/WebKit/Source/core/testing/
LayerRectList.cpp 57 void LayerRectList::append(PassRefPtrWillBeRawPtr<Node> layerRootNode, const String& layerType, int layerOffsetX, int layerOffsetY, PassRefPtrWillBeRawPtr<ClientRect> layerRelativeRect) function in class:blink::LayerRectList
59 m_list.append(LayerRect::create(layerRootNode, layerType, layerOffsetX, layerOffsetY, layerRelativeRect));
  /external/chromium_org/third_party/WebKit/Source/platform/
KillRingNone.cpp 31 void KillRing::append(const String&) function in class:blink::KillRing
  /external/deqp/framework/delibs/decpp/
dePoolString.cpp 38 void PoolString::append (const char* str) function in class:de::PoolString
47 void PoolString::append (const std::string& str) function in class:de::PoolString
55 void PoolString::append (const PoolString& str) function in class:de::PoolString
  /external/icu/icu4c/source/layout/
LEInsertionList.h 166 * to be first on the list, we need to append the
171 le_bool append; member in class:LEInsertionList
  /external/srec/shared/include/
lstring.h 46 * @param value Value to append.
48 ESR_ReturnCode(*append)(struct LString_t* self, const LCHAR* value); member in struct:LString_t
84 * @param value Value to append.
  /hardware/intel/img/hwcomposer/common/utils/
Dump.cpp 36 void Dump::append(const char *fmt, ...) function in class:android::intel::Dump
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 40 * @param target target to which to append output
55 target.append(new String(cbuf, off, len));
79 target.append((char) c);
84 target.append(str);
89 // tricky: append takes start, end pair...
90 target.append(str, off, off + len);
93 @Override public Writer append(char c) throws IOException { method in class:AppendableWriter
95 target.append(c);
99 @Override public Writer append(CharSequence charSeq) throws IOException { method in class:AppendableWriter
101 target.append(charSeq)
105 @Override public Writer append(CharSequence charSeq, int start, int end) method in class:AppendableWriter
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringBuilderExtensions.cs 44 public static void append<T>( this StringBuilder buffer, T value ) method in class:Antlr.Runtime.JavaExtensions.StringBuilderExtensions
46 buffer.Append( value );
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.h 55 void append(const PassRefPtrWillBeRawPtr<Touch> touch) { m_values.append(touch); } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ContentDistribution.cpp 40 void ContentDistribution::append(PassRefPtrWillBeRawPtr<Node> node) function in class:blink::ContentDistribution
46 m_nodes.append(node);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileList.h 52 void append(PassRefPtrWillBeRawPtr<File> file) { m_files.append(file); } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/wtf/
DoubleBufferedDeque.h 20 void append(const T& value) function in class:WTF::DoubleBufferedDeque
22 m_queue[m_activeIndex].append(value);
  /external/chromium_org/third_party/icu/source/common/
charstr.cpp 40 CharString &CharString::append(char c, UErrorCode &errorCode) { function in class:CharString
48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { function in class:CharString
72 // so we have to make a copy of the substring and append that.
73 return append(CharString(s, sLength, errorCode), errorCode);
139 append(U_FILE_SEP_CHAR, errorCode);
141 append(s, errorCode);
  /external/clang/include/clang/Basic/
MacroBuilder.h 29 /// Append a \#define line for macro of the form "\#define Name Value\n".
34 /// Append a \#undef line for Name. Name should be of the form XXX
40 /// Directly append Str and a newline to the underlying buffer.
41 void append(const Twine &Str) { function in class:clang::MacroBuilder
  /external/clang/test/CodeGenCXX/
pr18962.cpp 4 // append has to have the same prototype as fn1 to tickle the bug.
5 void (*append)(A *); member in class:A
27 // We end up using an opaque type for 'append' to avoid circular references.
  /external/hamcrest/src/org/hamcrest/
StringDescription.java 38 protected void append(String str) { method in class:StringDescription
40 out.append(str);
46 protected void append(char c) { method in class:StringDescription
48 out.append(c);
  /external/icu/icu4c/source/common/
charstr.cpp 40 CharString &CharString::append(char c, UErrorCode &errorCode) { function in class:CharString
48 CharString &CharString::append(const char *s, int32_t sLength, UErrorCode &errorCode) { function in class:CharString
72 // so we have to make a copy of the substring and append that.
73 return append(CharString(s, sLength, errorCode), errorCode);
139 append(U_FILE_SEP_CHAR, errorCode);
141 append(s, errorCode);
  /external/javassist/src/main/javassist/compiler/
KeywordTable.java 29 public void append(String name, int t) { method in class:KeywordTable
SymbolTable.java 41 public void append(String name, Declarator value) { method in class:SymbolTable
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 31 public void append(String str) { method in class:CharCache
47 public void append(char c) {

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>