Searched defs:product (Results 1 - 25 of 75) sorted by relevance

123

/external/nist-sip/java/javax/sip/header/
H A DServerHeader.java11 void setProduct(List product) throws ParseException; argument
H A DUserAgentHeader.java11 void setProduct(List product) throws ParseException; argument
/external/google-benchmark/test/
H A Dmultiple_ranges_test.cc47 int product = state.range(0) * state.range(1) * state.range(2); local
48 for (int x = 0; x < product; x++) {
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/parser/
H A DExpressionParser.java50 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/libcxx/utils/google-benchmark/test/
H A Dmultiple_ranges_test.cc47 int product = state.range(0) * state.range(1) * state.range(2); local
48 for (int x = 0; x < product; x++) {
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DServer.java98 * 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 DUserAgent.java93 * 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 DInvoice.java25 public List<Product> product; field in class:Invoice
/external/ImageMagick/MagickCore/
H A Ddelegate-private.h27 const char *product; member in struct:gsapi_revision_s
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dfuzzy.py24 """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 Dminidump_upload.cc33 // 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 Dhidraw.h29 __s16 product; member in struct:hidraw_devinfo
H A Dvirtio_input.h53 __u16 product; member in struct:virtio_input_devids
/external/clang/test/Parser/
H A Dcxx1z-fold-expressions.cpp4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
/external/clang/test/SemaTemplate/
H A Dcxx1z-fold-expressions.cpp4 template<typename ...T> constexpr auto product(T ...t) { return (t * ...); } function
9 static_assert(product(1, 2, 3, 4, 5) == 120);
/external/eigen/test/
H A Dproduct.h20 template<typename MatrixType> void product(const MatrixType& m) function
135 // test submatrix and matrix/vector product
194 // inner product
200 // outer product
/external/syslinux/com32/lua/src/
H A Dpci.c54 lua_pushstring(L, "product");
55 lua_pushnumber(L, pci_device->product);
80 char product[255]; local
123 /* if we have a tab + a char, it means this is a product id */
126 /* the product name the second field */
127 strlcpy(product,skipspace(strstr(line," ")),255);
128 remove_eol(product);
132 /* the product id is first field */
137 lua_pushstring(L, product);
140 /* if we have two tabs, it means this is a sub product */
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
H A DStatUtils.java148 * 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 Dgoogle_crashdump_uploader.cc43 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 Dsymupload.cc39 // 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...]
/external/pdfium/xfa/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256Poly.cpp152 CFX_ArrayTemplate<int32_t> product; local
153 product.SetSize(aLength + bLength - 1);
157 product[i + j] = CBC_ReedSolomonGF256::AddOrSubtract(
158 product[i + j],
163 temp->Init(m_field, &product, e);
176 CFX_ArrayTemplate<int32_t> product; local
177 product.SetSize(size);
179 product[i] = m_field->Multiply(m_coefficients[i], scalar);
182 temp->Init(m_field, &product, e);
199 CFX_ArrayTemplate<int32_t> product; local
[all...]
/external/syslinux/gpxe/src/include/gpxe/
H A Dsmbios.h104 uint8_t product; member in struct:smbios_system_information
/external/syslinux/gpxe/src/util/Option/
H A DROM.pm450 product => { offset => 0x10, length => 0x02, pack => "S" },
490 sub product { subroutine
494 my $product = $hash->{product};
495 return undef unless $product;
497 my $raw = substr ( ${$self->{data}}, $product );
/external/webrtc/talk/media/webrtc/
H A Dfakewebrtcdeviceinfo.h43 std::string product; member in struct:FakeWebRtcDeviceInfo::Device
75 dev->product.c_str());
/external/deqp/modules/gles31/functional/
H A Des31fShaderSharedVarTests.cpp63 static inline T product (const tcu::Vector<T, Size>& v) function in namespace:deqp::gles31::Functional
117 const int valArrayLength = de::min<int>(MAX_VALUE_ARRAY_LENGTH, product(m_workGroupSize));
187 const int numValues = (int)product(m_workGroupSize);
297 gl.uniform1ui(iterCountLoc, product(m_workGroupSize));
316 const deUint32 numValues = product(m_workGroupSize);

Completed in 911 milliseconds

123