/external/curl/tests/data/ |
test200 | 18 # Client-side
|
test226 | 9 # Client-side
|
test289 | 11 # Client-side
|
test305 | 10 # Client-side
|
test404 | 9 # Client-side
|
test597 | 9 # Client-side
|
test829 | 9 # Client-side
|
test875 | 9 # Client-side
|
test931 | 9 # Client-side
|
/external/dbus/test/data/auth/ |
anonymous-server-successful.auth-script | 1 ## this tests the server side in a successful auth of type ANONYMOUS
|
/frameworks/base/core/java/android/transition/ |
SidePropagation.java | 25 * A <code>TransitionPropagation</code> that propagates based on the distance to the side 27 * the start of the transition, then it will transition sooner when closer to the side and 29 * it will transition later when closer to the side and sooner when farther from the edge. 39 * Sets the side that is used to calculate the transition propagation. If the transitioning 41 * closer to the side and later when farther. If the view is not visible in the start of 42 * the transition, then it will transition later when closer to the side and sooner when 45 * @param side The side that is used to calculate the transition propagation. Must be one of 49 public void setSide(@GravityFlag int side) { 50 mSide = side; 123 final int side; local [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
WnnPOS.java | 25 /** The part of speech at left side */ 28 /** The part of speech at right side */ 39 * @param left The part of speech at left side 40 * @param right The part of speech at right side
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug351.go | 12 (x) := 0 // ERROR "non-name [(]x[)]|non-name on left side"
|
issue5373.go | 7 // Ensure that zeroing range loops have the requisite side-effects. 26 fmt.Printf("index after range with side-effect = %d want %d\n", i, want) 36 fmt.Printf("index after range without side-effect = %d want %d\n", i, want) 40 // Index variable whose evaluation has side-effects 55 // Range expression whose evaluation has side-effects
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug351.go | 12 (x) := 0 // ERROR "non-name [(]x[)]|non-name on left side"
|
issue5373.go | 7 // Ensure that zeroing range loops have the requisite side-effects. 26 fmt.Printf("index after range with side-effect = %d want %d\n", i, want) 36 fmt.Printf("index after range without side-effect = %d want %d\n", i, want) 40 // Index variable whose evaluation has side-effects 55 // Range expression whose evaluation has side-effects
|
/external/eigen/Eigen/src/Core/ |
SolveTriangular.h | 19 template<typename LhsScalar, typename RhsScalar, typename Index, int Side, int Mode, bool Conjugate, int StorageOrder> 22 template <typename Scalar, typename Index, int Side, int Mode, bool Conjugate, int TriStorageOrder, int OtherStorageOrder> 26 template<typename Lhs, typename Rhs, int Side> 31 RhsIsVectorAtCompileTime = (Side==OnTheLeft ? Rhs::ColsAtCompileTime : Rhs::RowsAtCompileTime)==1 42 int Side, // can be OnTheLeft/OnTheRight 44 int Unrolling = trsolve_traits<Lhs,Rhs,Side>::Unrolling, 45 int RhsVectors = trsolve_traits<Lhs,Rhs,Side>::RhsVectors 49 template<typename Lhs, typename Rhs, int Side, int Mode> 50 struct triangular_solver_selector<Lhs,Rhs,Side,Mode,NoUnrolling,1> 71 triangular_solve_vector<LhsScalar, RhsScalar, typename Lhs::Index, Side, Mode, LhsProductTraits::NeedToConjugate [all...] |
/art/compiler/optimizing/ |
side_effects_analysis.h | 39 // Compute side effects of individual blocks and loops. 55 // Side effects of individual blocks, that is the union of the side effects 59 // Side effects of loops, that is the union of the side effects of the
|
side_effects_analysis.cc | 27 // In DEBUG mode, ensure side effects are properly initialized to empty. 45 // Update `effects` with the side effects of all instructions in this block. 50 // If all side effects are represented, scanning further will not add any 51 // more information to side-effects of this block. 60 // The side effects of the loop header are part of the loop. 64 // Update the side effects of the outer loop with the side effects of the inner loop. 70 // Update the side effects of the loop with the side effects of this block.
|
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/userrestrictions/ |
DeviceOwnerUserRestrictionsTest.java | 22 // UserManager.DISALLOW_CONFIG_WIFI, // Has unrecoverable side effects. 26 // UserManager.DISALLOW_SHARE_LOCATION, // Has unrecoverable side effects. 27 // UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES, // Has unrecoverable side effects. 38 // UserManager.ENSURE_VERIFY_APPS, // Has unrecoverable side effects. 53 // UserManager.DISALLOW_DATA_ROAMING, // Has unrecoverable side effects.
|
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerDockedStackTests.java | 74 // Launch activity to side. 79 mAmWmState.assertFocusedActivity("Launched to side activity must be in front.", 82 // Launch another activity to side to cover first one. 89 mAmWmState.assertFocusedActivity("Launched to side covering activity must be in front.", 92 // Launch activity that was first launched to side. It should be brought to front. 99 mAmWmState.assertFocusedActivity("Launched to side covering activity must be in front.", 107 // Launch activity to side. 112 mAmWmState.assertNotNull("Launched to side activity must be in fullscreen stack.", 116 // Try to launch to side same activity again. 122 mAmWmState.assertFocusedActivity("Launched to side activity must remain in front." [all...] |
/external/proguard/src/proguard/optimize/info/ |
SideEffectInstructionChecker.java | 35 * This class can tell whether an instruction has any side effects outside of 66 * count as side effects. 68 * local fields counts as side effects. 79 * Returns whether the given instruction has side effects outside of its 105 // Check for instructions that might cause side effects. 124 // These instructions strictly taken may cause a side effect 141 // These instructions always cause a side effect. 151 // These instructions may have a side effect. 162 // Check for instructions that might cause side effects. 166 // This instruction may have a side effect [all...] |
/external/cblas/src/ |
cblas_ctrmm.c | 12 void cblas_ctrmm(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_ctrmm", "Illegal Side setting, %d\n", Side); 90 if( Side == CblasRight ) SD='L'; 91 else if ( Side == CblasLeft ) SD='R'; 94 cblas_xerbla(2, "cblas_ctrmm", "Illegal Side setting, %d\n", Side);
|
cblas_ctrsm.c | 12 void cblas_ctrsm(const enum CBLAS_ORDER Order, const enum CBLAS_SIDE Side, 45 if( Side == CblasRight) SD='R'; 46 else if ( Side == CblasLeft ) SD='L'; 49 cblas_xerbla(2, "cblas_ctrsm", "Illegal Side setting, %d\n", Side); 99 if( Side == CblasRight) SD='L'; 100 else if ( Side == CblasLeft ) SD='R'; 103 cblas_xerbla(2, "cblas_ctrsm", "Illegal Side setting, %d\n", Side);
|
cblas_dtrmm.c | 12 void cblas_dtrmm(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_dtrmm","Illegal Side setting, %d\n", Side); 95 if( Side == CblasRight) SD='L'; 96 else if ( Side == CblasLeft ) SD='R'; 99 cblas_xerbla(2, "cblas_dtrmm","Illegal Side setting, %d\n", Side);
|