Home
last modified time | relevance | path

Searched refs:properties (Results 1 – 25 of 598) sorted by relevance

12345678910>>...24

/external/webkit/Source/WebCore/css/
DCSSProperty.cpp43 …extDirection direction, WritingMode writingMode, LogicalBoxSide logicalSide, const int* properties) in resolveToPhysicalProperty() argument
49 return properties[logicalSide]; in resolveToPhysicalProperty()
56 return properties[LeftSide]; in resolveToPhysicalProperty()
58 return properties[RightSide]; in resolveToPhysicalProperty()
60 return properties[BottomSide]; in resolveToPhysicalProperty()
62 return properties[TopSide]; in resolveToPhysicalProperty()
70 return properties[TopSide]; in resolveToPhysicalProperty()
72 return properties[BottomSide]; in resolveToPhysicalProperty()
74 return properties[LeftSide]; in resolveToPhysicalProperty()
76 return properties[RightSide]; in resolveToPhysicalProperty()
[all …]
DCSSMutableStyleDeclaration.cpp62 …tyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties) in CSSMutableStyleDeclaration() argument
64 , m_properties(properties) in CSSMutableStyleDeclaration()
75 …CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperti… in CSSMutableStyleDeclaration() argument
86 const CSSProperty *property = properties[i]; in CSSMutableStyleDeclaration()
117 …const int properties[2] = { CSSPropertyWebkitBorderHorizontalSpacing, CSSPropertyWebkitBorderVerti… in getPropertyValue() local
118 return borderSpacingValue(properties); in getPropertyValue()
122 … const int properties[2] = { CSSPropertyBackgroundPositionX, CSSPropertyBackgroundPositionY }; in getPropertyValue() local
123 return getLayeredShorthandValue(properties); in getPropertyValue()
126 … const int properties[2] = { CSSPropertyBackgroundRepeatX, CSSPropertyBackgroundRepeatY }; in getPropertyValue() local
127 return getLayeredShorthandValue(properties); in getPropertyValue()
[all …]
DCSSMutableStyleDeclaration.h68 …tyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperti… in create() argument
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties)); in create()
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties) in create() argument
74 return adoptRef(new CSSMutableStyleDeclaration(0, properties)); in create()
156 String getShorthandValue(const int* properties, size_t) const;
157 String getCommonValue(const int* properties, size_t) const;
158 String getLayeredShorthandValue(const int* properties, size_t) const;
159 String get4Values(const int* properties) const;
160 String borderSpacingValue(const int properties[2]) const;
162 …t size> String getShorthandValue(const int (&properties)[size]) const { return getShorthandValue(p… in getShorthandValue()
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt025lexerRulePropertyRef.py20 assert len(lexer.properties) == 3, lexer.properties
22 text, type, line, pos, index, channel, start, stop = lexer.properties[0]
23 assert text == 'foobar', lexer.properties[0]
24 assert type == self.lexerModule.IDENTIFIER, lexer.properties[0]
25 assert line == 1, lexer.properties[0]
26 assert pos == 0, lexer.properties[0]
27 assert index == -1, lexer.properties[0]
28 assert channel == antlr3.DEFAULT_CHANNEL, lexer.properties[0]
29 assert start == 0, lexer.properties[0]
30 assert stop == 5, lexer.properties[0]
[all …]
/external/clang/test/Index/
Dproperties-class-extensions.m1 // Test that @properties within class extensions are visited by
46 // CHECK: properties-class-extensions.m:4:12: ObjCInterfaceDecl=Foo:4:12 Extent=[4:1 - 4:23]
47 // CHECK-NOT: properties-class-extensions.m:9:15: ObjCInstanceMethodDecl=setB::9:15 Extent=[9:15 - …
48 // CHECK-NOT: properties-class-extensions.m:9:15: ParmDecl=b:9:15 (Definition) Extent=[9:15 - 9:16]
49 // CHECK: properties-class-extensions.m:5:12: ObjCCategoryDecl=Cat:5:12 Extent=[5:1 - 7:5]
50 // CHECK: properties-class-extensions.m:5:12: ObjCClassRef=Foo:4:12 Extent=[5:12 - 5:15]
51 // CHECK: properties-class-extensions.m:6:15: ObjCPropertyDecl=a:6:15 Extent=[6:1 - 6:16]
52 // CHECK: properties-class-extensions.m:6:15: ObjCInstanceMethodDecl=a:6:15 Extent=[6:15 - 6:16]
53 // CHECK: properties-class-extensions.m:6:15: ObjCInstanceMethodDecl=setA::6:15 Extent=[6:15 - 6:16]
54 // CHECK: properties-class-extensions.m:6:15: ParmDecl=a:6:15 (Definition) Extent=[6:15 - 6:16]
[all …]
/external/chromium/chrome/browser/extensions/
Dextension_context_menu_api.cc38 const DictionaryValue& properties, in ParseContexts() argument
42 if (!properties.GetList(key, &list)) { in ParseContexts()
80 const DictionaryValue& properties, in ParseType() argument
84 if (!properties.HasKey(kTypeKey)) { in ParseType()
90 if (!properties.GetString(kTypeKey, &type_string)) in ParseType()
111 const DictionaryValue& properties, in ParseChecked() argument
114 if (!properties.HasKey(kCheckedKey)) { in ParseChecked()
118 if (!properties.GetBoolean(kCheckedKey, checked)) in ParseChecked()
129 const DictionaryValue& properties, in ParseURLPatterns() argument
132 if (!properties.HasKey(key)) in ParseURLPatterns()
[all …]
Dextension_context_menu_api.h22 bool ParseContexts(const DictionaryValue& properties,
30 bool ParseType(const DictionaryValue& properties,
36 const DictionaryValue& properties,
42 bool ParseURLPatterns(const DictionaryValue& properties,
48 bool SetURLPatterns(const DictionaryValue& properties,
57 bool GetParent(const DictionaryValue& properties,
/external/v8/test/mjsunit/
Dmirror-object.js69 var properties = mirror.properties();
70 assertEquals(names.length, properties.length);
71 for (var i = 0; i < properties.length; i++) {
72 assertTrue(properties[i] instanceof debug.Mirror, 'Unexpected mirror hierachy');
73 assertTrue(properties[i] instanceof debug.PropertyMirror, 'Unexpected mirror hierachy');
74 assertEquals('property', properties[i].type(), 'Unexpected mirror type');
75 assertEquals(names[i], properties[i].name(), 'Unexpected property name');
106 assertEquals(names.length, fromJSON.properties.length, 'Some properties missing in JSON');
107 for (var i = 0; i < fromJSON.properties.length; i++) {
108 var name = fromJSON.properties[i].name;
[all …]
Ddebug-handle.js120 for (i in obj.properties) {
121 switch (obj.properties[i].name) {
123 obj.properties[i].ref = handle_o;
127 obj.properties[i].ref = handle_p;
151 for (i in obj.properties) {
152 var ref = obj.properties[i].ref;
154 switch (obj.properties[i].name) {
170 assertEquals(handle_g, obj.properties[i].ref);
180 for (i in obj.properties) {
181 refs.push(obj.properties[i].ref);
[all …]
/external/chromium/base/win/
Devent_trace_controller.cc106 HRESULT EtwTraceController::Stop(EtwTraceProperties* properties) { in Stop() argument
108 if (properties == NULL) in Stop()
109 properties = &ignore; in Stop()
111 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Stop()
121 HRESULT EtwTraceController::Flush(EtwTraceProperties* properties) { in Flush() argument
123 if (properties == NULL) in Flush()
124 properties = &ignore; in Flush()
126 ULONG error = ::ControlTrace(session_, NULL, properties->get(), in Flush()
135 EtwTraceProperties* properties, TRACEHANDLE* session_handle) { in Start() argument
136 DCHECK(properties != NULL); in Start()
[all …]
Devent_trace_controller.h115 HRESULT Stop(EtwTraceProperties* properties);
119 HRESULT Flush(EtwTraceProperties* properties);
124 EtwTraceProperties* properties,
128 EtwTraceProperties* properties);
131 EtwTraceProperties* properties);
134 EtwTraceProperties* properties);
136 EtwTraceProperties* properties);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/property/
DPropertyListIntersector.java38 public void intersect(Property[] properties) { in intersect() argument
41 for (int i = 0; i < properties.length; i++) { in intersect()
42 Property property = properties[i]; in intersect()
48 if (!propertyGroup.add(properties)) { in intersect()
59 List<Property> properties = Lists.newArrayList(); in getProperties() local
63 properties.add(compositeProperty); in getProperties()
67 return properties.toArray(new Property[properties.size()]); in getProperties()
98 public boolean add(Property[] properties) { in add() argument
99 for (Property property : properties) { in add()
112 Property properties[] = m_properties.toArray(new Property[m_properties.size()]); in getCompositeProperty() local
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
Dforin-001.js102 var properties = new Array();
105 for ( properties[properties.length] in object ) {
106 values[values.length] = object[properties[properties.length-1]];
121 properties.length );
125 "object["+properties[0]+"]",
127 object[properties[0]] );
267 var properties = new Array();
270 for ( properties[properties.length] in object ) {
271 values[values.length] = object[properties[properties.length-1]];
286 properties.length );
[all …]
/external/emma/core/res/
Demma_default.properties11 # (3) 'emma.properties' resource placed somewhere in the classpath
18 # (5) 'emma.properties' JVM option pointing to a properties file
19 # -Demma.properties=./myproperties.txt
23 # logging properties:
27 # classloading properties:
34 # instrumentation properties:
42 # apprunner session data output properties:
49 # runtime coverage data output properties:
56 # instr metadata output properties:
72 # txt report properties:
[all …]
/external/wpa_supplicant_8/wpa_supplicant/examples/
Dwpas-dbus-new-signals.py37 def interfaceAdded(interface, properties): argument
38 print "InterfaceAdded(%s): Ifname=%s" % (interface, properties['Ifname'])
43 def propertiesChanged(properties): argument
44 for i in properties:
45 print "PropertiesChanged: %s=%s" % (i, properties[i])
92 def bssAdded(bss, properties): argument
105 def networkAdded(network, properties): argument
114 def propertiesChangedInterface(properties): argument
115 for i in properties:
116 print "PropertiesChanged(interface): %s=%s" % (i, properties[i])
[all …]
/external/emma/core/java12/com/vladium/emma/data/
DCoverageOptionsFactory.java26 public static CoverageOptions create (final Properties properties) in create() argument
29 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create()
33 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create()
37 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
43 public static CoverageOptions create (final IProperties properties) in create() argument
46 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_SYNTHETIC_METHODS, in create()
50 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_EXCLUDE_BRIDGE_METHODS, in create()
54 … Property.toBoolean (properties.getProperty (InstrProcessor.PROPERTY_DO_SUID_COMPENSATION, in create()
/external/harfbuzz/src/
Dharfbuzz-arabic.c378 …tic void getArabicProperties(const unsigned short *chars, int len, HB_ArabicProperties *properties) in getArabicProperties() argument
388 properties[0].justification = HB_NoJustification; in getArabicProperties()
392 properties[i].justification = HB_NoJustification; in getArabicProperties()
398 properties[i].shape = XIsolated; in getArabicProperties()
402 properties[lastPos].shape = joining_table[shape][j].form1; in getArabicProperties()
407 if (properties[lastPos].shape == XInitial || properties[lastPos].shape == XMedial) in getArabicProperties()
408 properties[i-1].justification = HB_Arabic_Seen; in getArabicProperties()
411 if (properties[lastPos].shape == XFinal) in getArabicProperties()
412 properties[lastPos-1].justification = HB_Arabic_HaaDal; in getArabicProperties()
415 if (properties[lastPos].shape == XFinal) in getArabicProperties()
[all …]
Dharfbuzz-khmer.c362 unsigned char properties[16]; in khmer_shape_syllable() local
379 memset(properties, 0, 16*sizeof(unsigned char)); in khmer_shape_syllable()
401 properties[len] = PreForm; in khmer_shape_syllable()
408 properties[len] = PreForm; in khmer_shape_syllable()
425 properties[len] = PreForm; in khmer_shape_syllable()
428 properties[len] = PreForm; in khmer_shape_syllable()
463 properties[len] = AboveForm; in khmer_shape_syllable()
469 properties[len] = PostForm; in khmer_shape_syllable()
475 properties[len] = BelowForm; in khmer_shape_syllable()
486 properties[len] = property; in khmer_shape_syllable()
[all …]
/external/v8/test/mjsunit/harmony/
Dproxies-for.js41 function TestForIn(properties, handler) { argument
42 TestWithProxies(TestForIn2, properties, handler)
45 function TestForIn2(create, properties, handler) { argument
49 assertArrayEquals(properties, found)
84 function TestForInDerived(properties, handler) { argument
85 TestWithProxies(TestForInDerived2, properties, handler)
88 function TestForInDerived2(create, properties, handler) { argument
94 assertArrayEquals(["z"].concat(properties), found)
100 assertArrayEquals(["y", "z"].concat(properties), found)
/external/webkit/Source/WebCore/inspector/front-end/
DObjectPropertiesSection.js48 function callback(properties) argument
50 if (!properties)
52 self.updateProperties(properties);
60 updateProperties: function(properties, rootTreeElementConstructor, rootPropertyComparer) argument
70 properties.push(this.extraProperties[i]);
72 properties.sort(rootPropertyComparer);
76 for (var i = 0; i < properties.length; ++i) {
77 properties[i].parentObject = this.object;
78 this.propertiesTreeOutline.appendChild(new rootTreeElementConstructor(properties[i]));
87 this.propertiesForTest = properties;
[all …]
/external/webkit/Source/WebCore/platform/graphics/cg/
DImageSourceCG.cpp189 …RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, index… in frameSizeAtIndex() local
190 if (properties) { in frameSizeAtIndex()
192 … CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelWidth); in frameSizeAtIndex()
195 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), kCGImagePropertyPixelHeight); in frameSizeAtIndex()
210 …RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyPropertiesAtIndex(m_decoder, 0, im… in getHotSpot() local
211 if (!properties) in getHotSpot()
215 CFNumberRef num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotX")); in getHotSpot()
219 num = (CFNumberRef)CFDictionaryGetValue(properties.get(), CFSTR("hotspotY")); in getHotSpot()
247 …RetainPtr<CFDictionaryRef> properties(AdoptCF, CGImageSourceCopyProperties(m_decoder, imageSourceO… in repetitionCount() local
248 if (properties) { in repetitionCount()
[all …]
/external/easymock/src/org/easymock/internal/
DEasyMockProperties.java41 private final Properties properties = new Properties(); field in EasyMockProperties
63 properties.load(in); in EasyMockProperties()
80 properties.put(entry.getKey(), entry.getValue()); in EasyMockProperties()
96 return properties.getProperty(key, defaultValue); in getProperty()
108 return properties.getProperty(key); in getProperty()
127 return (String) properties.remove(key); in setProperty()
129 return (String) properties.setProperty(key, value); in setProperty()
/external/emma/core/java12/com/vladium/emma/
DEMMAProperties.java104 public static IProperties wrap (final Properties properties) in wrap() argument
106 if (properties == null) return null; in wrap()
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER); in wrap()
127 IProperties properties = (IProperties) s_properties.get (loader); in getAppProperties() local
129 if (properties != null) in getAppProperties()
130 return properties; in getAppProperties()
162 properties = IProperties.Factory.combine (userOverrides, in getAppProperties()
168 s_properties.put (loader, properties); in getAppProperties()
170 return properties; in getAppProperties()
/external/webkit/Source/WebKit/chromium/tests/
DUniscribeHelperTest.cpp70 SCRIPT_FONTPROPERTIES properties; member in __anon9fc138eb0111::UniscribeTest
75 memset(&properties, 0, sizeof(SCRIPT_FONTPROPERTIES)); in SetUp()
76 properties.cBytes = sizeof(SCRIPT_FONTPROPERTIES); in SetUp()
77 properties.wgBlank = ' '; in SetUp()
78 properties.wgDefault = '?'; // Used when the char is not in the font. in SetUp()
79 properties.wgInvalid = '#'; // Used for invalid characters. in SetUp()
118 false, hfont, scriptCache, &properties, 0); in TEST_F()
151 false, hfont, scriptCache, &properties, 0); in TEST_F()
/external/emma/core/java12/com/vladium/emma/report/
DReportProperties.java242 public static ParsedProperties parseProperties (final IProperties properties, final String type) in parseProperties() argument
244 if ($assert.ENABLED) $assert.ASSERT (properties != null, "properties = null"); in parseProperties()
248 …result.setOutEncoding (getReportProperty (properties, type, IReportProperties.OUT_ENCODING, false)… in parseProperties()
254 … final String outDirName = getReportProperty (properties, type, IReportProperties.OUT_DIR, true); in parseProperties()
255 …final String outFileName = getReportProperty (properties, type, IReportProperties.OUT_FILE, false); in parseProperties()
275 …final String unitsType = getReportProperty (properties, type, IReportProperties.UNITS_TYPE, true, … in parseProperties()
291 …final String hideClasses = getReportProperty (properties, type, IReportProperties.HIDE_CLASSES, tr… in parseProperties()
299 …final String depth = getReportProperty (properties, type, IReportProperties.DEPTH, false, IReportP… in parseProperties()
325 …final String columnList = getReportProperty (properties, type, IReportProperties.COLUMNS, false, I… in parseProperties()
353 …final String sortList = getReportProperty (properties, type, IReportProperties.SORT, false, IRepor… in parseProperties()
[all …]

12345678910>>...24