/external/chromium_org/chrome/installer/util/ |
auto_launch_util.cc | 18 #include "chrome/installer/util/product.h" 52 installer::Product product(distribution); 54 product.GetUserDataPaths(&data_dir_paths);
|
user_experiment.cc | 30 #include "chrome/installer/util/product.h" 487 const Product& product, 504 if (!product.LaunchChromeAndWait(application_path, options, &exit_code)) 534 system_level_toast, product.distribution()->GetType()));
|
/external/chromium_org/content/browser/gamepad/ |
gamepad_platform_data_fetcher_linux.cc | 147 const char* product_id = udev_device_get_sysattr_value(dev, "id/product"); 158 // has the same vendor/product id, prefer the description from that. 173 const char* product = udev_device_get_sysattr_value(usb_dev, "product"); local 178 name_string = base::StringPrintf("%s %s", manufacturer, product); 182 // Append the vendor and product information then convert the utf-8 185 " (%sVendor: %s Product: %s)",
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
HashFunctions.h | 97 uint64_t product = longRandom * (shortRandom1 * key1 + shortRandom2 * key2); local 98 unsigned highBits = static_cast<unsigned>(product >> (sizeof(uint64_t) - sizeof(unsigned)));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/ |
UpdateBugStateTask.java | 47 private static final String HTTPS_BUGS_ECLIPSE_ORG_BUGS_BUGLIST_CGI_PRODUCT = "https://bugs.eclipse.org/bugs/buglist.cgi?product="; //$NON-NLS-1$ 95 private static final String PRODUCT = "product"; //$NON-NLS-1$ 181 private String product; field in class:UpdateBugStateTask 205 product = EMPTY; 235 product = p; 330 if (!bugList.equals(EMPTY) && endDate.equals(EMPTY) && milestone.equals(EMPTY) && product.equals(EMPTY)) 350 if (product.equals(EMPTY)) 359 (!product.equals(EMPTY) ? product + SP : EMPTY) + [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseProduct.h | 141 // * for a dot product use: v1.dot(v2) 142 // * for a coeff-wise product use: v1.cwise()*v2 159 inline Derived& SparseMatrixBase<Derived>::operator=(const SparseSparseProduct<Lhs,Rhs>& product) 161 product.evalTo(derived()); 165 /** \returns an expression of the product of two sparse matrices. 166 * By default a conservative product preserving the symbolic non zeros is performed. 168 * in which case a totally different product algorithm is employed:
|
/external/libmtp/examples/ |
detect.c | 90 rawdevices[i].device_entry.product != NULL) { 93 rawdevices[i].device_entry.product,
|
/external/nist-sip/java/javax/sip/header/ |
HeaderFactory.java | 148 ServerHeader createServerHeader(List product) throws ParseException; 170 UserAgentHeader createUserAgentHeader(List product) throws ParseException;
|
/external/objenesis/ |
Android.mk | 57 # adb install -r out/target/product/generic/data/app/ObjenesisTck.apk
|
/external/openfst/src/include/fst/ |
sparse-power-weight.h | 179 // Semimodule dot product 183 const SparsePowerWeight<W, K>& product = Times(w1, w2); local 185 for (SparseTupleWeightIterator<W, K> it(product); !it.Done(); it.Next()) {
|
/frameworks/base/data/fonts/ |
fonts.mk | 15 # Warning: this is actually a product definition, to be inherited from
|
/libcore/ |
CaCerts.mk | 50 # This is so that build/target/product/core.mk can use cacerts in PRODUCT_PACKAGES
|
/system/core/fastboot/ |
fastboot.c | 72 static const char *product = 0; variable 122 char *find_item(const char *item, const char *product) 145 if(product) { 148 "../../../target/product/%s/%s", product, fn); 154 die("neither -p product specified nor ANDROID_PRODUCT_OUT set"); 320 " -p <product> specify product name\n" 470 } else if (!strncmp(name, "require-for-product:", 20)) { 471 // Get the product and point name past i [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/ |
bignum.cc | 259 // The product of a bigit with the factor is of size kBigitSize + 32. 264 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; local 265 bigits_[i] = static_cast<Chunk>(product & kBigitMask); 266 carry = (product >> kBigitSize); 750 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i]; 751 DoubleChunk remove = borrow + product;
|
/external/chromium_org/v8/src/ |
bignum.cc | 258 // The product of a bigit with the factor is of size kBigitSize + 32. 263 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; local 264 bigits_[i] = static_cast<Chunk>(product & kBigitMask); 265 carry = (product >> kBigitSize); 756 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i]; 757 DoubleChunk remove = borrow + product;
|
/external/v8/src/ |
bignum.cc | 257 // The product of a bigit with the factor is of size kBigitSize + 32. 262 DoubleChunk product = static_cast<DoubleChunk>(factor) * bigits_[i] + carry; local 263 bigits_[i] = static_cast<Chunk>(product & kBigitMask); 264 carry = (product >> kBigitSize); 748 DoubleChunk product = static_cast<DoubleChunk>(factor) * other.bigits_[i]; 749 DoubleChunk remove = borrow + product;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 176 for indices in product(range(n), repeat=r): 256 for indices in product(range(n), repeat=r): 283 # Test relationships between product(), permutations(), 289 prod = list(product(s, repeat=r)) 645 self.assertEqual(list(product(*args)), result) 647 self.assertEqual(list(product(*(args*r))), 648 list(product(*args, **dict(repeat=r)))) 649 self.assertEqual(len(list(product(*[range(7)]*6))), 7**6) 650 self.assertRaises(TypeError, product, range(6), None) 688 self.assertEqual(len(list(product(*args))), expected_len [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 176 for indices in product(range(n), repeat=r): 256 for indices in product(range(n), repeat=r): 283 # Test relationships between product(), permutations(), 289 prod = list(product(s, repeat=r)) 645 self.assertEqual(list(product(*args)), result) 647 self.assertEqual(list(product(*(args*r))), 648 list(product(*args, **dict(repeat=r)))) 649 self.assertEqual(len(list(product(*[range(7)]*6))), 7**6) 650 self.assertRaises(TypeError, product, range(6), None) 688 self.assertEqual(len(list(product(*args))), expected_len [all...] |
/sdk/adtproductbuild/ |
Android.mk | 5 # something like "make PRODUCT-sdk-adt_eclipse_ide". 87 # - Changing the product definition in eclipse.ini from org.eclipse.platform to ..adt.package.product 97 # over and specified in eclipse.ini, only because including it directly in the product definition 116 sed -i -e 's/org.eclipse.platform/com.android.ide.eclipse.adt.package.product/g' \ 122 sed -i -e 's/org.eclipse.platform.ide/com.android.ide.eclipse.adt.package.product/g' \
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
xcode.py | 640 'executable': 'com.apple.product-type.tool', 642 'shared_library': 'com.apple.product-type.library.dynamic', 643 'static_library': 'com.apple.product-type.library.static', 644 'executable+bundle': 'com.apple.product-type.application', 645 'loadable_module+bundle': 'com.apple.product-type.bundle', 646 'loadable_module+xctest': 'com.apple.product-type.bundle.unit-test', 647 'shared_library+bundle': 'com.apple.product-type.framework', 672 gyp.common.ExceptionAppend(e, "-- unknown product type while " [all...] |
/external/chromium_org/chrome/common/ |
chrome_content_client.cc | 490 std::string product = GetProduct(); local 494 product += " Mobile"; 496 return webkit_glue::BuildUserAgentFromProduct(product);
|
/external/chromium_org/chrome_frame/ |
html_utils.cc | 413 std::string product("Chrome/"); 414 product += version_info.is_valid() ? version_info.Version() 417 ua = webkit_glue::BuildUserAgentFromProduct(product);
|
/external/chromium_org/chrome_frame/test/ |
html_util_unittests.cc | 425 std::string product("Chrome/"); 426 product += version_info.is_valid() ? version_info.Version() : "0.0.0.0"; 427 std::string chrome_ua(webkit_glue::BuildUserAgentFromProduct(product));
|
/bionic/libc/kernel/common/linux/ |
mod_devicetable.h | 197 __u16 product; member in struct:input_device_id
|
/development/ndk/platforms/android-3/include/linux/ |
mod_devicetable.h | 193 __u16 product; member in struct:input_device_id
|