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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
037-finalize-unexpanded-macro.c 1 #define expand(x) expand(x once) macro
3 foo(expand(just))
  /external/mesa3d/src/glsl/glcpp/tests/
037-finalize-unexpanded-macro.c 1 #define expand(x) expand(x once) macro
3 foo(expand(just))
  /external/chromium-trace/trace-viewer/src/tracing/tracks/
process_track_base.css 22 .process-track-header > expand-button {
27 .process-track-header > expand-button.expand-button-expanded {
32 .process-track-header> expand-button:not(.expand-button-expanded) {
33 content: url(../../images/expand.png);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
expand_unittest.cc 11 // Unit tests for Expand class.
13 #include "webrtc/modules/audio_coding/neteq/expand.h"
22 TEST(Expand, CreateAndDestroy) {
28 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
31 TEST(Expand, CreateUsingFactory) {
38 Expand* expand = local
40 EXPECT_TRUE(expand != NULL);
41 delete expand;
    [all...]
merge_unittest.cc 19 #include "webrtc/modules/audio_coding/neteq/expand.h"
31 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
32 Merge merge(fs, channels, &expand, &sync_buffer);
normal_unittest.cc 21 #include "webrtc/modules/audio_coding/neteq/expand.h"
39 Expand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
40 Normal normal(fs, &db, bgn, &expand);
52 MockExpand expand(&bgn, &sync_buffer, &random_vector, fs, channels);
53 Normal normal(fs, &db, bgn, &expand);
69 EXPECT_CALL(expand, SetParametersForNormalAfterExpand());
70 EXPECT_CALL(expand, Process(_));
71 EXPECT_CALL(expand, Reset());
85 EXPECT_CALL(expand, Die()); // Called when |expand| goes out of scope
    [all...]
normal.h 28 class Expand;
37 Expand* expand)
41 expand_(expand) {
62 Expand* expand_;
decision_logic_fax.h 41 // Returns the operation that should be done next. |sync_buffer| and |expand|
51 const Expand& expand,
  /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/chromium_org/ui/file_manager/file_manager/foreground/css/
tree.css 20 .expand-icon {
33 html[dir=rtl] .expand-icon {
37 .tree-item[expanded] > .tree-row > .expand-icon {
42 .tree-row .expand-icon {
46 .tree-row[may-have-children] .expand-icon {
50 .tree-row[has-children=false] .expand-icon {
  /external/lldb/tools/lldb-perf/lib/
Xcode.h 33 FetchVariable (SBValue value, uint32_t expand = 0, bool verbose = false);
39 FetchVariables (SBFrame frame, uint32_t expand = 0, bool verbose = false);
  /external/valgrind/main/none/tests/amd64/
aes.c 29 static void expand ( V128* dst, char* summary ) function
76 expand(&argL, s_argL);
77 expand(&argR, s_argR);
91 expand(&exp, s_exp);
108 expand(&argL, s_argL);
109 expand(&argR, s_argR);
123 expand(&exp, s_exp);
140 expand(&argL, s_argL);
141 expand(&argR, s_argR);
155 expand(&exp, s_exp)
    [all...]
  /external/openfst/src/include/fst/extensions/pdt/
pdtlib.h 27 #include <fst/extensions/pdt/expand.h>
  /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/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);
  /external/eigen/Eigen/src/SparseLU/
SparseLU_Memory.h 55 * Expand the existing storage to accomodate more fill-ins
56 * \param vec Valid pointer to the vector to allocate or expand
59 * \param keep_prev 1: use length and do not expand the vector; 0: compute new_len and expand
64 Index SparseLUImpl<Scalar,Index>::expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions) function in class:Eigen::internal::SparseLUImpl
79 //Allocate or expand the current vector
181 if( (expand<ScalarVector>(glu.lusup, glu.nzlumax, 0, 0, num_expansions)<0)
182 || (expand<ScalarVector>(glu.ucol, glu.nzumax, 0, 0, num_expansions)<0)
183 || (expand<IndexVector> (glu.lsub, glu.nzlmax, 0, 0, num_expansions)<0)
184 || (expand<IndexVector> (glu.usub, glu.nzumax, 0, 1, num_expansions)<0)
    [all...]
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 63 private void expand(int newlen) { method in class:CharArrayBuffer
82 expand(newlen);
95 expand(newlen);
118 expand(newlen);
138 expand(newlen);
192 expand(this.len + required);
ByteArrayBuffer.java 61 private void expand(int newlen) { method in class:ByteArrayBuffer
80 expand(newlen);
89 expand(newlen);
109 expand(newlen);
  /external/chromium_org/chrome/browser/resources/options/
reset_profile_settings_overlay.css 50 #expand-feedback {
58 #expand-feedback:hover {
  /external/chromium_org/third_party/skia/src/opts/
SkBlurImage_opts_SSE2.cpp 22 inline __m128i expand(int a) { function in namespace:__anon19942
51 sum = _mm_add_epi32(sum, expand(*p));
79 sum = _mm_sub_epi32(sum, expand(l));
83 sum = _mm_add_epi32(sum, expand(r));
SkBlurImage_opts_SSE4.cpp 29 inline __m128i expand(int a) { function in namespace:__anon19943
58 sum = _mm_add_epi32(sum, expand(*p));
81 sum = _mm_sub_epi32(sum, expand(l));
85 sum = _mm_add_epi32(sum, expand(r));
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
__init__.py 7 from subcommands.expand import ExpandCommand
  /external/libsepol/src/
constraint.c 22 #include <sepol/policydb/expand.h>
  /external/skia/src/opts/
SkBlurImage_opts_SSE2.cpp 22 inline __m128i expand(int a) { function in namespace:__anon14428
51 sum = _mm_add_epi32(sum, expand(*p));
83 sum = _mm_sub_epi32(sum, expand(l));
87 sum = _mm_add_epi32(sum, expand(r));

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>