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

1 2

  /external/chromium_org/third_party/skia/tests/
RecordTest.cpp 54 #define APPEND(record, type, ...) SkNEW_PLACEMENT_ARGS(record.append<type>(), type, (__VA_ARGS__))
63 APPEND(record, SkRecords::DrawRect, paint, rect);
79 #undef APPEND
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
list.h 55 #define APPEND(list, elt, link) \
107 APPEND(list, elt, link); \
116 #define ENQUEUE(list, elt, link) APPEND(list, elt, link)
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-buffer-serialize.cc 112 #define APPEND(s) HB_STMT_START { strcpy (p, s); p += strlen (s); } HB_STMT_END
119 APPEND ("\"g\":");
  /external/chromium_org/third_party/icu/source/tools/genrb/
rle.c 31 * Append a byte to the given StringBuffer, packing two bytes into each
92 #define APPEND( buffer, bufLimit, value, num, status){ \
112 APPEND(buffer,bufLimit,ESCAPE, num, status);
115 APPEND(buffer,bufLimit,value,num, status);
121 APPEND(buffer,bufLimit,ESCAPE,num,status);
124 APPEND(buffer,bufLimit,value,num,status);
127 APPEND(buffer,bufLimit,ESCAPE,num,status);
128 APPEND(buffer,bufLimit,(uint16_t) length, num,status);
129 APPEND(buffer,bufLimit,(uint16_t)value, num, status); /* Don't need to escape this value */
  /external/harfbuzz_ng/src/
hb-buffer-serialize.cc 112 #define APPEND(s) HB_STMT_START { strcpy (p, s); p += strlen (s); } HB_STMT_END
119 APPEND ("\"g\":");
  /external/icu/icu4c/source/tools/genrb/
rle.c 31 * Append a byte to the given StringBuffer, packing two bytes into each
92 #define APPEND( buffer, bufLimit, value, num, status){ \
112 APPEND(buffer,bufLimit,ESCAPE, num, status);
115 APPEND(buffer,bufLimit,value,num, status);
121 APPEND(buffer,bufLimit,ESCAPE,num,status);
124 APPEND(buffer,bufLimit,value,num,status);
127 APPEND(buffer,bufLimit,ESCAPE,num,status);
128 APPEND(buffer,bufLimit,(uint16_t) length, num,status);
129 APPEND(buffer,bufLimit,(uint16_t)value, num, status); /* Don't need to escape this value */
  /external/chromium_org/third_party/skia/src/core/
SkRecorder.cpp 23 #define APPEND(T, ...) \
24 SkNEW_PLACEMENT_ARGS(fRecord->append<SkRecords::T>(), SkRecords::T, (__VA_ARGS__))
95 APPEND(Clear, color);
99 APPEND(DrawPaint, delay_copy(paint));
106 APPEND(DrawPoints, delay_copy(paint), mode, count, this->copy(pts, count));
110 APPEND(DrawRect, delay_copy(paint), rect);
114 APPEND(DrawOval, delay_copy(paint), oval);
118 APPEND(DrawRRect, delay_copy(paint), rrect);
122 APPEND(DrawDRRect, delay_copy(paint), outer, inner);
126 APPEND(DrawPath, delay_copy(paint), delay_copy(path))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
cpp-preproc.c 81 Append a string to the command line, ensuring that we don't overflow the
84 #define APPEND(s) do { \
110 /* Append arguments from the list. */
112 APPEND(" ");
113 APPEND(arg->op);
114 APPEND(" ");
115 APPEND(arg->param);
120 /* Append extra arguments. */
122 APPEND(" ");
123 APPEND(extra)
    [all...]
  /external/clang/test/Misc/
caret-diags-macros.c 190 #define APPEND(NUM, SUFF) APPEND2(NUM, SUFF)
191 #define UTARG_MAX_U APPEND (MAX_UINT, UL)
200 // CHECK-NEXT: #define UTARG_MAX_U APPEND (MAX_UINT, UL)
202 // CHECK-NEXT: {{.*}}:190:27: note: expanded from macro 'APPEND'
203 // CHECK-NEXT: #define APPEND(NUM, SUFF) APPEND2(NUM, SUFF)
  /external/skia/src/core/
SkRecorder.cpp 20 #define APPEND(T, ...) \
21 SkNEW_PLACEMENT_ARGS(fRecord->append<SkRecords::T>(), SkRecords::T, (__VA_ARGS__))
85 APPEND(Clear, color);
89 APPEND(DrawPaint, delay_copy(paint));
96 APPEND(DrawPoints, delay_copy(paint), mode, count, this->copy(pts, count));
100 APPEND(DrawRect, delay_copy(paint), rect);
104 APPEND(DrawOval, delay_copy(paint), oval);
108 APPEND(DrawRRect, delay_copy(paint), rrect);
112 APPEND(DrawDRRect, delay_copy(paint), outer, inner);
116 APPEND(DrawPath, delay_copy(paint), delay_copy(path))
    [all...]
  /external/valgrind/main/coregrind/
vgdb-invoker-ptrace.c 223 #define APPEND(...) sz += snprintf (result+sz, 256 - sz - 1, __VA_ARGS__)
228 APPEND ("WIFEXITED %d ", WEXITSTATUS(status));
231 APPEND ("WIFSIGNALED %d ", WTERMSIG(status));
232 if (WCOREDUMP(status)) APPEND ("WCOREDUMP ");
236 APPEND ("WIFSTOPPED %d ", WSTOPSIG(status));
240 APPEND ("WIFCONTINUED ");
244 #undef APPEND
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 34 public static final String APPEND = "APPEND";
  /external/libpng/
png.c 718 # define APPEND(ch) if (pos < 28) out[pos++] = (ch)
721 APPEND(' ');
723 APPEND(' ');
725 APPEND(' ');
727 APPEND(':');
729 APPEND(':');
733 # undef APPEND
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 122 APPEND = 'a' # append stack top to list below it
616 write(APPEND)
625 tmp.append(x)
637 write(APPEND)
672 tmp.append(items.next())
788 memo[id(memo)].append(x)
852 self.append = self.stack.append
891 self.append(self.persistent_load(pid)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 122 APPEND = 'a' # append stack top to list below it
616 write(APPEND)
625 tmp.append(x)
637 write(APPEND)
672 tmp.append(items.next())
788 memo[id(memo)].append(x)
852 self.append = self.stack.append
891 self.append(self.persistent_load(pid)
    [all...]
  /external/elfutils/0.153/libcpu/
i386_parse.c     [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher.eclipse_1.1.200.v20130516-1953.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1595 milliseconds

1 2