HomeSort by relevance Sort by last modified time
    Searched defs:Properties (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Properties.java 12 * Utility method for accessing system properties.
14 public class Properties
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
Properties.java 12 * ICU 59 called the class DecimalFormatProperties as just Properties. We need to keep a thin implementation for the
16 public class Properties implements Serializable {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
Properties.java 11 * ICU 59 called the class DecimalFormatProperties as just Properties. We need to keep a thin implementation for the
14 public class Properties implements Serializable {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/bidi/
prop.go 11 // Properties provides access to BiDi properties of runes.
12 type Properties struct {
25 // func (p Properties) CompactClass() Class {
30 func (p Properties) Class() Class {
39 func (p Properties) IsBracket() bool { return p.entry&0xF0 != 0 }
43 func (p Properties) IsOpeningBracket() bool { return p.entry&openMask != 0 }
46 func (p Properties) reverseBracket(r rune) rune {
62 // LookupRune returns properties for r.
63 func LookupRune(r rune) (p Properties, size int)
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/bidi/
prop.go 11 // Properties provides access to BiDi properties of runes.
12 type Properties struct {
25 // func (p Properties) CompactClass() Class {
30 func (p Properties) Class() Class {
39 func (p Properties) IsBracket() bool { return p.entry&0xF0 != 0 }
43 func (p Properties) IsOpeningBracket() bool { return p.entry&openMask != 0 }
46 func (p Properties) reverseBracket(r rune) rune {
62 // LookupRune returns properties for r.
63 func LookupRune(r rune) (p Properties, size int)
    [all...]
  /external/dtc/Documentation/
dtc-paper.tex 76 Each node contains \emph{properties}, name--value pairs that give
78 and for some properties, they contain tables or other structured
129 \subsection{Properties of the flattened tree}
133 particular, the following properties are desirable:
228 follows all of the properties of the node, each introduced with a
238 stored. Because it's common for many nodes to have properties with
255 properties that the kernel actually requires; the flattened tree
285 device. Parsing these and other interrupt related properties allows
308 \texttt{name} properties equal to \texttt{memory} and \texttt{pci},
432 will automatically generate \texttt{name} properties from the uni
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Extract.h 48 CObjectVector<CProperty> Properties;
ArchiveCommandLine.h 88 CObjectVector<CProperty> Properties;
Update.h 57 CObjectVector<CProperty> Properties;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cost_analysis.h 39 // Each HLO is associated to a vector of properties with the indices given
40 // below. Sub-classes can add further properties.
41 typedef std::map<string, float> Properties;
121 // Returns properties for the computation.
134 const Properties& properties() const { return properties_sum_; } function in class:xla::HloCostAnalysis
136 return GetProperty(key, properties());
140 typedef std::unordered_map<const HloInstruction*, Properties> HloToProperties;
146 const Properties& per_second_rates);
148 // Returns the properties computed from visiting the computation rooted at th
    [all...]
  /external/skia/src/gpu/effects/
GrPorterDuffXferProcessor.cpp 113 enum Properties {
121 GR_DECL_BITFIELD_OPS_FRIENDS(Properties)
140 * Deduce the properties of a BlendFormula.
142 static constexpr Properties GetProperties(OutputType PrimaryOut, OutputType SecondaryOut,
155 Properties fProps : 32 - (4 + 4 + 6 + 6 + 6);
168 GR_MAKE_BITFIELD_OPS(BlendFormula::Properties);
170 constexpr BlendFormula::Properties BlendFormula::GetProperties(OutputType PrimaryOut,
175 return static_cast<Properties>(
279 * with and without an opaque input color. Optimization properties are deduced at compile time so we
    [all...]
  /external/skqp/src/gpu/effects/
GrPorterDuffXferProcessor.cpp 113 enum Properties {
121 GR_DECL_BITFIELD_OPS_FRIENDS(Properties)
140 * Deduce the properties of a BlendFormula.
142 static constexpr Properties GetProperties(OutputType PrimaryOut, OutputType SecondaryOut,
155 Properties fProps : 32 - (4 + 4 + 6 + 6 + 6);
168 GR_MAKE_BITFIELD_OPS(BlendFormula::Properties);
170 constexpr BlendFormula::Properties BlendFormula::GetProperties(OutputType PrimaryOut,
175 return static_cast<Properties>(
279 * with and without an opaque input color. Optimization properties are deduced at compile time so we
    [all...]
  /frameworks/base/libs/hwui/hwui/
AnimatedImageDrawable.h 146 struct Properties {
151 Properties() = default;
152 Properties(Properties&) = default;
153 Properties& operator=(Properties&) = default;
156 Properties mStagingProperties;
157 Properties mProperties;
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 39 // Properties provides access to normalization properties of a rune.
40 type Properties struct {
51 type lookupFunc func(b input, i int) Properties
95 func (p Properties) BoundaryBefore() bool {
107 func (p Properties) BoundaryAfter() bool {
122 func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
123 func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
125 func (p Properties) combinesForward() bool { return p.flags&0x20 != 0 }
126 func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMayb
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
forminfo.go 39 // Properties provides access to normalization properties of a rune.
40 type Properties struct {
51 type lookupFunc func(b input, i int) Properties
95 func (p Properties) BoundaryBefore() bool {
107 func (p Properties) BoundaryAfter() bool {
122 func (p Properties) isYesC() bool { return p.flags&0x10 == 0 }
123 func (p Properties) isYesD() bool { return p.flags&0x4 == 0 }
125 func (p Properties) combinesForward() bool { return p.flags&0x20 != 0 }
126 func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } // == isMayb
    [all...]
  /external/libbrillo/brillo/dbus/
exported_property_set_unittest.cc 63 struct Properties {
80 Properties(scoped_refptr<dbus::Bus> bus, const dbus::ObjectPath& path)
106 virtual ~Properties() {}
126 p_.reset(new Properties(bus_, kMethodsExportedOnPath));
168 std::unique_ptr<Properties> p_;
235 // The response should just be a an empty array, since there are no properties
  /external/autotest/client/cros/cellular/
pseudo_modem.py 18 * Use more appropriate values for many of the properties
53 """Implements the org.freedesktop.DBus.Properties interface.
55 Implements the org.freedesktop.DBus.Properties interface, specifically
58 dictionary of all interfaces and the properties defined on those interfaces.
70 properties = interfaces.get(interface, None)
71 if property_name in properties:
72 return properties[property_name]
81 """Returns: A dictionary. The properties on interface."""
84 properties = interfaces.get(interface, None)
85 if properties is not None
    [all...]
  /external/golang-protobuf/proto/
properties.go 66 type encoder func(p *Buffer, prop *Properties, base structPointer) error
74 type sizer func(prop *Properties, base structPointer) int
83 type decoder func(p *Buffer, prop *Properties, base structPointer) error
135 // StructProperties represents properties for all the fields of a struct.
138 Prop []*Properties // properties for each field
160 Prop *Properties
172 // Properties represents the protocol-specific behavior of a single struct field.
173 type Properties struct {
203 mkeyprop *Properties // set for map types onl
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.h 32 // SelectionDAG node properties.
184 /// properties?
198 unsigned Properties; // Node properties
209 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenTarget.h 31 // SelectionDAG node properties.
175 unsigned Properties; // Node properties
186 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/v8/src/compiler/
operator.h 37 // Properties inform the operator-independent optimizer about legal
60 typedef base::Flags<Property, uint8_t> Properties;
64 Operator(Opcode opcode, Properties properties, const char* mnemonic,
93 return (properties() & property) == property;
96 Properties properties() const { return properties_; } function in class:v8::internal::compiler::Operator
110 static size_t ZeroIfEliminatable(Properties properties) {
111 return (properties & kEliminatable) == kEliminatable ? 0 : 1
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_dbdao.h 310 CdbProperties Properties;
  /bionic/linker/
linker_config.cpp 36 #include <android-base/properties.h>
182 std::unordered_map<std::string, PropertyValue>* properties,
277 if (properties->find(name) != properties->end()) {
284 (*properties)[name] = PropertyValue(std::move(value), cp.lineno());
286 if (properties->find(name) == properties->end()) {
291 (*properties)[name] = PropertyValue(std::move(value), cp.lineno());
296 (*properties)[name].append_value(std::move(value));
300 (*properties)[name].append_value(std::move(value))
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigTest.java 37 enum Properties {
99 public void setProperty(final Properties p, final int value) {
157 public void setProperty(final Properties p, final String value) {
202 config.setProperty(Properties.LANGUAGE, "en");
203 config.setProperty(Properties.COUNTRY, "US");
204 config.setProperty(Properties.MCC, 310);
205 config.setProperty(Properties.MNC, 001); // unused
206 config.setProperty(Properties.TOUCHSCREEN, Configuration.TOUCHSCREEN_FINGER);
207 config.setProperty(Properties.KEYBOARD, Configuration.KEYBOARD_QWERTY);
208 config.setProperty(Properties.KEYBOARDHIDDEN, Configuration.KEYBOARDHIDDEN_YES)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 92 /// Properties which a MachineFunction may have at a given point in time.
97 // TODO: Add a way to print the properties and make more useful error messages
104 // The properties are stated in "positive" form; i.e. a pass could require
127 return Properties[static_cast<unsigned>(P)];
130 Properties.set(static_cast<unsigned>(P));
134 Properties.reset(static_cast<unsigned>(P));
138 Properties |= MFP.Properties;
142 Properties.reset(MFP.Properties);
    [all...]

Completed in 1696 milliseconds

1 2 3 4 5 6