HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 151 - 175 of 852) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 199 CObjectVector<CProperty> props; local
213 props.Add(prop);
224 props.Add(prop);
245 props.Add(prop);
257 props.Add(prop);
269 HRESULT res = BenchCon(props, numIterations, stderr);
455 PROPVARIANT props[kNumPropsMax]; local
457 props[p].vt = VT_UI4;
459 props[0].ulVal = (UInt32)dict;
460 props[1].ulVal = (UInt32)pb;
    [all...]
  /external/opencv3/modules/core/src/
cuda_info.cpp 341 static DeviceProps props; local
342 return props;
    [all...]
  /external/testng/src/main/java/org/testng/log4testng/
Logger.java 490 Properties props= new Properties(); local
495 props.put("log4testng.rootLogger", "WARN");
496 testInitialize(props, out2, err2);
505 Properties props= new Properties(); local
510 props.put("log4testng.debug", "true");
511 props.put("log4testng.rootLogger", "WARN");
512 testInitialize(props, out2, err2);
521 Properties props= new Properties(); local
526 props.put("log4testng.debug", "false");
527 props.put("log4testng.rootLogger", "WARN");
537 Properties props= new Properties(); local
562 Properties props= new Properties(); local
595 Properties props= new Properties(); local
616 Properties props= new Properties(); local
638 Properties props= new Properties(); local
668 Properties props= new Properties(); local
690 Properties props= new Properties(); local
    [all...]
  /external/v8/src/compiler/
change-lowering.cc 570 Operator::Properties props = node->op()->properties(); local
572 jsgraph()->zone(), f, 2, props, CallDescriptor::kNeedsFrameState);
  /external/v8/test/cctest/
test-unboxed-doubles.cc 90 TestPropertyKind* props,
106 TestPropertyKind kind = props[i];
165 TestPropertyKind props[kPropsCount]; local
168 props[i] = PROP_TAGGED;
173 CreateDescriptorArray(isolate, props, kPropsCount);
183 props[0] = PROP_DOUBLE;
184 props[kPropsCount - 1] = PROP_DOUBLE;
187 CreateDescriptorArray(isolate, props, kPropsCount);
483 TestPropertyKind props[] = {
492 const int kPropsCount = arraysize(props);
532 TestPropertyKind props[kPropsCount]; local
665 TestPropertyKind props[kPropsCount]; local
699 TestPropertyKind props[kPropsCount]; local
816 TestPropertyKind props[kPropsCount]; local
852 TestPropertyKind props[kPropsCount]; local
903 TestPropertyKind props[kPropsCount]; local
1246 TestPropertyKind props[kPropsCount]; local
1273 TestPropertyKind props[kPropsCount]; local
1300 TestPropertyKind props[kPropsCount]; local
    [all...]
  /external/vulkan-validation-layers/demos/
vulkaninfo.c 117 VkPhysicalDeviceProperties props; member in struct:app_gpu
717 vkGetPhysicalDeviceProperties(gpu->obj, &gpu->props);
767 const VkFormatProperties *props = &dev->format_props[fmt]; local
775 features[0].flags = props->linearTilingFeatures;
777 features[1].flags = props->optimalTilingFeatures;
779 features[2].flags = props->bufferFeatures;
1019 const VkPhysicalDeviceProperties *props = &gpu->props; local
1060 const VkQueueFamilyProperties *props = &gpu->queue_props[id]; local
1078 const VkPhysicalDeviceMemoryProperties *props = &gpu->memory_props; local
    [all...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.h 53 VkPhysicalDeviceProperties props; member in class:VkDeviceObj
vktestbinding.cpp 368 const VkFormatProperties props = format_properties(fmt); local
370 if (props.linearTilingFeatures) {
372 props.linearTilingFeatures};
376 if (props.optimalTilingFeatures) {
378 props.optimalTilingFeatures};
  /frameworks/av/media/mtp/
MtpDevice.cpp 289 MtpObjectPropertyList* props = getObjectPropsSupported(format); local
290 if (props) {
291 for (size_t j = 0; j < props->size(); j++) {
292 MtpObjectProperty prop = (*props)[j];
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 558 const RenderProperties& props = node.properties(); local
559 uirenderer::Rect bounds(props.getWidth(), props.getHeight());
  /frameworks/native/vulkan/libvulkan/
driver.cpp 104 VkExtensionProperties* props) const;
325 VkExtensionProperties* props) const {
328 nullptr, &count, props);
332 &count, props);
415 const VkExtensionProperties& props = filter.exts[i]; local
417 if (strcmp(name, props.extensionName) != 0)
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 139 ArrayList<Property> props = mPropsMap.get(name); local
140 if (props == null) {
141 props = new ArrayList<Property>();
142 mPropsMap.put(name, props);
144 props.add(prop);
172 List<Property> props = mPropsMap.get(name); local
173 if (props == null || props.size() == 0) {
176 return props.get(0);
  /libcore/ojluni/src/main/java/java/lang/
System.java 896 private static Properties props; field in class:System
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiCategory.java 316 final CategoryProperties props = mShownCategories.get(i); local
317 if (props.mCategoryId == categoryId) {
320 sum += props.mPageCount;
  /system/bt/service/test/
gatt_server_unittest.cpp 539 const int props = bluetooth::kCharacteristicPropertyRead | local
546 EXPECT_EQ(nullptr, gatt_server_->AddCharacteristic(char_uuid, props, perms));
556 auto char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
557 auto char_id1 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
587 EXPECT_EQ(nullptr, gatt_server_->AddCharacteristic(char_uuid, props, perms));
609 char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
610 char_id1 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
628 char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
629 char_id1 = gatt_server_->AddCharacteristic(char_uuid, props, perms);
648 char_id0 = gatt_server_->AddCharacteristic(char_uuid, props, perms)
712 const int props = bluetooth::kCharacteristicPropertyRead | local
    [all...]
  /system/connectivity/shill/cellular/
cellular_capability_gsm.cc 325 KeyValueStore props; local
326 FillConnectPropertyMap(&props);
328 Connect(props, &error, callback);
cellular_capability_gsm_unittest.cc 167 KeyValueStore props; local
168 callback.Run(props, Error());
175 void InvokeConnectFail(KeyValueStore props, Error* error,
667 KeyValueStore props; local
670 props.SetUint(CellularCapabilityGSM::kPropertyAccessTechnology,
672 props.SetUint(CellularCapabilityGSM::kPropertyEnabledFacilityLocks,
674 props.SetString(CellularCapabilityGSM::kPropertyUnlockRequired, kLockType);
675 props.SetUint(CellularCapabilityGSM::kPropertyUnlockRetries, kRetries);
677 capability_->OnPropertiesChanged(MM_MODEM_GSM_INTERFACE, props,
695 capability_->OnPropertiesChanged(MM_MODEM_GSM_NETWORK_INTERFACE, props,
782 KeyValueStore props; local
    [all...]
  /system/connectivity/shill/
service_unittest.cc 279 brillo::VariantDictionary props; local
285 EXPECT_TRUE(service_->store().GetProperties(&props, &error));
286 ASSERT_FALSE(props.find(kCheckPortalProperty) == props.end());
287 EXPECT_TRUE(props[kCheckPortalProperty].IsTypeCompatible<string>());
288 EXPECT_EQ(props[kCheckPortalProperty].Get<string>(), expected);
291 brillo::VariantDictionary props; local
297 EXPECT_TRUE(service_->store().GetProperties(&props, &error));
298 ASSERT_FALSE(props.find(kAutoConnectProperty) == props.end())
303 brillo::VariantDictionary props; local
311 brillo::VariantDictionary props; local
323 brillo::VariantDictionary props; local
    [all...]
  /system/core/adb/
adb.cpp 249 const std::string& props = pieces[2]; local
250 for (const auto& prop : android::base::Split(props, ";")) {
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/sdklib/24.5.0/
sdklib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib-test/24.5.0/
sdklib-test-24.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/sdklib/24.5.0/
sdklib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/24.3.0-beta2/
sdklib-24.3.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/24.3.0-beta3/
sdklib-24.3.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/24.3.0-beta4/
sdklib-24.3.0-beta4.jar 

Completed in 2328 milliseconds

1 2 3 4 5 67 8 91011>>