Home
last modified time | relevance | path

Searched refs:Properties (Results 1 – 25 of 656) sorted by relevance

12345678910>>...27

/external/rust/crates/criterion-plot/src/
Daxis.rs14 pub struct Properties { struct
15 grids: map::grid::Map<grid::Properties>, argument
24 impl Default for Properties { argument
25 fn default() -> Properties { in default()
26 Properties { in default()
38 impl Properties { impl
42 pub fn hide(&mut self) -> &mut Properties { in hide() argument
50 pub fn show(&mut self) -> &mut Properties { in show() argument
56 impl Configure<Grid> for Properties { implementation
57 type Properties = grid::Properties; typedef
[all …]
Dkey.rs10 pub struct Properties { struct
20 impl Default for Properties { argument
21 fn default() -> Properties { in default()
22 Properties { in default()
34 impl Properties { implementation
36 pub fn hide(&mut self) -> &mut Properties { in hide() argument
44 pub fn show(&mut self) -> &mut Properties { in show() argument
50 impl Script for Properties { implementation
96 impl Set<Boxed> for Properties { implementation
100 fn set(&mut self, boxed: Boxed) -> &mut Properties { in set() argument
[all …]
Dfilledcurve.rs11 pub struct Properties { struct
18 impl Default for Properties { argument
19 fn default() -> Properties { in default()
20 Properties { in default()
29 impl Script for Properties { implementation
63 impl Set<Axes> for Properties { implementation
67 fn set(&mut self, axes: Axes) -> &mut Properties { in set() argument
73 impl Set<Color> for Properties { implementation
75 fn set(&mut self, color: Color) -> &mut Properties { in set() argument
81 impl Set<Label> for Properties { implementation
[all …]
Dcurve.rs14 pub struct Properties { struct
25 impl CurveDefault<Style> for Properties { argument
26 fn default(style: Style) -> Properties { in default() argument
27 Properties { in default()
40 impl Script for Properties { implementation
79 impl Set<Axes> for Properties { implementation
83 fn set(&mut self, axes: Axes) -> &mut Properties { in set() argument
89 impl Set<Color> for Properties { implementation
91 fn set(&mut self, color: Color) -> &mut Properties { in set() argument
97 impl Set<Label> for Properties { implementation
[all …]
Dcandlestick.rs11 pub struct Properties { struct
18 impl Default for Properties { argument
19 fn default() -> Properties { in default()
20 Properties { in default()
29 impl Script for Properties { implementation
55 impl Set<Color> for Properties { implementation
57 fn set(&mut self, color: Color) -> &mut Properties { in set() argument
63 impl Set<Label> for Properties { implementation
65 fn set(&mut self, label: Label) -> &mut Properties { in set() argument
71 impl Set<LineType> for Properties { implementation
[all …]
Derrorbar.rs14 pub struct Properties { struct
24 impl ErrorBarDefault<Style> for Properties { argument
25 fn default(style: Style) -> Properties { in default() argument
26 Properties { in default()
38 impl Script for Properties { implementation
72 impl Set<Color> for Properties { implementation
74 fn set(&mut self, color: Color) -> &mut Properties { in set() argument
80 impl Set<Label> for Properties { implementation
82 fn set(&mut self, label: Label) -> &mut Properties { in set() argument
88 impl Set<LineType> for Properties { implementation
[all …]
Dgrid.rs7 pub struct Properties { struct
11 impl Default for Properties { argument
12 fn default() -> Properties { in default()
13 Properties { hidden: true } in default()
18 impl Properties { impl
22 pub fn hide(&mut self) -> &mut Properties { in hide() argument
28 pub fn show(&mut self) -> &mut Properties { in show() argument
34 impl<'a> Script for (Axis, Grid, &'a Properties) { implementation
Dtraits.rs6 type Properties; typedef
11 F: FnOnce(&mut Self::Properties) -> &mut Self::Properties; in configure() argument
23 type Properties; typedef
28 F: FnOnce(&mut Self::Properties) -> &mut Self::Properties; in plot() argument
/external/llvm-project/llvm/utils/TableGen/
DSDNodeProperties.cpp16 unsigned Properties = 0; in parseSDPatternOperatorProperties() local
19 Properties |= 1 << SDNPCommutative; in parseSDPatternOperatorProperties()
21 Properties |= 1 << SDNPAssociative; in parseSDPatternOperatorProperties()
23 Properties |= 1 << SDNPHasChain; in parseSDPatternOperatorProperties()
25 Properties |= 1 << SDNPOutGlue; in parseSDPatternOperatorProperties()
27 Properties |= 1 << SDNPInGlue; in parseSDPatternOperatorProperties()
29 Properties |= 1 << SDNPOptInGlue; in parseSDPatternOperatorProperties()
31 Properties |= 1 << SDNPMayStore; in parseSDPatternOperatorProperties()
33 Properties |= 1 << SDNPMayLoad; in parseSDPatternOperatorProperties()
35 Properties |= 1 << SDNPSideEffect; in parseSDPatternOperatorProperties()
[all …]
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
DConfigLoaderTest.java17 import java.util.Properties;
28 Properties system = new Properties(); in testResource()
29 Properties config = ConfigLoader.load( in testResource()
37 Properties system = new Properties(); in testNoResource()
38 Properties config = ConfigLoader.load("does-not-exist.properties", in testNoResource()
46 Properties system = new Properties(); in testSystemProperties()
50 Properties config = ConfigLoader.load( in testSystemProperties()
60 Properties system = new Properties(); in testSubstituteProperties()
63 Properties config = ConfigLoader.load( in testSubstituteProperties()
/external/testng/src/main/java/org/testng/xml/
DLaunchSuite.java20 import java.util.Properties;
145 Properties attrs = new Properties(); in createContentBuffer()
152 Properties paramAttrs = new Properties(); in createContentBuffer()
261 Properties testAttrs = new Properties(); in initContentBuffer()
269 Properties classAttrs = new Properties(); in initContentBuffer()
278 Properties methodAttrs = new Properties(); in initContentBuffer()
313 Properties testAttrs = new Properties(); in initContentBuffer()
322 Properties classAttrs = new Properties(); in initContentBuffer()
332 Properties methodAttrs = new Properties(); in initContentBuffer()
393 Properties testAttrs = new Properties(); in initContentBuffer()
[all …]
/external/emma/core/java12/com/vladium/util/
DProperty.java20 import java.util.Properties;
56 public static Properties combine (final Properties overrides, final Properties base) in combine()
74 final Properties result = new XProperties (base); in combine()
100 public static Properties getAppProperties (final String namespace, final ClassLoader loader) in getAppProperties()
105 … final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader); in getAppProperties()
106 final Properties systemFileOverrides; in getAppProperties()
115 final Properties systemOverrides = Property.getSystemProperties (namespace); in getAppProperties()
116 final Properties resOverrides = Property.getProperties (namespace + ".properties", loader); in getAppProperties()
124 public static Properties getSystemProperties (final String systemPrefix) in getSystemProperties()
128 Properties result = s_systemProperties; in getSystemProperties()
[all …]
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
DConfigLoader.java17 import java.util.Properties;
34 static Properties load(final String resource, final Properties system) { in load()
35 final Properties result = new Properties(); in load()
43 final Properties result) { in loadResource()
54 private static void loadSystemProperties(final Properties system, in loadSystemProperties()
55 final Properties result) { in loadSystemProperties()
65 private static void substSystemProperties(final Properties result, in substSystemProperties()
66 final Properties system) { in substSystemProperties()
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DConsoleHandlerTest.java25 import java.util.Properties;
99 Properties p = new Properties(); in testConstructor_ValidProperties()
125 Properties p = new Properties(); in testConstructor_InvalidProperties()
151 Properties p = new Properties(); in testClose_SufficientPrivilege_NormalClose()
171 Properties p = new Properties(); in testClose_SufficientPrivilege_Exception()
189 Properties p = new Properties(); in testClose_SufficientPrivilege_DirectClose()
207 Properties p = new Properties(); in testPublish_NoFilter()
245 Properties p = new Properties(); in testPublish_AfterResetSystemErr()
267 Properties p = new Properties(); in testPublish_WithFilter()
308 Properties p = new Properties(); in testPublish_Null()
[all …]
DSocketHandlerTest.java28 import java.util.Properties;
63 private Properties props;
93 props = new Properties(); in initProps()
197 Properties p = new Properties(); in testConstructor_NoBasicProperties()
228 Properties p = new Properties(); in testConstructor_ValidProperties()
274 Properties p = new Properties(); in testConstructor_InvalidBasicProperties()
322 Properties p = new Properties(); in testConstructor_InvalidPort()
347 Properties p = new Properties(); in testConstructor_NotOpenPort()
379 Properties p = new Properties(); in testConstructor_InvalidHost()
411 Properties p = new Properties(); in testClose_SufficientPrivilege_NormalClose()
[all …]
/external/llvm-project/lldb/source/Core/
DUserSettingsController.cpp34 Properties::GetPropertyValue(const ExecutionContext *exe_ctx, in GetPropertyValue()
43 Status Properties::SetPropertyValue(const ExecutionContext *exe_ctx, in SetPropertyValue()
55 void Properties::DumpAllPropertyValues(const ExecutionContext *exe_ctx, in DumpAllPropertyValues()
62 void Properties::DumpAllDescriptions(CommandInterpreter &interpreter, in DumpAllDescriptions()
71 Status Properties::DumpPropertyValue(const ExecutionContext *exe_ctx, in DumpPropertyValue()
86 Properties::Apropos(llvm::StringRef keyword, in Apropos()
96 Properties::GetSubProperty(const ExecutionContext *exe_ctx, in GetSubProperty()
104 const char *Properties::GetExperimentalSettingsName() { return "experimental"; } in GetExperimentalSettingsName()
106 bool Properties::IsSettingExperimental(llvm::StringRef setting) { in IsSettingExperimental()
/external/testng/src/main/java/org/testng/reporters/
DXMLStringBuffer.java4 import java.util.Properties;
102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) { in push()
126 public void push(String tagName, @Nullable Properties attributes) { in push()
134 private Properties createProperties(String[] attributes) { in createProperties()
135 Properties result = new Properties(); in createProperties()
193 addRequired(tagName, value, (Properties) null); in addRequired()
203 public void addRequired(String tagName, @Nullable String value, @Nullable Properties attributes) { in addRequired()
217 public void addOptional(String tagName, @Nullable String value, @Nullable Properties attributes) { in addOptional()
236 addOptional(tagName, value, (Properties) null); in addOptional()
246 …public void addOptional(String tagName, @Nullable Boolean value, @Nullable Properties attributes) { in addOptional()
[all …]
DXMLSuiteResultWriter.java23 import java.util.Properties;
97 Properties attrs = new Properties(); in referenceSuiteResult()
104 private Properties getSuiteResultAttributes(ISuiteResult suiteResult) { in getSuiteResultAttributes()
105 Properties attributes = new Properties(); in getSuiteResultAttributes()
115 Properties attributes = new Properties(); in addTestResults()
151 Properties attribs = getTestResultAttributes(testResult); in addTestResult()
177 private Properties getTestResultAttributes(ITestResult testResult) { in getTestResultAttributes()
178 Properties attributes = new Properties(); in getTestResultAttributes()
257 Properties attrs = new Properties(); in addParameter()
261 Properties valueAttrs = new Properties(); in addParameter()
[all …]
DXMLUtils.java8 import java.util.Properties;
35 @Nullable Properties attributes) { in xml()
46 public static String extractComment(String tag, Properties properties) { in extractComment()
61 String elementName, Boolean value, Properties attributes) { in xmlOptional()
68 String elementName, @Nullable String value, Properties attributes) { in xmlOptional()
75 String elementName, @Nullable String value, @Nullable Properties attributes) { in xmlRequired()
80 Properties attributes) { in xmlOpen()
93 public static void appendAttributes(IBuffer result, Properties attributes) { in appendAttributes()
105 Properties attributes, boolean noNewLine) { in xmlOpen()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DOutputPropertiesFactory.java29 import java.util.Properties;
204 private static Properties m_xml_properties = null;
207 private static Properties m_html_properties = null;
210 private static Properties m_text_properties = null;
213 private static Properties m_unknown_properties = null;
252 static public final Properties getDefaultMethodProperties(String method) in getDefaultMethodProperties()
255 Properties defaultProperties = null; in getDefaultMethodProperties()
330 return new Properties(defaultProperties); in getDefaultMethodProperties()
345 static private Properties loadPropertiesFile( in loadPropertiesFile()
347 Properties defaults) in loadPropertiesFile()
[all …]
/external/llvm-project/clang/lib/Index/
DIndexSymbol.cpp90 Info.Properties = SymbolPropertySet(); in getSymbolInfo()
94 Info.Properties |= (SymbolPropertySet)SymbolProperty::Local; in getSymbolInfo()
97 Info.Properties |= (SymbolPropertySet)SymbolProperty::ProtocolInterface; in getSymbolInfo()
101 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
129 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
135 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
136 Info.Properties |= in getSymbolInfo()
139 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
140 Info.Properties |= in getSymbolInfo()
155 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
[all …]
/external/testng/src/main/java/org/testng/log4testng/
DLogger.java11 import java.util.Properties;
326 Properties properties= new Properties(); in initialize()
337 private static void checkProperties(Properties pProperties) { in checkProperties()
474 private static synchronized void testInitialize(Properties pProperties, in testInitialize()
490 Properties props= new Properties(); in testDebugDefault()
505 Properties props= new Properties(); in testDebugOn()
521 Properties props= new Properties(); in testDebugOff()
537 Properties props= new Properties(); in testDebugError()
562 Properties props= new Properties(); in testRootLoggerDefault()
595 Properties props= new Properties(); in testRootLoggerSet()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DOutputProperties.java24 import java.util.Properties;
66 public OutputProperties(Properties defaults) in OutputProperties()
68 m_properties = new Properties(defaults); in OutputProperties()
83 m_properties = new Properties( in OutputProperties()
101 cloned.m_properties = (Properties) cloned.m_properties.clone(); in clone()
322 Properties savedProps = m_properties; in setMethodDefaults()
323 Properties newDefaults = in setMethodDefaults()
325 m_properties = new Properties(newDefaults); in setMethodDefaults()
385 public static QName getQNameProperty(String key, Properties props) in getQNameProperty()
482 public static Vector getQNameProperties(String key, Properties props) in getQNameProperties()
[all …]
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
DDefaultManifestFactoryTest.java5 import java.util.Properties;
20 Properties properties = new Properties(); in identify()
44 Properties properties = new Properties(); in identify_withResourceApk()
70 Properties properties = new Properties(); in identify_withMissingValues()
93 Properties properties = new Properties(); in identify_configNoneShouldBeIgnored()
118 Properties properties = new Properties(); in identify_packageCanBeOverridenFromConfig()
/external/snakeyaml/src/test/java/examples/collections/
DTypeSafeMapImplementationsTest.java21 import java.util.Properties;
40 Properties props = new Properties(); in testDumpMap()
64 Properties props = parsed.getProperties(); in testLoadMap()
72 private Properties properties;
87 public Properties getProperties() { in getProperties()
91 public void setProperties(Properties properties) { in setProperties()
111 Properties props = new Properties(); in testNoJavaBeanMap()
161 Properties props = new Properties(); in testRecursiveNoJavaBeanProperties2()

12345678910>>...27