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

1 2

  /external/easymock/src/org/easymock/internal/matchers/
Same.java 23 public class Same implements IArgumentMatcher, Serializable {
29 public Same(Object expected) {
38 buffer.append("same(");
  /external/mockito/src/org/mockito/internal/matchers/
Same.java 14 public class Same extends ArgumentMatcher<Object> implements Serializable {
19 public Same(Object wanted) {
28 description.appendText("same(");
  /external/webkit/Tools/Scripts/
sunspider-compare-results 53 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
54 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
55 --parse-only Use the parse-only benchmark suite. Same as --suite=parse-only
run-sunspider 65 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
66 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
67 --parse-only Use the parse-only benchmark suite. Same as --suite=parse-only
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 113 Same thing but with paragraphs:
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 113 Same thing but with paragraphs:
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 113 Same thing but with paragraphs:
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.rl 40 # Same order as enum sea_category_t. Not sure how to avoid duplication.
hb-ot-shape-complex-indic-machine.rl 40 # Same order as enum indic_category_t. Not sure how to avoid duplication.
hb-ot-shape-complex-myanmar-machine.rl 40 # Same order as enum myanmar_category_t. Not sure how to avoid duplication.
  /external/webkit/PerformanceTests/SunSpider/
sunspider-compare-results 43 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
44 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
sunspider 62 --ubench Use microbenchmark suite instead of regular tests. Same as --suite=ubench
63 --v8-suite Use the V8 benchmark suite. Same as --suite=v8-v4
64 --parse-only Use the parse-only benchmark suite. Same as --suite=parse-only
  /external/clang/lib/AST/
ASTDiagnostic.cpp 148 /// 4) Two different types within the same diagnostic have the same output
173 continue; // Same types
176 continue; // Same canonical types
465 /// Same - Whether the two arguments evaluate to the same value.
466 bool Same;
472 ToValueDecl(0), FromDefault(false), ToDefault(false), Same(false) { }
534 /// SetSame - Sets the same flag of the current node.
535 void SetSame(bool Same) {
    [all...]
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 92 bool Same = true;
97 Same = false;
101 if (Same)
124 /// GetValueInMiddleOfBlock is the same as GetValueAtEndOfBlock except in one
175 // Otherwise, if all the merged values are the same, just use it.
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_STRING_COMPARETO.S 6 * same and positive if >.
20 subs r0, r2, r1 @ Same?
  /external/v8/test/mjsunit/harmony/
block-conflicts.js 104 // Same level.
114 // Same level.
  /external/v8/test/mjsunit/regress/
regress-406.js 46 // Same with just the left operand constant.
60 // Same with just the right operand constant.
regress-675.js 46 // Same test, but test that the global property cell is also checked
  /dalvik/vm/compiler/template/mips/
TEMPLATE_STRING_COMPARETO.S 6 * same and positive if >.
19 subu v0, a0, a1 # Same?
  /external/bison/data/
glr.c 79 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
87 # Same as b4_yyerror_args, but with a leading comma.
94 # Same as above, but on the lookahead, hence &yylloc instead of yylocp.
    [all...]
  /external/mockito/src/org/mockito/
Matchers.java 39 * E.g: (example shows verification but the same applies to stubbing):
620 * Object argument that is the same as the given value.
630 public static <T> T same(T value) { method in class:Matchers
631 return (T) reportMatcher(new Same(value)).<T>returnFor(value);
  /external/protobuf/python/google/protobuf/internal/
text_format_test.py 273 """Same as assertRaises, but also compares the exception message."""
  /external/v8/test/mjsunit/
substr.js 121 // Same with two-byte strings
  /external/easymock/src/org/easymock/
EasyMock.java 1405 public static <T> T same(T value) { method in class:EasyMock
    [all...]
  /external/ceres-solver/docs/
faq.tex 14 Most non-linear solvers we are aware of, define the problem and residuals in terms of scalars and it is possible to do this with Ceres also. However, it is our experience that in most problems small groups of scalars occur together. For example the three components of a translation vector and the four components of the quaternion that define the pose of a camera. Same is true for residuals, where it is common to have small vectors of residuals rather than just scalars. There are a number of advantages of using blocks. It saves on indexing information, which for large problems can be substantial. Blocks translate into contiguous storage in memory which is more cache friendly and last but not the least, it allows us to use SIMD/SSE based BLAS routines to significantly speed up various matrix operations.
21 In most problems there is a natural parameter block structure, as there is a semantic meaning associated with groups of scalars -- mean vector of a distribution, color of a pixel etc. To group two scalar variables, ask yourself if residual blocks will always use these two variables together. If the answer is yes, then the two variables belong to the same parameter block.

Completed in 508 milliseconds

1 2