HomeSort by relevance Sort by last modified time
    Searched refs:product (Results 201 - 225 of 495) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/samsung_slsi/exynos5/gralloc/
Android.mk 19 # hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so
  /hardware/samsung_slsi/exynos5/libhwc/
Android.mk 17 # hw/<COPYPIX_HARDWARE_MODULE_ID>.<ro.product.board>.so
  /hardware/samsung_slsi/exynos5/libion_exynos/
Android.mk 19 # hw/<COPYPIX_HARDWARE_MODULE_ID>.<ro.product.board>.so
  /external/srec/srec/cfront/
himul32.h 28 // product of its two signed 32-bit integers
51 mulhw r3, factor1, factor2 # place the high order 32 bits of the product in the return register r3
58 product of its two signed 32-bit integer arguments.
81 // the signed 64-bit product of register EAX and that operand, into
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BaseCluster.java 105 double product = 0f; local
107 product += vector1[i] * vector2[i];
109 double radian = Math.acos(Math.min(product, 1f));
  /device/samsung/manta/
device.mk 175 $(call inherit-product, frameworks/native/build/tablet-10in-xhdpi-2048-dalvik-heap.mk)
190 $(call inherit-product-if-exists, hardware/samsung_slsi/exynos5/exynos5.mk)
191 $(call inherit-product-if-exists, vendor/samsung_slsi/exynos5/exynos5-vendor.mk)
192 $(call inherit-product-if-exists, vendor/samsung/manta/device-vendor.mk)
194 $(call inherit-product-if-exists, hardware/broadcom/wlan/bcmdhd/firmware/bcm4324/device-bcm.mk)
  /external/chromium_org/chrome/installer/setup/
setup_util_unittest.cc 266 // with a product being updated.
274 static FakeProductState* FromProductState(const ProductState* product) {
275 return static_cast<FakeProductState*>(const_cast<ProductState*>(product));
295 // Install the product according to the version.
299 // Prepare to update the product in the temp dir.
337 FakeProductState* product = FakeProductState::FromProductState( local
341 product->set_version(product_version_);
347 product->set_uninstall_command(uninstall_command);
371 // Test that the path to the advertised product version is found.
387 // The product doesn't appear to be installed, so the max version is found
    [all...]
install.cc 50 using installer::Product;
322 // - Localized display name for the product.
370 const Product& product,
394 BrowserDistribution* dist = product.distribution();
420 product.AddDefaultShortcutProperties(target, &base_properties);
475 const Product& product,
477 DCHECK(product.is_chrome());
486 BrowserDistribution* dist = product.distribution()
    [all...]
install_worker_unittest.cc 27 using installer::Product;
334 scoped_ptr<Product> product(new Product(dist));
335 product->SetOption(installer::kOptionMultiInstall, true);
336 installer_state->AddProduct(&product);
355 scoped_ptr<Product> product(new Product(dist));
357 product->SetOption(installer::kOptionMultiInstall, true)
    [all...]
  /external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_win.cc 65 std::string* product) {
75 *product = base::StringPrintf("%04x", HIWORD(prop.dwData));
187 std::string product; local
188 if (!GetDirectInputVendorProduct(gamepad, &vendor, &product)) {
197 device.mapper = GetGamepadStandardMappingFunction(vendor, product);
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 246 product = child.getAttribute('product') or None
247 grd_name = self.__FormatName(raw_name, product)
258 def __FormatName(self, name, product=None):
263 will annotate names with product information (lowercase) where appropriate.
267 product: An optional product annotation.
276 product_suffix = ('_product_%s' % product.lower()) if product else ''
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
floatnum.c 235 wordptr product, op1, op2; local
267 product = BitVector_Create((N_int)((MANT_BITS+1)*2), FALSE);
279 /* Compute the product of the mantissas */
280 BitVector_Multiply(product, op1, op2);
282 /* Normalize the product. Note: we know the product is non-zero because
288 norm_amt = (MANT_BITS*2-1)-Set_Max(product);
291 BitVector_Move_Left(product, (N_int)norm_amt);
295 BitVector_Interval_Copy(acc->mantissa, product, 0, MANT_BITS, MANT_BITS);
298 BitVector_Destroy(product);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector3f.java 289 * <code>dot</code> calculates the dot product of this vector with a
294 * @return the resultant dot product of this vector and a given vector.
305 * <code>cross</code> calculates the cross product of this vector with a
309 * the vector to take the cross product of with this.
310 * @return the cross product vector.
317 * <code>cross</code> calculates the cross product of this vector with a
321 * the vector to take the cross product of with this.
323 * the vector to store the cross product result.
324 * @return result, after recieving the cross product vector.
331 * <code>cross</code> calculates the cross product of this vector with a
    [all...]
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor_chromeos.cc 26 // Constructs a device id using uuid or manufacturer (vendor and product) id
33 // If one of the vendor or product information is missing, its value in the
39 const std::string& product = disk.product_id(); local
40 if (vendor.empty() && product.empty())
42 return kVendorModelSerialPrefix + vendor + ":" + product + ":";
  /build/core/
dex_preopt.mk 37 --product-dir=$(DEXPREOPT_PRODUCT_DIR) --boot-dir=$(DEXPREOPT_BOOT_JAR_DIR) \
envsetup.mk 21 # The product defaults to generic on hardware
23 # was invoked with a PRODUCT-xxx-yyy goal.
106 # Define them here so they can be used in product config files.
113 # Read the product specs so we an get TARGET_DEVICE and other
166 TARGET_PRODUCT_OUT_ROOT := $(TARGET_OUT_ROOT)/product
  /external/chromium_org/v8/test/mjsunit/
top-level-assignments.js 89 Calculator.prototype.product = function() { return this.x * this.y; };
95 assertEquals(200, calc.product());
  /external/v8/test/mjsunit/
top-level-assignments.js 89 Calculator.prototype.product = function() { return this.x * this.y; };
95 assertEquals(200, calc.product());
  /frameworks/base/core/jni/
android_view_InputDevice.cpp 61 static_cast<int32_t>(ident.vendor), static_cast<int32_t>(ident.product),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
hiddev.h 47 __s16 product; member in struct:hiddev_devinfo
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hiddev.h 47 __s16 product; member in struct:hiddev_devinfo
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
hiddev.h 47 __s16 product; member in struct:hiddev_devinfo
  /device/asus/tilapia/
BoardConfig.mk 19 # included in a build is to use PRODUCT_PACKAGES in a product
  /device/sample/apps/SampleEmailPolicy/
Android.mk 20 # system to create "MyDeviceEmailPolicy.apk". You must then add this to the appropriate product.mk
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_app_browsertest.js 50 // Check a product-specific label, to ensure it uses "App Launcher", and not

Completed in 397 milliseconds

1 2 3 4 5 6 7 891011>>