HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 376 - 400 of 1133) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashRule.h 46 //@property (copy) ANTLRHashRule *fNext;
47 @property (getter=getLastHash, setter=setLastHash:) NSInteger LastHash;
ANTLRUniqueIDMap.h 45 @property (getter=getLastHash, setter=setLastHash) NSInteger lastHash;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseRecognizer.h 63 @property (retain, getter=getState, setter=setState) ANTLRRecognizerSharedState *state;
64 @property (retain, getter=getGrammarFileName, setter=setGrammarFileName) NSString *grammarFileName;
65 //@property (assign, getter=getFailed, setter=setFailed) BOOL failed;
66 @property (retain, getter=getTokenNames, setter=setTokenNames) NSArray *tokenNames;
67 @property (retain, getter=getSourceName, setter=setSourceName) NSString *sourceName;
68 //@property (assign, getter=getNumberOfSyntaxErrors, setter=setNumberOfSyntaxErrors) NSInteger numberOfSyntaxErrors;
ANTLRHashRule.h 46 //@property (copy) ANTLRHashRule *fNext;
47 @property (getter=getLastHash, setter=setLastHash:) NSInteger LastHash;
ANTLRUniqueIDMap.h 45 @property (getter=getLastHash, setter=setLastHash) NSInteger lastHash;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.h 175 @property (retain) ANTLRRecognizerSharedState *state;
176 @property (retain) NSString *grammarFileName;
177 @property (retain) NSString *sourceName;
178 @property (retain) AMutableArray *tokenNames;
ANTLRInputStream.h 16 @property (assign) NSStringEncoding encoding;
ANTLRUniqueIDMap.h 45 @property (getter=getLastHash, setter=setLastHash:) NSInteger lastHash;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableParser.h 31 @property (retain, getter=getnames, setter=setnames:) ANTLRHashMap * names;
  /external/chromium/chrome/browser/renderer_host/
accelerated_plugin_view_mac.h 104 @property NSSize cachedSize;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_menu_cocoa_controller.h 27 @property(nonatomic, readonly) NSMenu* menu;
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field.h 121 @property(nonatomic) AutocompleteTextFieldObserver* observer;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
PropertyDescriptorEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 11 package org.eclipse.wb.internal.core.model.property.table;
21 import org.eclipse.wb.internal.core.model.property.Property;
28 * @coverage core.model.property.table
73 private Property m_property;
84 public void update(Property property,
91 m_property = property;
125 // check for property
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 15 import com.vladium.util.Property;
184 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_FILE, local
186 return new File (property);
199 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_MERGE, local
201 return Property.toBoolean (property);
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 124 // property. Returns false if for any reason the property cannot be safely
126 // VariableObject that defines the property. If the property cannot be found
307 RegisterID* emitIn(RegisterID* dst, RegisterID* property, RegisterID* base) { return emitBinaryOp(op_in, dst, property, base, OperandTypes()); }
309 RegisterID* emitResolve(RegisterID* dst, const Identifier& property);
313 RegisterID* emitResolveBase(RegisterID* dst, const Identifier& property);
314 RegisterID* emitResolveBaseForPut(RegisterID* dst, const Identifier& property);
315 RegisterID* emitResolveWithBase(RegisterID* baseDst, RegisterID* propDst, const Identifier& property);
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ScopeChainSidebarPane.js 111 WebInspector.ScopeVariableTreeElement = function(property)
113 WebInspector.ObjectPropertyTreeElement.call(this, property);
153 result = current.property.name + "." + result;
155 result = current.property.name;
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.h 148 // Does this animation/transition involve the given property?
149 virtual bool affectsProperty(int /*property*/) const { return false; }
151 bool isAnimatingProperty(int property, bool acceleratedOnly, bool isRunningNow) const
157 return (!waitingToStart() && !postActive()) && affectsProperty(property);
159 return !postActive() && affectsProperty(property);
187 static HashSet<int> animatableShorthandsAffectingProperty(int property);
AnimationController.h 60 bool pauseTransitionAtTime(RenderObject*, const String& property, double t); // To be used only for testing
  /frameworks/base/libs/hwui/
GradientCache.cpp 40 char property[PROPERTY_VALUE_MAX]; local
41 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, NULL) > 0) {
42 INIT_LOGD(" Setting gradient cache size to %sMB", property);
43 setMaxSize(MB(atof(property)));
LayerCache.cpp 36 char property[PROPERTY_VALUE_MAX]; local
37 if (property_get(PROPERTY_LAYER_CACHE_SIZE, property, NULL) > 0) {
38 INIT_LOGD(" Setting layer cache size to %sMB", property);
39 setMaxSize(MB(atof(property)));
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
WayPointLabelProvider.java 70 public boolean isLabelProperty(Object element, String property) {
  /cts/tests/tests/animation/src/android/animation/cts/
PropertyValuesHolderTest.java 24 import android.util.Property;
105 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local
106 property.setObject(mObject);
107 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(property, values);
142 String property = "backgroundColor"; local
147 ViewColorProperty colorProperty=new ViewColorProperty(Integer.class.getClass(),property);
170 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local
171 property.setObject(mObject);
173 pVHolder.setProperty(property);
182 class ShapeHolderYProperty extends Property {
    [all...]
ValueAnimatorTest.java 117 String property = "y"; local
120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
155 String property = "y"; local
160 float[] animatedValues = getValue(objAnimator, 10, "getAnimatedValue(property)", 200l,
161 property);
217 String property = "y"; local
220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY);
229 long sleepTime, String property) throws InterruptedException {
238 }else if(methodName.equals("getAnimatedValue(property)")) {
239 value = ((Float)animator.getAnimatedValue(property)).floatValue()
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTokenStream.h 41 @property (retain, getter=getChannelOverride,setter=setChannelOverride) NSMutableDictionary *channelOverride;
42 @property (assign, getter=getChannel,setter=setChannel) NSInteger channel;

Completed in 985 milliseconds

<<11121314151617181920>>