HomeSort by relevance Sort by last modified time
    Searched refs:expand (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /external/mesa3d/src/glsl/glcpp/tests/
037-finalize-unexpanded-macro.c 1 #define expand(x) expand(x once) macro
3 foo(expand(just))
  /external/clang/test/Preprocessor/
macro_fn_lparen_scan.c 2 // RUN: %clang_cc1 -E %s | grep 'expand: abc'
10 // This should not expand to abc, because the foo macro isn't followed by (.
14 // This should expand to abc.
17 expand: X
23 // This should expand
  /external/grub/docs/
src2texi 15 ${dir}/${src} | expand > ${texi}.new
  /external/dbus/dbus/
dbus-sha.c 141 #define expand(W,i) ( W[ i & 15 ] = ROTL( 1, ( W[ i & 15 ] ^ W[ (i - 14) & 15 ] ^ \ macro
201 subRound (E, A, B, C, D, f1, K1, expand ( eData, 16) );
202 subRound (D, E, A, B, C, f1, K1, expand ( eData, 17) );
203 subRound (C, D, E, A, B, f1, K1, expand ( eData, 18) );
204 subRound (B, C, D, E, A, f1, K1, expand ( eData, 19) );
206 subRound (A, B, C, D, E, f2, K2, expand ( eData, 20) );
207 subRound (E, A, B, C, D, f2, K2, expand ( eData, 21) );
208 subRound (D, E, A, B, C, f2, K2, expand ( eData, 22) );
209 subRound (C, D, E, A, B, f2, K2, expand ( eData, 23) );
210 subRound (B, C, D, E, A, f2, K2, expand ( eData, 24) )
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
pdtlib.h 27 #include <fst/extensions/pdt/expand.h>
  /external/webkit/Source/WebCore/platform/graphics/
RoundedIntRect.h 63 void expand(int topWidth, int bottomWidth, int leftWidth, int rightWidth);
64 void expand(int size) { expand(size, size, size, size); } function in class:WebCore::RoundedIntRect::Radii
65 void shrink(int topWidth, int bottomWidth, int leftWidth, int rightWidth) { expand(-topWidth, -bottomWidth, -leftWidth, -rightWidth); }
89 void inflateWithRadii(int size) { m_rect.inflate(size); m_radii.expand(size); }
90 void expandRadii(int size) { m_radii.expand(size); }
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
envset.cmd 80 expand = 1
84 if expand > 0 & word(args, i) = '-' then expand = 0
95 addval: procedure expose sep equal orig expand newval mode env
105 if expand = 0 then expvar = var
130 expand = 1
  /frameworks/support/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 37 * to this instance, the underlying byte array will expand.
46 * expand.
71 private void expand(int i) { method in class:PoolingByteArrayOutputStream
72 /* Can the buffer handle @i more bytes, if not expand it */
84 expand(len);
90 expand(1);
  /libcore/luni/src/main/java/java/io/
ByteArrayOutputStream.java 44 * array will expand.
53 * instance, the underlying byte array will expand.
85 private void expand(int i) { method in class:ByteArrayOutputStream
86 /* Can the buffer handle @i more bytes, if not expand it */
201 expand(len);
216 expand(1);
CharArrayWriter.java 78 private void expand(int i) { method in class:CharArrayWriter
79 /* Can the buffer handle @i more chars, if not expand it */
169 expand(len);
186 expand(1);
211 expand(count);
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 58 private void expand(int newlen) { method in class:CharArrayBuffer
77 expand(newlen);
90 expand(newlen);
113 expand(newlen);
133 expand(newlen);
187 expand(this.len + required);
ByteArrayBuffer.java 56 private void expand(int newlen) { method in class:ByteArrayBuffer
75 expand(newlen);
84 expand(newlen);
104 expand(newlen);
  /external/libsepol/src/
constraint.c 22 #include <sepol/policydb/expand.h>
  /external/llvm/utils/TableGen/
SetTheory.h 86 virtual void expand(SetTheory&, Record*, RecSet &Elts) =0;
131 /// expand - Expand a record into a set of elements if possible. Return a
134 const RecVec *expand(Record *Set);
  /external/openssl/crypto/comp/
comp_lib.c 60 if (ctx->meth->expand == NULL)
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);
  /ndk/build/tools/
dev-platform-expand-all.sh 17 # dev-platform-expand-all.sh
19 # Call dev-platform-expand.sh for all API levels.
40 "Call dev-platform-expand.sh for all API levels."
59 $PROGDIR/dev-platform-expand.sh --platform=$PLATFORM --src-dir=$SRCDIR --dst-dir=$DSTDIR --arch=$(spaces_to_commas $ARCHS)
60 fail_panic "Could not expand android-$PLATFORM files!"
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializationHandler.java 138 * Default behavior is to expand DTD entities,
140 * @param expand true if DTD entities are to be expanded,
143 public void setDTDEntityExpansion(boolean expand);
  /packages/apps/Camera/src/com/android/camera/ui/
PreviewSurfaceView.java 38 public void expand() { method in class:PreviewSurfaceView
  /external/webkit/Source/WebCore/inspector/front-end/
SidebarPane.js 96 this.expand();
101 expand: function()
AuditResultView.js 78 this.expand();
108 treeElement.expand();
Section.js 108 this.expand();
147 expand: function()
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 5 shouldThrow('s = "a"; while (1) { s += s; }', '"Error: Out of memory"'); // Expand at end of string
6 shouldThrow('s = "a"; while (1) { s += ("a" + s); }', '"Error: Out of memory"'); // Expand at beginning of string
7 shouldThrow('s = "a"; while (1) { s = [s, s].join(); }', '"Error: Out of memory"'); // Expand using UString::append.
25 s += s; // This will expand the string at the end using UString::expandCapacity
35 s += t; // This will expand the string at the beginning using UString::expandPreCapacity
47 s = [s, s].join(); // This will expand the string using UString::append.
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 302 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
305 function toggleInherited(linkObj, expand) {
311 if ( (expand == null && a.hasClass("closed")) || expand ) {
317 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
329 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
332 function toggleAllInherited(linkObj, expand) {
336 if ( (expand == null && a.text() == "[Expand]") || expand )
    [all...]
  /external/hyphenation/
substrings.pl 108 sub expand { subroutine
129 my @exp = expand shift;
130 my @subexp = expand shift;
  /cts/tools/dasm/src/dasm/
Scanner.java 45 private void expand() { method in class:Scanner.CharBuffer
55 if (cur_pos == buffer_size) expand(); method

Completed in 678 milliseconds

1 2 3 4 5 6 7 8 9