/external/v8/test/cctest/ |
H A D | test-diy-fp.cc | 56 DiyFp product = DiyFp::Times(diy_fp1, diy_fp2); local 58 CHECK(0 == product.f()); // NOLINT 59 CHECK_EQ(64, product.e()); 66 product = DiyFp::Times(diy_fp1, diy_fp2); 67 CHECK(1 == product.f()); // NOLINT 68 CHECK_EQ(11 + 13 + 64, product.e()); 73 product = DiyFp::Times(diy_fp1, diy_fp2); 74 CHECK(1 == product.f()); // NOLINT 75 CHECK_EQ(11 + 13 + 64, product.e()); 79 product [all...] |
/external/nist-sip/java/javax/sip/header/ |
H A D | ServerHeader.java | 11 void setProduct(List product) throws ParseException; argument
|
H A D | UserAgentHeader.java | 11 void setProduct(List product) throws ParseException; argument
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/ |
H A D | ExpressionParser.java | 50 IExpression e = product(); 53 e = new Add(e, product()); 55 e = new Sub(e, product()); 62 private IExpression product() throws IOException { method in class:ExpressionParser
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
H A D | Server.java | 98 * Returns the list value of the product parameter. 110 * Sets the product value of the UserAgentHeader. 112 * @param product - a List specifying the product value 114 * unexpectedly while parsing the product value. 116 public void setProduct(List product) throws ParseException { argument 117 if (product == null) 121 + " product parameter is null"); 122 productTokens = product;
|
H A D | UserAgent.java | 93 * Returns the list value of the product parameter. 105 * Sets the product value of the UserAgentHeader. 107 * @param product - a List specifying the product value 109 * unexpectedly while parsing the product value. 111 public void setProduct(List product) throws ParseException { argument 112 if (product == null) 116 + " product parameter is null"); 117 productTokens = product;
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
H A D | Invoice.java | 25 public List<Product> product; field in class:Invoice
|
/external/ImageMagick/MagickCore/ |
H A D | delegate-private.h | 27 const char *product; member in struct:gsapi_revision_s
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
H A D | fuzzy.py | 24 """Define possible score aggregators: average() and product(). 36 def product(data): function 37 """The product of the elements in data."""
|
/external/google-breakpad/src/tools/linux/symupload/ |
H A D | minidump_upload.cc | 33 // prod: the product name 34 // ver: the product version 51 string product; member in struct:Options 62 parameters["prod"] = options->product; 92 fprintf(stderr, "Usage: %s [options...] -p <product> -v <version> <minidump> " 98 fprintf(stderr, "-p:\t <product> Product name\n"); 115 options->product = optarg;
|
/external/kernel-headers/original/uapi/linux/ |
H A D | hidraw.h | 29 __s16 product; member in struct:hidraw_devinfo
|
H A D | virtio_input.h | 53 __u16 product; member in struct:virtio_input_devids
|
/external/lldb/test/functionalities/abbreviation/ |
H A D | main.cpp | 16 product (int x, int y) function 44 return product (i, j); 48 return product (sum (i, i), sum (j, j));
|
/external/lldb/test/functionalities/alias/ |
H A D | main.cpp | 16 product (int x, int y) function 44 return product (i, j); 48 return product (sum (i, i), sum (j, j));
|
/external/lldb/test/functionalities/breakpoint/breakpoint_ids/ |
H A D | main.cpp | 19 product (int x, int y) function 47 return product (i, j); 51 return product (sum (i, i), sum (j, j));
|
/external/lldb/test/functionalities/command_script/ |
H A D | main.cpp | 17 product (int x, int y) function 45 return product (i, j); 49 return product (sum (i, i), sum (j, j));
|
/external/lldb/test/logging/ |
H A D | main.cpp | 16 product (int x, int y) function 44 return product (i, j); 48 return product (sum (i, i), sum (j, j));
|
/external/clang/test/Parser/ |
H A D | cxx1z-fold-expressions.cpp | 4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
|
/external/clang/test/SemaTemplate/ |
H A D | cxx1z-fold-expressions.cpp | 4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function 9 static_assert(product(1, 2, 3, 4, 5) == 120);
|
/external/eigen/test/eigen2/ |
H A D | product.h | 21 template<typename MatrixType> void product(const MatrixType& m) function 111 // test submatrix and matrix/vector product
|
/external/eigen/test/ |
H A D | product.h | 20 template<typename MatrixType> void product(const MatrixType& m) function 119 // test submatrix and matrix/vector product 139 // inner product 143 // outer product
|
/external/v8/test/mjsunit/ |
H A D | top-level-assignments.js | 89 Calculator.prototype.product = function() { return this.x * this.y; }; 95 assertEquals(200, calc.product());
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ |
H A D | StatUtils.java | 148 * Returns the product of the entries in the input array, or 154 * @return the product of the values or Double.NaN if the array is empty 157 public static double product(final double[] values) { method in class:StatUtils 162 * Returns the product of the entries in the specified portion of 171 * @return the product of the values or Double.NaN if length = 0 175 public static double product(final double[] values, final int begin, method in class:StatUtils
|
/external/google-breakpad/src/common/linux/ |
H A D | google_crashdump_uploader.cc | 43 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, argument 55 Init(product, 69 GoogleCrashdumpUploader::GoogleCrashdumpUploader(const string& product, argument 81 Init(product, 95 void GoogleCrashdumpUploader::Init(const string& product, argument 107 product_ = product;
|
/external/google-breakpad/src/tools/windows/symupload/ |
H A D | symupload.cc | 39 // product: the HTTP-friendly product name, e.g. "MyApp" 159 L" symupload [--timeout NN] [--product product_name] ^\n" 163 wprintf(L" - product_name is an HTTP-friendly product name. It must only\n" 167 L" symupload.exe --timeout 0 --product Chrome ^\n" 173 const wchar_t *product = nullptr; local 182 if (!wcscmp(L"--product", argv[currentarg])) { 183 product = argv[currentarg + 1]; 211 // Don't make a missing product name a hard error. Issue a warning and let 212 // the server decide whether to reject files without product nam [all...] |