Searched defs:append (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/compiler/
H A DKeywordTable.java29 public void append(String name, int t) { method in class:KeywordTable
H A DSymbolTable.java41 public void append(String name, Declarator value) { method in class:SymbolTable
/external/clang/test/CodeGenCXX/
H A Dpr18962.cpp4 // 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/hamcrest-core/src/main/java/org/hamcrest/
H A DStringDescription.java39 protected void append(String str) { method in class:StringDescription
41 out.append(str);
48 protected void append(char c) { method in class:StringDescription
50 out.append(c);
/external/parameter-framework/upstream/utility/
H A DErrorContext.hpp45 void appendToError(const std::string &append) { mError += append; } argument
/external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
H A DListAppender.java39 protected void append(LoggingEvent event) { method in class:ListAppender
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
H A DFileAppender.java26 public FileAppender(Layout layout, String filename, boolean append) { argument
29 public FileAppender(Layout layout, String filename, boolean append, boolean bufferedIO, int bufferSize) { argument
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
H A DListAppender.java39 protected void append(LoggingEvent event) { method in class:ListAppender
/external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
H A DListAppender.java39 protected void append(LoggingEvent event) { method in class:ListAppender
/external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/impl/
H A DRecursiveAppender.java45 protected void append(LoggingEvent arg0) { method in class:RecursiveAppender
/external/testng/src/main/java/org/testng/reporters/
H A DIBuffer.java6 IBuffer append(CharSequence string); method in interface:IBuffer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringBuilderExtensions.cs44 public static void append<T>( this StringBuilder buffer, T value ) method in class:Antlr.Runtime.JavaExtensions.StringBuilderExtensions
/external/clang/include/clang/Basic/
H A DMacroBuilder.h40 /// Directly append Str and a newline to the underlying buffer.
41 void append(const Twine &Str) { function in class:clang::MacroBuilder
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DIndentingAppendable.java37 public Appendable append(CharSequence csq) throws IOException { method in class:IndentingAppendable
38 return append(csq, 0, csq.length());
42 public Appendable append(CharSequence csq, int start, int end) throws IOException { method in class:IndentingAppendable
47 delegate.append(line);
56 public Appendable append(char c) throws IOException { method in class:IndentingAppendable
58 delegate.append(c);
67 delegate.append(indentation);
/external/deqp/framework/delibs/decpp/
H A DdePoolString.cpp38 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/deqp/framework/randomshaders/
H A DrsgPrettyPrinter.cpp129 void PrettyPrinter::append (const TokenStream& tokens) function in class:rsg::PrettyPrinter
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorSyclExtractAccessor.h52 -> decltype(utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::getTuple(cgh, eval2))) {
53 return utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1), ExtractAccessor<Arg2>::getTuple(cgh, eval2));
56 -> decltype(utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1),utility::tuple::append(ExtractAccessor<Arg2>::getTuple(cgh, eval2), ExtractAccessor<Arg3>::getTuple(cgh, eval3)))) {
57 return utility::tuple::append(ExtractAccessor<Arg1>::getTuple(cgh, eval1),utility::tuple::append(ExtractAccessor<Arg2>::getTuple(cgh, eval2), ExtractAccessor<Arg3>::getTuple(cgh, eval3)));
170 -> decltype(utility::tuple::append(AccessorConstructor::template getAccessor<cl::sycl::access::mode::write>(cgh, eval), AccessorConstructor::getTuple(cgh, eval.impl()))){ function in struct:Eigen::TensorSycl::internal::ExtractAccessor
171 return utility::tuple::append(AccessorConstructor::template getAccessor<cl::sycl::access::mode::write>(cgh, eval), AccessorConstructor::getTuple(cgh, eval.impl()));
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUnicodeRegex.java140 result.append(ch);
232 // log.append(variable2 + "=" + altered2 + ";");
347 result.append(x.toPattern(false));
407 definition.append(linePart.substring(equalsPos+1).trim());
412 definition.append(bnfLineSeparator).append(linePart);
/external/icu/icu4c/source/common/
H A Dunistrappender.h25 * An optimization for the slowness of calling UnicodeString::append()
27 * never actually calling append on the unicode string unless the buffer
34 * appender.append((UChar) i);
48 inline void append(UChar x) { function in class:UnicodeStringAppender
50 fDest->append(fBuffer, 0, fIdx);
56 inline void append(UChar32 x) { function in class:UnicodeStringAppender
58 fDest->append(fBuffer, 0, fIdx);
69 fDest->append(fBuffer, 0, fIdx);
/external/icu/icu4c/source/i18n/
H A Ddigitaffix.cpp38 fAffix.append(value);
39 fAnnotations.append((UChar) fieldId);
43 DigitAffix::append(const UnicodeString &value, int32_t fieldId) { function in class:DigitAffix
44 fAffix.append(value);
49 appender.append((UChar) fieldId);
62 appender.append((UChar) fieldId);
68 DigitAffix::append(const UChar *value, int32_t charCount, int32_t fieldId) { function in class:DigitAffix
69 fAffix.append(value, charCount);
73 appender.append((UChar) fieldId);
85 return appendTo.append(fAffi
[all...]
H A Dpluralaffix.cpp28 current->append(value);
48 PluralAffix::append( function in class:PluralAffix
53 current->append(value, fieldId);
58 PluralAffix::append( function in class:PluralAffix
63 current->append(value, charCount, fieldId);
68 PluralAffix::append( function in class:PluralAffix
80 current->append(rhs.affixes.get(index).toString(), fieldId);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUnicodeRegex.java138 result.append(ch);
230 // log.append(variable2 + "=" + altered2 + ";");
345 result.append(x.toPattern(false));
405 definition.append(linePart.substring(equalsPos+1).trim());
410 definition.append(bnfLineSeparator).append(linePart);
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
H A DDumpMojo.java56 * @parameter property="jacoco.append" default-value="true"
58 private boolean append; field in class:DumpMojo
124 loader.save(destFile, append);
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/output/
H A DFileOutput.java28 * <li>append</li>
37 private boolean append; field in class:FileOutput
43 this.append = options.getAppend();
67 final FileOutputStream file = new FileOutputStream(destFile, append);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
H A DExecFileLoader.java100 * @param append
106 public void save(final File file, final boolean append) throws IOException { argument
111 final FileOutputStream fileStream = new FileOutputStream(file, append);

Completed in 1034 milliseconds

1234567891011>>