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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
InfoSink.cpp 41 void TInfoSinkBase::append(const char* s) function in class:glslang::TInfoSinkBase
45 sink.append("(null)");
48 sink.append(s);
61 void TInfoSinkBase::append(int count, char c) function in class:glslang::TInfoSinkBase
65 sink.append(count, c);
81 void TInfoSinkBase::append(const TPersistString& t) function in class:glslang::TInfoSinkBase
85 sink.append(t);
97 void TInfoSinkBase::append(const TString& t) function in class:glslang::TInfoSinkBase
101 sink.append(t.c_str());
  /external/tensorflow/tensorflow/python/tools/
selective_registration_header_lib.py 90 def append(s): function in function:get_header_from_ops_and_kernels
91 result_list.append(s)
94 append('// This file was autogenerated by %s' % script_name)
95 append('#ifndef OPS_TO_REGISTER')
96 append('#define OPS_TO_REGISTER')
99 append('#define SHOULD_REGISTER_OP(op) true')
100 append('#define SHOULD_REGISTER_OP_KERNEL(clz) true')
101 append('#define SHOULD_REGISTER_OP_GRADIENT true')
134 append(line)
135 append('#define SHOULD_REGISTER_OP_KERNEL(clz)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Appendable.java 59 * the subsequence to append is defined by the buffer's position and limit.
62 * The character sequence to append. If <tt>csq</tt> is
71 Appendable append(CharSequence csq) throws IOException; method in interface:Appendable
77 * <p> An invocation of this method of the form <tt>out.append(csq, start,
82 * out.append(csq.subSequence(start, end)) </pre>
107 Appendable append(CharSequence csq, int start, int end) throws IOException; method in interface:Appendable
113 * The character to append
120 Appendable append(char c) throws IOException; method in interface:Appendable
  /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/testng/src/main/java/org/testng/reporters/
IBuffer.java 6 IBuffer append(CharSequence string); method in interface:IBuffer
  /hardware/intel/img/hwcomposer/merrifield/common/utils/
Dump.cpp 36 void Dump::append(const char *fmt, ...) function in class:android::intel::Dump
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/utils/
Dump.cpp 36 void Dump::append(const char *fmt, ...) function in class:android::intel::Dump
  /libcore/ojluni/src/test/java/time/test/java/time/format/
MockIOExceptionAppendable.java 69 public Appendable append(CharSequence csq) throws IOException { method in class:MockIOExceptionAppendable
73 public Appendable append(char c) throws IOException { method in class:MockIOExceptionAppendable
77 public Appendable append(CharSequence csq, int start, int end) method in class:MockIOExceptionAppendable
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 44 * @param target target to which to append output
59 target.append(new String(cbuf, off, len));
83 target.append((char) c);
88 target.append(str);
93 // tricky: append takes start, end pair...
94 target.append(str, off, off + len);
97 @Override public Writer append(char c) throws IOException { method in class:AppendableWriter
99 target.append(c);
103 @Override public Writer append(@Nullable CharSequence charSeq) throws IOException { method in class:AppendableWriter
105 target.append(charSeq)
109 @Override public Writer append(@Nullable 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/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/hamcrest-core/src/main/java/org/hamcrest/
StringDescription.java 39 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/icu/icu4c/source/common/
unistrappender.h 25 * 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/
pluralaffix.cpp 28 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/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/lisa/libs/utils/
target_script.py 56 self.append(cmd)
58 def append(self, cmd): member in class:TargetScript
60 Append a command to the script.
62 :param cmd: Command string to append
65 self.commands.append(cmd)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_so.c 72 const boolean append = (offsets[i] == (unsigned)-1); local
85 if (!append && llvmpipe->so_targets[i]) {
  /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) {
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
ListAppender.java 39 protected void append(LoggingEvent event) { method in class:ListAppender
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/impl/
RecursiveAppender.java 45 protected void append(LoggingEvent arg0) { method in class:RecursiveAppender
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTStringHash.cpp 52 @Function append
57 CPVRTStringHash& CPVRTStringHash::append(const char* _Ptr) function in class:CPVRTStringHash
59 m_String.append(_Ptr);
65 @Function append
70 CPVRTStringHash& CPVRTStringHash::append(const CPVRTString& _Str) function in class:CPVRTStringHash
72 m_String.append(_Str);
  /external/tensorflow/tensorflow/contrib/py2tf/utils/
tensor_list.py 32 def append(self, value): member in class:TensorList
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
AString.h 52 void append(char c) { append(&c, 1); } function in struct:android::AString
53 void append(const char *s);
54 void append(const char *s, size_t size);
55 void append(const AString &from);
56 void append(const AString &from, size_t offset, size_t n);
57 void append(int x);
58 void append(unsigned x);
59 void append(long x);
60 void append(unsigned long x)
    [all...]

Completed in 231 milliseconds

1 2 3 4 5 6 7 8 91011>>