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

12345

/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/autotest/client/common_lib/cros/cfm/usb/
H A Dusb_device.py12 product,
23 @param product: Product description. String
35 self._product = product
49 """Returns the product id for this USB device."""
58 def product(self): member in class:UsbDevice
59 """Returns the product name."""
H A Dusb_device_spec.py13 def __init__(self, vid, pid, product, interfaces):
19 @param product: Product description. String
24 self._product = product
40 """Returns the product id for this USB device."""
49 def product(self): member in class:UsbDeviceSpec
50 """Returns the product name."""
H A Dcfm_usb_devices.py24 product='Huddly GO', variable
31 product='Logitech Webcam C930e', variable
38 product='HD Pro Webcam C920', variable
45 product='PTZ Pro Camera', variable
52 product='PTZ Pro 2 Camera', variable
60 product='Hangouts Meet speakermic', variable
67 product='Jabra SPEAK 410', variable
75 product='MIMO VUE HD', variable
87 product='MIMO VUE HD', variable
97 product variable
[all...]
/external/f2fs-tools/tools/sg_write_buffer/include/
H A Dsg_cmds_basic.h212 char product[17]; member in struct:sg_simple_inquiry_resp
/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/tensorflow/tensorflow/compiler/tf2xla/kernels/
H A Dreshape_op.cc46 // Compute the output shape. Determine product of specified
50 int64 product = 1; variable
66 product *= size;
71 ctx, product > 0,
75 const int64 missing = input_shape.num_elements() / product;
77 ctx, product * missing == input_shape.num_elements(),
81 product));
/external/tensorflow/tensorflow/core/kernels/
H A Dreshape_op.h43 // Compute the output shape. Determine product of specified
46 int64 product = 1; variable
50 OP_REQUIRES_OK(context, ValidateSizes<int32>(sizes, &product,
54 OP_REQUIRES_OK(context, ValidateSizes<int64>(sizes, &product,
65 context, product > 0,
69 const int64 missing = input.NumElements() / product;
71 context, product * missing == input.NumElements(),
75 product));
94 Status ValidateSizes(const Tensor& sizes, int64* product, int* unknown_index, argument
96 *product
[all...]
H A Dreshape_util.cc56 // Compute the output shape. Determine product of specified dimensions, and
59 int64 product = 1; local
76 product *= size;
82 context, product > 0,
86 const int64 missing = dense_size / product;
88 context, product * missing == dense_size,
92 product));
/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.h30 __s16 product; member in struct:hidraw_devinfo
/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;

Completed in 825 milliseconds

12345