HomeSort by relevance Sort by last modified time
    Searched defs:property (Results 201 - 225 of 398) sorted by null

1 2 3 4 5 6 7 891011>>

  /bootable/recovery/updater/
install.c 1437 char* property; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGrammar.y 336 %type <id> property
1639 property: label
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp 760 // animation-timing-function property is set for this keyframe, it will be
1173 CSSPropertyID property = iter->key; local
    [all...]
StyleBuilderCustom.cpp 1146 StylePropertySet::PropertyReference property = resultSet->propertyAt(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 60 static const CSSPropertyID property = RuntimeEnabledFeatures::css3TextDecorationsEnabled() ? CSSPropertyTextDecorationLine : CSSPropertyTextDecoration; local
61 return property;
748 // We don't override whitespace property of a tab span because that would collapse the tab into a space.
1115 StylePropertySet::PropertyReference property = style->propertyAt(i); local
1168 StylePropertySet::PropertyReference property = m_mutableStyle->propertyAt(i); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StylesSidebarPane.js 135 * @param {!WebInspector.CSSProperty} property
137 WebInspector.StylesSidebarPane.createExclamationMark = function(property)
140 exclamationElement.className = "exclamation-mark" + (WebInspector.StylesSidebarPane._ignoreErrorsForProperty(property) ? "" : " warning-icon-small");
141 exclamationElement.title = WebInspector.CSSMetadata.cssPropertiesMetainfo.keySet()[property.name.toLowerCase()] ? WebInspector.UIString("Invalid property value.") : WebInspector.UIString("Unknown property name.");
168 * @param {!WebInspector.CSSProperty} property
170 WebInspector.StylesSidebarPane._ignoreErrorsForProperty = function(property) {
176 var name = property.name.toLowerCase();
186 // Common IE-specific property prefix
1343 var property = style.newBlankProperty(index); variable
    [all...]
  /external/chromium_org/v8/src/
ast.cc 37 #include "property-details.h"
38 #include "property.h"
217 bool ObjectLiteral::Property::IsCompileTimeValue() {
224 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
229 bool ObjectLiteral::Property::emit_store() {
240 ObjectLiteral::Property* property = properties()->at(i); local
241 Literal* literal = property->key();
244 // If the key of a computed property is in the table, do not emit
245 // a store for the property later
278 ObjectLiteral::Property* property = properties()->at(i); local
685 Property* property = expression()->AsProperty(); local
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration.
65 static void checkARCPropertyDecl(Sema &S, ObjCPropertyDecl *property) {
66 if (property->isInvalidDecl()) return;
69 = property->getPropertyAttributes();
71 = property->getType().getObjCLifetime();
77 = getImpliedARCOwnership(propertyKind, property->getType())
870 ObjCPropertyDecl *property = 0; local
1543 ObjCPropertyDecl *property = *P; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
director-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp 128 MtpObjectProperty property,
132 MtpObjectProperty property,
135 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
138 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
141 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
144 uint32_t format, uint32_t property,
159 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
160 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
167 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
170 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
896 MtpObjectProperty property; member in struct:PropertyTableEntry
    [all...]
  /frameworks/rs/
rsFont.cpp 348 char property[PROPERTY_VALUE_MAX]; local
351 if (property_get(PROPERTY_TEXT_GAMMA, property, NULL) > 0) {
352 gamma = atof(property);
356 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, NULL) > 0) {
357 blackThreshold = atoi(property);
361 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, NULL) > 0) {
362 whiteThreshold = atoi(property);
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_utils.cpp 155 char property[PROPERTY_VALUE_MAX]; local
156 if ((property_get("ro.qualcomm.cabl", property, NULL) > 0) &&
157 (atoi(property) == 1)) {
166 if ((property_get("persist.qcom.cabl.video_only", property, NULL) > 0) &&
167 (atoi(property) == 1)) {
665 char property[PROPERTY_VALUE_MAX]; local
666 if(property_get("debug.egl.swapinterval", property, "1") > 0) {
667 if(atoi(property) == 0)
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_utils.cpp 347 static char property[PROPERTY_VALUE_MAX]; local
349 if (property_get("hw.cabl.yuv", property, NULL) > 0) {
350 if (atoi(property) != 1) {
355 if (property_get("hw.cabl.yuv", property, NULL) > 0) {
356 if (atoi(property) != 0) {
623 char property[PROPERTY_VALUE_MAX]; local
624 if(property_get("debug.egl.swapinterval", property, "1") > 0) {
625 if(atoi(property) == 0)
    [all...]
  /hardware/qcom/display/msm8x26/libhwcomposer/
hwc_utils.cpp 124 char property[PROPERTY_VALUE_MAX]; local
125 if ((property_get("ro.qualcomm.cabl", property, NULL) > 0) &&
126 (atoi(property) == 1)) {
135 if ((property_get("persist.qcom.cabl.video_only", property, NULL) > 0) &&
136 (atoi(property) == 1)) {
623 char property[PROPERTY_VALUE_MAX]; local
624 if(property_get("debug.egl.swapinterval", property, "1") > 0) {
625 if(atoi(property) == 0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 275 // and you select the "normal" property, this should
317 * for example a Button's "text" property and a Button's "onClick" property
556 Prop property = properties.get(attribute); local
557 if (property != null) {
558 String title = property.getTitle();
560 title = String.format("Edit %1$s", property.getTitle());
562 actions.add(createPropertyAction(property, attribute, title,
572 * Record that the given property was just edited; adds it to the front of
573 * the recently edited property lis
594 Prop property = properties.get(attribute); local
615 Prop property = entry.getValue(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 160 // get the name of the property that changed, if any
161 String property = event != null ? event.getProperty() : null; local
163 if (property == null || PREFS_SDK_DIR.equals(property)) {
184 if (property == null || PREFS_BUILD_VERBOSITY.equals(property)) {
191 if (property == null || PREFS_BUILD_RES_AUTO_REFRESH.equals(property)) {
195 if (property == null || PREFS_BUILD_FORCE_ERROR_ON_NATIVELIB_IN_JAR.equals(property)) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 729 Object property = job.getProperty(ERROR_KEY); local
730 assertNull(property);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_int.h 249 tBTA_GATT_CHAR_PROP property; /* if characteristic, it is char property; member in struct:gattc_attr_cache
277 tBTA_GATT_CHAR_PROP property; member in struct:__anon239
  /external/bluetooth/bluedroid/btif/src/
btif_dm.c 362 bt_property_t property; local
384 BTIF_STORAGE_FILL_PROPERTY(&property,
387 status = btif_storage_set_remote_device_property(p_bd, &property);
2151 bt_property_t property; local
    [all...]
  /external/bluetooth/bluedroid/stack/gatt/
gatt_int.h 152 tGATT_CHAR_PROP property; member in struct:__anon844
669 extern UINT16 gatts_add_characteristic (tGATT_SVC_DB *p_db, tGATT_PERM perm, tGATT_CHAR_PROP property, tBT_UUID *p_char_uuid);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 1235 RefPtr<TypeBuilder::CSS::CSSPropertyInfo> property = TypeBuilder::CSS::CSSPropertyInfo::create() local
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsubgpos-private.hh 352 unsigned int property; local
354 property = _hb_glyph_info_get_glyph_props (&info);
356 if (!c->match_properties (info.codepoint, property, lookup_props))
561 unsigned int property; local
563 property = _hb_glyph_info_get_glyph_props (info);
565 return match_properties (info->codepoint, property, lookup_props);
    [all...]

Completed in 2439 milliseconds

1 2 3 4 5 6 7 891011>>