/external/eigen/doc/snippets/ |
Tutorial_solve_reuse_decomposition.cpp | 8 cout << "The solution with right-hand side (3,3,4) is:" << endl; 12 cout << "The solution with right-hand side (1,1,1) is:" << endl;
|
/external/clang/test/CXX/expr/expr.ass/ |
p9-cxx11.cpp | 16 a = { 1 } = b; // expected-error {{initializer list cannot be used on the left hand side of operator '='}} 17 a = a + { 4 }; // expected-error {{initializer list cannot be used on the right hand side of operator '+'}} 18 a = { 3 } * { 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '*'}} \ 19 expected-error {{initializer list cannot be used on the right hand side of operator '*'}} 33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}} 34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}}
|
/external/clang/test/Sema/ |
builtin-assume.c | 11 __assume(++i > 2); //expected-warning {{the argument to '__assume' has side effects that will be discarded}} 12 __assume(nonconst() > 2); //expected-warning {{the argument to '__assume' has side effects that will be discarded}} 15 __assume(ispure(++i) > 2); //expected-warning {{the argument to '__assume' has side effects that will be discarded}} 20 __builtin_assume(++i > 2); //expected-warning {{the argument to '__builtin_assume' has side effects that will be discarded}} 21 __builtin_assume(nonconst() > 2); //expected-warning {{the argument to '__builtin_assume' has side effects that will be discarded}} 24 __builtin_assume(ispure(++i) > 2); //expected-warning {{the argument to '__builtin_assume' has side effects that will be discarded}}
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion8-expected-completion44.txt | 7 android:layout_marginLeft : Specifies extra space on the left side of this view. [dimension] 8 android:layout_marginTop : Specifies extra space on the top side of this view. [dimension] 9 android:layout_marginRight : Specifies extra space on the right side of this view. [dimension] 10 android:layout_marginBottom : Specifies extra space on the bottom side of this view. [dimension] 11 android:layout_marginStart : Specifies extra space on the start side of this view. [dimension] 12 android:layout_marginEnd : Specifies extra space on the end side of this view. [dimension]
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nv20_state_tnl.c | 35 #define LIGHT_MODEL_AMBIENT_R(side) \ 36 ((side) ? NV20_3D_LIGHT_MODEL_BACK_AMBIENT_R : \ 38 #define LIGHT_AMBIENT_R(side, i) \ 39 ((side) ? NV20_3D_LIGHT_BACK_AMBIENT_R(i) : \ 41 #define LIGHT_DIFFUSE_R(side, i) \ 42 ((side) ? NV20_3D_LIGHT_BACK_DIFFUSE_R(i) : \ 44 #define LIGHT_SPECULAR_R(side, i) \ 45 ((side) ? NV20_3D_LIGHT_BACK_SPECULAR_R(i) : \ 47 #define MATERIAL_FACTOR_R(side) \ 48 ((side) ? NV20_3D_MATERIAL_FACTOR_BACK_R : 237 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT; local 279 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_DIFFUSE; local 301 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SPECULAR; local 319 const int side = emit - NOUVEAU_STATE_MATERIAL_FRONT_SHININESS; local [all...] |
/external/chromium-trace/catapult/tracing/tracing/ui/base/ |
table_header_cell.html | 24 side-element { 36 <span id="title"></span><side-element id="side"></side-element> 63 this.$.side.textContent = ''; 67 this.$.side.textContent = content; 71 return this.$.side.textContent;
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
insns-bad-1.l | 22 [^:]*:23: Error: operand 1 of 'abs' on wrong side 23 [^:]*:24: Error: operand 2 of 'abs' on wrong side 24 [^:]*:25: Error: operand 1 of 'abs' on wrong side 25 [^:]*:26: Error: operand 2 of 'abs' on wrong side 26 [^:]*:27: Error: operand 1 of 'abs' on wrong side 27 [^:]*:28: Error: operand 2 of 'abs' on wrong side 28 [^:]*:29: Error: operand 2 of 'abs' on wrong side 29 [^:]*:30: Error: operand 1 of 'abs' on wrong side 33 [^:]*:33: Error: operand 1 of 'abs' on wrong side 34 [^:]*:34: Error: operand 2 of 'abs' on wrong side [all...] |
/external/cblas/src/ |
cblas_chemm.c | 12 void cblas_chemm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 48 cblas_xerbla(2, "cblas_chemm", "Illegal Side setting, %d\n", Side); 74 if( Side == CblasRight) SD='L'; 75 else if ( Side == CblasLeft ) SD='R'; 78 cblas_xerbla(2, "cblas_chemm", "Illegal Side setting, %d\n", Side);
|
cblas_csymm.c | 12 void cblas_csymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 48 cblas_xerbla(2, "cblas_csymm", "Illegal Side setting, %d\n", Side); 74 if( Side == CblasRight) SD='L'; 75 else if ( Side == CblasLeft ) SD='R'; 78 cblas_xerbla(2, "cblas_csymm", "Illegal Side setting, %d\n", Side);
|
cblas_dsymm.c | 12 void cblas_dsymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 48 cblas_xerbla(2, "cblas_dsymm","Illegal Side setting, %d\n", Side); 74 if( Side == CblasRight) SD='L'; 75 else if ( Side == CblasLeft ) SD='R'; 78 cblas_xerbla(2, "cblas_dsymm","Illegal Side setting, %d\n", Side);
|
cblas_ssymm.c | 12 void cblas_ssymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 49 "Illegal Side setting, %d\n", Side); 75 if( Side == CblasRight) SD='L'; 76 else if ( Side == CblasLeft ) SD='R'; 80 "Illegal Side setting, %d\n", Side);
|
cblas_zhemm.c | 12 void cblas_zhemm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 48 cblas_xerbla(2, "cblas_zhemm", "Illegal Side setting, %d\n", Side); 74 if( Side == CblasRight) SD='L'; 75 else if ( Side == CblasLeft ) SD='R'; 78 cblas_xerbla(2, "cblas_zhemm", "Illegal Side setting, %d\n", Side);
|
cblas_zsymm.c | 12 void cblas_zsymm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 44 if( Side == CblasRight) SD='R'; 45 else if ( Side == CblasLeft ) SD='L'; 48 cblas_xerbla(2, "cblas_zsymm", "Illegal Side setting, %d\n", Side); 74 if( Side == CblasRight) SD='L'; 75 else if ( Side == CblasLeft ) SD='R'; 78 cblas_xerbla(2, "cblas_zsymm", "Illegal Side setting, %d\n", Side);
|
/external/clang/test/SemaCXX/ |
warn-unused-value-cxx11.cpp | 18 (void)noexcept(++i); // expected-warning {{expression with side effects has no effect in an unevaluated context}} 19 decltype(i++) j = 0; // expected-warning {{expression with side effects has no effect in an unevaluated context}} 35 (void)noexcept(i++); // expected-warning {{expression with side effects has no effect in an unevaluated context}} 36 (void)noexcept(i = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}} 40 (void)sizeof(s.f() = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
|
/external/autotest/server/control_segments/ |
stage_server_side_package | 13 # Url to server-side package staged on devserver. 15 # Only need to stage server side package once. 22 logging.error('Stage server-side package failed. %s', e)
|
/external/clang/test/SemaCUDA/ |
asm-constraints-mixed.cu | 8 global_dev_hreg asm("rsp"); // device-side error 11 register long global_host_dreg asm("r0"); // host-side error 15 register long local_host_reg asm("rsp"); // device-side error 22 register long local_dev_reg asm("r0"); // host-side error 32 // Device-side compilation: 36 // Host-side compilation:
|
/frameworks/base/libs/hwui/tests/unit/ |
BakedOpRendererTests.cpp | 39 renderer.startRepaintLayer(&layer, Rect(100, 200)); // repainting left side 43 << "Left side being repainted, so right side should be clear"; 47 // right side is now only dirty portion 49 renderer.startRepaintLayer(&layer, Rect(100, 0, 200, 200)); // repainting right side 51 << "Now right side being repainted, so region should be entirely clear";
|
/external/autotest/client/cros/faft/ |
config.py | 7 """Client side services config. Accessible by server side code as well."""
|
/external/autotest/client/site_tests/touch_TouchscreenScroll/ |
README | 11 side of the screen closest to hinges up to the oposite side of the screen.
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
exceptions.py | 23 A generic server-side error. 44 A generic server-side error.
|
/external/curl/tests/data/ |
test1003 | 9 # Server-side 21 # Client-side
|
test1009 | 11 # Server-side 22 # Client-side
|
test102 | 9 # Server-side 24 # Client-side
|
test1027 | 9 # Server-side 14 # Client-side
|
test1037 | 11 # Server-side 25 # Client-side
|