Searched defs:prop (Results 1 - 25 of 251) sorted by relevance

1234567891011

/external/clang/test/PCH/Inputs/
H A Dchain-remap-types1.h9 @property X *prop; variable
/external/bluetooth/bluedroid/bta/include/
H A Dbta_hh_co.h35 UINT8 prop; member in struct:__anon832
/external/clang/test/PCH/
H A Dobjc_exprs.h21 @property (assign) id prop; variable
25 return p.prop;
/external/pcre/dist/
H A Dpcre_xclass.c135 const ucd_record *prop = GET_UCD(c); local
145 if ((prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
146 prop->chartype == ucp_Lt) == isprop) return !negated;
150 if ((data[1] == PRIV(ucp_gentype)[prop->chartype]) == isprop)
155 if ((data[1] == prop->chartype) == isprop) return !negated;
159 if ((data[1] == prop->script) == isprop) return !negated;
163 if ((PRIV(ucp_gentype)[prop->chartype] == ucp_L ||
164 PRIV(ucp_gentype)[prop->chartype] == ucp_N) == isprop)
182 if ((PRIV(ucp_gentype)[prop
[all...]
/external/strace/test/
H A Dubi.c31 struct ubi_set_vol_prop_req prop = { local
43 ioctl(fd, UBI_IOCSETVOLPROP, &prop);
44 zero(prop);
45 ioctl(fd, UBI_IOCSETVOLPROP, &prop);
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
H A DSignedObjectTest.java46 private Properties prop; field in class:SignedObjectTest
59 prop = new Properties();
60 prop.put("aaa", "bbb");
63 o = new SignedObject(prop, tkp.getPrivate(), sig);
83 assertEquals(test.getObject(), prop);
/external/chromium_org/chrome/browser/chromeos/options/
H A Dnetwork_property_ui_data_unittest.cc60 NetworkPropertyUIData prop; local
62 prop.ParseOncProperty(onc::ONC_SOURCE_NONE, &onc, "a");
63 CheckProperty(prop, NULL, false, true);
67 prop.ParseOncProperty(source, &onc, "a");
68 CheckProperty(prop, NULL, false, true);
70 prop.ParseOncProperty(source, &onc, "a.b");
71 CheckProperty(prop, NULL, false, true);
73 prop.ParseOncProperty(source, &onc, "c");
74 CheckProperty(prop, NULL, false, true);
78 prop
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSPropertyEquality.cpp59 bool CSSPropertyEquality::propertiesEqual(CSSPropertyID prop, const RenderStyle& a, const RenderStyle& b) argument
61 switch (prop) {
/external/chromium_org/win8/metro_driver/
H A Dwinrt_utils_unittest.cc14 static HRESULT CreateProperty(Type value, winfoundtn::IPropertyValue** prop) { argument
20 const wchar_t* value, winfoundtn::IPropertyValue** prop) {
23 return winrt_utils::CreateStringProperty(string_value.Get(), prop);
28 winfoundtn::IPropertyValue** prop) {
29 return winrt_utils::CreateInt16Property(value, prop);
34 winfoundtn::IPropertyValue** prop) {
35 return winrt_utils::CreateInt32Property(value, prop);
40 winfoundtn::IPropertyValue** prop) {
41 return winrt_utils::CreateInt64Property(value, prop);
46 winfoundtn::IPropertyValue** prop) {
19 CreateProperty( const wchar_t* value, winfoundtn::IPropertyValue** prop) argument
27 CreateProperty(INT16 value, winfoundtn::IPropertyValue** prop) argument
33 CreateProperty(INT32 value, winfoundtn::IPropertyValue** prop) argument
39 CreateProperty(INT64 value, winfoundtn::IPropertyValue** prop) argument
45 CreateProperty(UINT8 value, winfoundtn::IPropertyValue** prop) argument
51 CreateProperty(UINT16 value, winfoundtn::IPropertyValue** prop) argument
57 CreateProperty(UINT32 value, winfoundtn::IPropertyValue** prop) argument
63 CreateProperty(UINT64 value, winfoundtn::IPropertyValue** prop) argument
[all...]
/external/clang/test/SemaObjC/Inputs/
H A Darc-system-header.h41 @property id *prop; variable
/external/lzma/CPP/7zip/Common/
H A DMethodProps.cpp58 const CProp &prop = method.Props[i]; local
59 propIDs.Add(prop.Id);
61 value = prop.Value;
62 // if (tryReduce && prop.Id == NCoderPropID::kDictionarySize && value.vt == VT_UI4 && reducedDictionarySize < value.ulVal)
64 if (prop.Id == NCoderPropID::kDictionarySize)
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp17 static void ParseNumberString(const UString &s, NCOM::CPropVariant &prop) argument
22 prop = s;
24 prop = (UInt32)result;
26 prop = result;
H A DPropIDUtils.cpp51 UString ConvertPropertyToString(const PROPVARIANT &prop, PROPID propID, bool full) argument
59 if (prop.vt != VT_FILETIME)
62 if ((prop.filetime.dwHighDateTime == 0 &&
63 prop.filetime.dwLowDateTime == 0) ||
64 !::FileTimeToLocalFileTime(&prop.filetime, &localFileTime))
70 if (prop.vt != VT_UI4)
73 ConvertUInt32ToHex(prop.ulVal, temp);
78 if (prop.vt != VT_UI4)
80 UInt32 a = prop.ulVal;
91 if (prop
[all...]
/external/chromium_org/ash/system/chromeos/power/
H A Dpower_status_view_unittest.cc103 PowerSupplyProperties prop; local
104 prop.set_external_power(PowerSupplyProperties::DISCONNECTED);
105 prop.set_battery_state(PowerSupplyProperties::DISCHARGING);
106 prop.set_battery_percent(99.0);
107 prop.set_battery_time_to_empty_sec(120);
108 prop.set_is_calculating_battery_time(true);
109 UpdatePowerStatus(prop);
116 prop.set_is_calculating_battery_time(false);
117 UpdatePowerStatus(prop);
125 prop
163 PowerSupplyProperties prop; local
[all...]
/external/chromium_org/cc/layers/
H A Dpainted_scrollbar_layer.h67 template<typename T> void UpdateProperty(T value, T* prop) { argument
68 if (*prop == value)
70 *prop = value;
/external/chromium_org/chrome/browser/chromeos/power/
H A Dpower_data_collector.cc52 const power_manager::PowerSupplyProperties& prop) {
55 sample.external_power = (prop.external_power() !=
57 sample.battery_percent = prop.battery_percent();
58 sample.battery_discharge_rate = prop.battery_discharge_rate();
51 PowerChanged( const power_manager::PowerSupplyProperties& prop) argument
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DListenerLeakTest.cpp49 const v8::HeapGraphEdge* prop = node->GetChild(i); local
50 if (prop->GetType() == type) {
51 v8::String::Utf8Value propName(prop->GetName());
53 return prop->GetToNode();
/external/lzma/CPP/Windows/
H A DPropVariantConversions.cpp75 UString ConvertPropVariantToString(const PROPVARIANT &prop) argument
77 switch (prop.vt)
80 case VT_BSTR: return prop.bstrVal;
81 case VT_UI1: return ConvertUInt64ToString(prop.bVal);
82 case VT_UI2: return ConvertUInt64ToString(prop.uiVal);
83 case VT_UI4: return ConvertUInt64ToString(prop.ulVal);
84 case VT_UI8: return ConvertUInt64ToString(prop.uhVal.QuadPart);
85 case VT_FILETIME: return ConvertFileTimeToString(prop.filetime, true, true);
86 // case VT_I1: return ConvertInt64ToString(prop.cVal);
87 case VT_I2: return ConvertInt64ToString(prop
95 ConvertPropVariantToUInt64(const PROPVARIANT &prop) argument
[all...]
/external/chromium_org/base/win/
H A Devent_trace_controller_unittest.cc60 EtwTraceProperties prop; local
62 EVENT_TRACE_PROPERTIES* p = prop.get();
92 EtwTraceProperties prop; local
94 ASSERT_STREQ(L"", prop.GetLoggerFileName());
95 ASSERT_STREQ(L"", prop.GetLoggerName());
98 ASSERT_HRESULT_SUCCEEDED(prop.SetLoggerFileName(name.c_str()));
99 ASSERT_HRESULT_SUCCEEDED(prop.SetLoggerName(name.c_str()));
100 ASSERT_STREQ(name.c_str(), prop.GetLoggerFileName());
101 ASSERT_STREQ(name.c_str(), prop.GetLoggerName());
104 ASSERT_HRESULT_FAILED(prop
126 EtwTraceProperties prop; local
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dpepper_url_request_unittest.cc108 bool SetBooleanProperty(PP_URLRequestProperty prop, bool b) { argument
109 return info_->SetBooleanProperty(prop, b);
111 bool SetStringProperty(PP_URLRequestProperty prop, const std::string& s) { argument
112 return info_->SetStringProperty(prop, s);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.h48 void addProperty(CSSPropertyID prop) { m_properties.add(prop); } argument
49 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
78 void addProperty(CSSPropertyID prop) { m_properties.add(prop); } argument
79 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafmodule.c102 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
106 error = af_property_get_face_globals( prop->face, &globals, module );
108 globals->increase_x_height = prop->limit;
131 FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value; local
135 error = af_property_get_face_globals( prop->face, &globals, module );
137 prop->map = globals->glyph_scripts;
152 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
156 error = af_property_get_face_globals( prop->face, &globals, module );
158 prop->limit = globals->increase_x_height;
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c169 char prop[PATH_MAX]; local
188 if (property_get(prop_name, prop, NULL) > 0) {
189 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
196 if (property_get(variant_keys[i], prop, NULL) == 0) {
199 if (hw_module_exists(path, sizeof(path), name, prop) == 0) {
/external/chromium_org/third_party/icu/source/common/
H A Duset_props.cpp101 UProperty prop, int32_t value, UErrorCode* ec) {
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
107 const UChar *prop, int32_t propLength,
111 UnicodeString p(prop, propLength);
100 uset_applyIntPropertyValue(USet* set, UProperty prop, int32_t value, UErrorCode* ec) argument
106 uset_applyPropertyAlias(USet* set, const UChar *prop, int32_t propLength, const UChar *value, int32_t valueLength, UErrorCode* ec) argument
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
H A Dusetperf.cpp50 CmdOp(UCharCategory prop, void (CmdOp::*op)()):op(op){ argument
54 if (u_charType(cp) == prop) {

Completed in 7845 milliseconds

1234567891011