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

1 2 3 45 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/LD/
ELFSegment.cpp 77 void ELFSegment::append(LDSection* pSection) { function in class:mcld::ELFSegment
RelocData.cpp 46 RelocData& RelocData::append(Relocation& pRelocation) { function in class:mcld::RelocData
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/content/res/
GrowingArrayUtils.java 33 * @param array The array to which to append the element. This must NOT be null.
36 * @param element The element to append.
40 public static <T> T[] append(T[] array, int currentSize, T element) { method in class:GrowingArrayUtils
54 * Primitive int version of {@link #append(Object[], int, Object)}.
56 public static int[] append(int[] array, int currentSize, int element) { method in class:GrowingArrayUtils
69 * Primitive long version of {@link #append(Object[], int, Object)}.
71 public static long[] append(long[] array, int currentSize, long element) { method in class:GrowingArrayUtils
84 * Primitive boolean version of {@link #append(Object[], int, Object)}.
86 public static boolean[] append(boolean[] array, int currentSize, boolean element) { method in class:GrowingArrayUtils
102 * @param array The array to which to append the element. Must NOT be null
    [all...]
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/
HidGlobal.cpp 23 bool HidGlobal::append(const HidItem &i) { function in class:HidUtil::HidGlobal
26 LOG_E << "HidGlobal::append cannot process tag that is not global, " << i << LOG_ENDL;
95 bool HidGlobalStack::append(const HidItem &i) { function in class:HidUtil::HidGlobalStack
111 ret = mStack.back().append(i);
HidLocal.cpp 52 bool HidLocal::append(const HidItem &i) { function in class:HidUtil::HidLocal
  /libcore/luni/src/main/java/libcore/util/
Objects.java 34 sb.append(c.getSimpleName()).append('[');
45 sb.append(',');
48 sb.append(f.getName());
49 sb.append('=');
53 sb.append(Arrays.toString((boolean[]) value));
55 sb.append(Arrays.toString((byte[]) value));
57 sb.append(Arrays.toString((char[]) value));
59 sb.append(Arrays.toString((double[]) value));
61 sb.append(Arrays.toString((float[]) value))
    [all...]
  /libcore/ojluni/src/main/java/java/net/
URLDecoder.java 151 sb.append(' ');
199 sb.append(new String(bytes, 0, pos, enc));
208 sb.append(c);
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 62 public PrintStream append(char c) { return this; } method in class:NullPrintStream
63 public PrintStream append(CharSequence csq) { return this; } method in class:NullPrintStream
64 public PrintStream append(CharSequence csq, int start, int end) { return this; } method in class:NullPrintStream
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscaper.java 67 * {@code Appendable}, and will throw {@link NullPointerException} if asked to append {@code
74 * escaper.escape(sb).append(string);
77 * @param out the underlying {@code Appendable} to append escaped output to
85 @Override public Appendable append(CharSequence csq) throws IOException {
86 out.append(escape(csq.toString()));
90 @Override public Appendable append(CharSequence csq, int start, int end) throws IOException { method in class:CharEscaper
91 out.append(escape(csq.subSequence(start, end).toString()));
95 @Override public Appendable append(char c) throws IOException { method in class:CharEscaper
98 out.append(c);
101 out.append(e)
    [all...]
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
InputPointers.java 90 * Append the times, x-coordinates and y-coordinates in the specified {@link ResizableIntArray}
99 public void append(final int pointerId, @Nonnull final ResizableIntArray times, method in class:InputPointers
105 mXCoordinates.append(xCoordinates, startPos, length);
106 mYCoordinates.append(yCoordinates, startPos, length);
108 mTimes.append(times, startPos, length);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
CappedStringBuilder.java 45 public CappedStringBuilder append(char ch) { method in class:CappedStringBuilder
47 mStringBuilder.append(ch);
52 public CappedStringBuilder append(String s) { method in class:CappedStringBuilder
54 mStringBuilder.append(s);
  /packages/services/Car/service/src/com/android/car/
JsonReaderImpl.java 57 stringBuilder.append(buffer, /* offset= */ 0, bufferedContent);
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
filelist.py 52 def append(self, item): member in class:FileList
53 self.files.append(item)
64 self.files.append(os.path.join(*sort_tuple))
226 self.files.append(name)
265 push = stack.append
281 list.append(fullname)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
cfmfile.py 49 dstcfrg.append(frag)
91 self.fragments.append(frag)
100 def append(self, frag): member in class:CfrgResource
101 self.fragments.append(frag)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
filelist.py 52 def append(self, item): member in class:FileList
53 self.files.append(item)
64 self.files.append(os.path.join(*sort_tuple))
226 self.files.append(name)
265 push = stack.append
281 list.append(fullname)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
timings.go 33 func (t *Timings) append(labels []string, start bool) { func
34 t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
40 t.append(labels, true)
46 t.append(labels, false)
63 m[i] = append(m[i], &event{size, unit})
98 // stop ended previous phase; append stop labels, if any
170 line = append(line, fmt.Sprintf(format, args...))
185 *lines = append(*lines, line)
199 widths = append(widths, len(col))
200 number = append(number, isnumber(col)) // first line determines column content
    [all...]
  /prebuilts/go/darwin-x86/src/path/
path.go 19 // It supports append, reading previously appended bytes,
35 func (b *lazybuf) append(c byte) { func
90 out.append('/')
113 // cannot backtrack, but not rooted, so append .. element.
115 out.append('/')
117 out.append('.')
118 out.append('.')
125 out.append('/')
129 out.append(path[r])
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4252.dir/
a.go 12 const append = 42 const
20 var array [append]int
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
timings.go 33 func (t *Timings) append(labels []string, start bool) { func
34 t.list = append(t.list, timestamp{time.Now(), strings.Join(labels, ":"), start})
40 t.append(labels, true)
46 t.append(labels, false)
63 m[i] = append(m[i], &event{size, unit})
98 // stop ended previous phase; append stop labels, if any
170 line = append(line, fmt.Sprintf(format, args...))
185 *lines = append(*lines, line)
199 widths = append(widths, len(col))
200 number = append(number, isnumber(col)) // first line determines column content
    [all...]
  /prebuilts/go/linux-x86/src/path/
path.go 19 // It supports append, reading previously appended bytes,
35 func (b *lazybuf) append(c byte) { func
90 out.append('/')
113 // cannot backtrack, but not rooted, so append .. element.
115 out.append('/')
117 out.append('.')
118 out.append('.')
125 out.append('/')
129 out.append(path[r])
  /prebuilts/go/linux-x86/test/fixedbugs/issue4252.dir/
a.go 12 const append = 42 const
20 var array [append]int
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 52 def append(self, item): member in class:FileList
53 self.files.append(item)
64 self.files.append(os.path.join(*sort_tuple))
226 self.files.append(name)
265 push = stack.append
281 list.append(fullname)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
cfmfile.py 49 dstcfrg.append(frag)
91 self.fragments.append(frag)
100 def append(self, frag): member in class:CfrgResource
101 self.fragments.append(frag)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
filelist.py 52 def append(self, item): member in class:FileList
53 self.files.append(item)
64 self.files.append(os.path.join(*sort_tuple))
226 self.files.append(name)
265 push = stack.append
281 list.append(fullname)
  /system/security/keystore/
test-keystore 30 append $log_file \# "$@"
31 append $baseline_file \# "$@"
35 append $baseline_file "$@"
38 function append() { function

Completed in 710 milliseconds

1 2 3 45 6 7 8 91011>>