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

1 2 3 4 5 67 8 91011>>

  /external/adhd/cras/src/tests/
cras_dsp_pipeline_unittest.cc 46 int properties; member in struct:data
143 return data->properties;
172 data->properties = MODULE_INPLACE_BROKEN;
174 data->properties = 0;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 124 VkImageFormatProperties properties; local
131 &properties);
  /external/deqp/external/vulkancts/modules/vulkan/subgroups/
vktSubgroupsArithmeticTests.cpp 902 VkPhysicalDeviceProperties2 properties; local
903 properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
904 properties.pNext = &subgroupProperties;
906 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties);
    [all...]
vktSubgroupsBasicTests.cpp 2015 VkPhysicalDeviceProperties2 properties; local
    [all...]
vktSubgroupsPartitionedTests.cpp 897 VkPhysicalDeviceProperties2 properties; local
898 properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
899 properties.pNext = &subgroupProperties;
901 context.getInstanceInterface().getPhysicalDeviceProperties2(context.getPhysicalDevice(), &properties);
    [all...]
  /external/emma/core/java12/com/vladium/logging/
Logger.java 16 import java.util.Properties;
569 final Properties properties = Property.getAppProperties (IAppConstants.APP_NAME_LC, Logger.class.getClassLoader ()); external variable declarations
575 final String _level = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_LEVEL,
584 final String _filter = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_FILTER);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
NumberParserTest.java 348 DecimalFormatProperties properties = new DecimalFormatProperties(); local
349 properties.setGroupingSize(0);
352 .createParserFromProperties(properties, symbols, false);
DecimalQuantityTest.java 46 DecimalFormatProperties properties = new DecimalFormatProperties(); local
48 NumberFormatter.fromDecimalFormat(properties, symbols, null).locale(ULocale.ENGLISH));
50 properties = new DecimalFormatProperties().setMinimumSignificantDigits(3)
53 NumberFormatter.fromDecimalFormat(properties, symbols, null).locale(ULocale.ENGLISH));
55 properties = new DecimalFormatProperties().setMinimumExponentDigits(1).setMaximumIntegerDigits(3)
58 NumberFormatter.fromDecimalFormat(properties, symbols, null).locale(ULocale.ENGLISH));
60 properties = new DecimalFormatProperties().setRoundingIncrement(new BigDecimal("0.5"));
62 NumberFormatter.fromDecimalFormat(properties, symbols, null).locale(ULocale.ENGLISH));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
NumberParserTest.java 345 DecimalFormatProperties properties = new DecimalFormatProperties(); local
346 properties.setGroupingSize(0);
349 .createParserFromProperties(properties, symbols, false);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
AgentOptionsTest.java 20 import java.util.Properties;
76 Properties properties = new Properties(); local
77 properties.put("destfile", "/target/test/test.exec");
78 properties.put("append", "false");
79 properties.put("includes", "org.*:com.*");
80 properties.put("excludes", "*Test");
81 properties.put("exclclassloader", "org.jacoco.test.TestLoader");
82 properties.put("inclbootstrapclasses", "true")
    [all...]
  /external/mesa3d/src/amd/addrlib/core/
addrelemlib.cpp 335 ComponentFlags properties, ///< [in] properties about byteAligned, exportNorm
352 if (properties.byteAligned) // Components are all byte-sized
404 ComponentFlags properties; // byteAligned, exportNorm local
412 //initialize properties
413 properties.byteAligned = TRUE;
414 properties.exportNorm = TRUE;
415 properties.floatComp = FALSE;
417 //set properties and result bits
422 properties.byteAligned = FALSE
477 ComponentFlags properties; \/\/ byteAligned, exportNorm local
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_node.cpp 452 std::vector<CXFA_Node*> properties = GetXFANode()->GetNodeList( local
454 if (!properties.empty()) {
456 properties.front()));
  /external/proguard/src/proguard/
ConfigurationParser.java 35 * in file names ('<...>') can be resolved against a given set of properties.
42 private final Properties properties; field in class:ConfigurationParser
50 * the given Properties.
53 Properties properties) throws IOException
55 this(args, null, properties);
61 * with the given base directory and the given Properties.
65 Properties properties) throws IOExceptio
    [all...]
  /external/testng/src/main/java/org/testng/remote/
SuiteDispatcher.java 5 import java.util.Properties;
33 * Properties allowed in remote.properties
59 Properties properties = file.getProperties(); local
61 m_verbose = Integer.parseInt( properties.getProperty(VERBOSE, "1"));
63 String strategy = properties.getProperty(MASTER_STRATEGY, STRATEGY_SUITE);
66 String adapter = properties.getProperty(MASTER_ADPATER);
76 m_masterAdpter.init(properties);
  /external/virglrenderer/src/gallium/auxiliary/tgsi/
tgsi_scan.h 130 unsigned properties[TGSI_PROPERTY_COUNT]; /* index with TGSI_PROPERTY_ */ member in struct:tgsi_shader_info
  /art/runtime/native/
dalvik_system_VMRuntime.cc 197 const std::vector<std::string>& properties = Runtime::Current()->GetProperties(); local
199 env->NewObjectArray(static_cast<jsize>(properties.size()),
206 for (size_t i = 0; i != properties.size(); ++i) {
207 ScopedLocalRef<jstring> str(env, env->NewStringUTF(properties[i].c_str()));
744 NATIVE_METHOD(VMRuntime, properties, "()[Ljava/lang/String;"),
  /cts/tests/tests/telecom/src/android/telecom/cts/
RemoteConferenceTest.java 366 int properties = mRemoteConference.getConnectionCapabilities() local
368 mRemoteConference.setConnectionProperties(properties);
371 assertEquals(properties, callbackInvoker.getArgs(0)[1]);
  /external/ImageMagick/MagickWand/
magick-property.c 19 % Set or Get MagickWand Properties, Options, or Profiles %
903 **properties; local
    [all...]
  /external/adhd/cras/src/server/
cras_dsp_pipeline.c 90 int properties; member in struct:instance
475 instance->properties = module->get_properties(module);
515 if (instance->properties & MODULE_INPLACE_BROKEN) {
583 if (instance->properties & MODULE_INPLACE_BROKEN) {
  /external/autotest/client/deps/fakegudev/src/
fakegudev.c 35 * property_<name> are the special GUdevDevice properties that can be obtain
41 * Unspecified properties/attributes will be returned as NULL.
120 GHashTable *properties; member in struct:_FakeGUdevDevicePrivate
205 /* Ensure some basic properties exist. */
245 /* Now add the fake device with all its properties. */
259 g_hash_table_insert (fake_device->priv->properties, g_strdup (key),
379 (const gchar *)g_hash_table_lookup (fake_device->priv->properties,
462 (const gchar *)g_hash_table_lookup (fake_device->priv->properties,
465 (const gchar *)g_hash_table_lookup (fake_device->priv->properties,
500 return (const gchar *)g_hash_table_lookup (fake_device->priv->properties,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemUtils.cpp 118 std::vector<vk::VkQueueFamilyProperties> properties; local
123 properties.resize(numFamilies);
125 vkd.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &numFamilies, properties.data());
134 for (size_t idx = 0; idx < properties.size(); ++idx)
136 vk::VkQueueFlags flags = properties[idx].queueFlags;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/util/
vktExternalMemoryUtil.cpp 910 const vk::VkPhysicalDeviceMemoryProperties properties = vk::getPhysicalDeviceMemoryProperties(vki, physicalDevice); local
915 && (((properties.memoryTypes[memoryTypeIndex].propertyFlags & vk::VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) != 0) == hostVisible))
    [all...]
  /external/freetype/src/pcf/
pcfread.c 53 "properties",
461 PCF_Property properties = face->properties; local
468 if ( !ft_strcmp( properties[i].name, prop ) )
473 return properties + i - 1;
484 PCF_Property properties = NULL; local
520 FT_TRACE4(( " number of properties: %ld\n", orig_nprops ));
532 /* load the first 256 properties */
536 " only loading first 256 properties\n" ));
562 /* number of properties; it will fail for fake data, avoiding an *
    [all...]
  /external/harfbuzz_ng/test/api/
test-unicode.c 102 /* Check all properties */
406 static const property_t properties[] = variable
425 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
426 const property_t *p = &properties[i];
462 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
463 const property_t *p = &properties[i];
544 /* This is cruel: we use script-returning functions to test all properties,
547 for (i = 0; i < G_N_ELEMENTS (properties); i++) {
548 const property_t *p = &properties[i];
  /external/icu/icu4c/source/i18n/
number_patternstring.cpp 32 DecimalFormatProperties properties; local
33 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status);
34 return properties;
43 PatternParser::parseToExistingProperties(const UnicodeString& pattern, DecimalFormatProperties& properties,
45 parseToExistingPropertiesImpl(pattern, properties, ignoreRounding, status);
461 DecimalFormatProperties& properties,
465 // TODO: Only overwrite the properties that "saveToProperties" normally touches?
466 properties.clear();
473 patternInfoToProperties(properties, patternInfo, ignoreRounding, status);
477 PatternParser::patternInfoToProperties(DecimalFormatProperties& properties, ParsedPatternInfo& patternInfo
    [all...]

Completed in 1542 milliseconds

1 2 3 4 5 67 8 91011>>