/external/chromium_org/dbus/ |
property.h | 18 // D-Bus objects frequently provide sets of properties accessed via a 22 // classes defined here make dealing with properties in a type-safe manner 25 // Client implementation classes should define a Properties structure, deriving 35 // struct Properties : public dbus::PropertySet { 41 // Properties(dbus::ObjectProxy* object_proxy, 49 // virtual ~Properties() {} 52 // The Properties structure requires a pointer to the object proxy of the 60 // typedef std::map<std::pair<dbus::ObjectProxy*, Properties*> > Object; 68 // Properties* GetProperties(const dbus::ObjectPath& object_path) { 80 // Properties* properties = new Properties [all...] |
/external/chromium_org/sync/protocol/ |
article_specifics.proto | 14 // Properties of Article objects.
|
managed_user_setting_specifics.proto | 17 // Properties of managed user setting sync objects.
|
preference_specifics.proto | 17 // Properties of preference sync objects.
|
priority_preference_specifics.proto | 19 // Properties of a synced priority preference.
|
synced_notification_specifics.proto | 20 // Properties of SyncedNotificationSpecifics objects.
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
target_new-1.html | 4 <p>Reference the opener, its properties and functions via the links below.</p>
|
/external/chromium_org/third_party/WebKit/PerformanceTests/CSS/ |
CSSPropertyUpdateValue.html | 11 var properties = { 74 // The first run will just add the properties but it's fine as the first run of the benchmark is always ignored. 76 for (key in properties) 77 div.style[key] = properties[key];
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
StyleBuilder.cpp.tmpl | 12 // test other variations for performance once we have more properties here. 24 {%- for property_id, property in properties.items() if not property.use_handlers_for %} 66 {%- for property_id, property in properties.items() %} 67 {%- set used_property = properties[property.use_handlers_for] or property %}
|
StyleBuilderFunctions.h.tmpl | 17 {%- for property_id, property in properties.items() if not property.use_handlers_for %}
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DevToolsExtensionAPI.js | 56 var properties = Object.getOwnPropertyNames(coreAPI); 57 for (var i = 0; i < properties.length; ++i) { 58 var descriptor = Object.getOwnPropertyDescriptor(coreAPI, properties[i]); 59 Object.defineProperty(chrome.experimental.devtools, properties[i], descriptor);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
UniscribeHelperTest.cpp | 69 // Default font properties structure for tests to use. 70 SCRIPT_FONTPROPERTIES properties; member in class:__anon13670::UniscribeTest 75 memset(&properties, 0, sizeof(SCRIPT_FONTPROPERTIES)); 76 properties.cBytes = sizeof(SCRIPT_FONTPROPERTIES); 77 properties.wgBlank = ' '; 78 properties.wgDefault = '?'; // Used when the char is not in the font. 79 properties.wgInvalid = '#'; // Used for invalid characters. 120 false, hfont, scriptCache, &properties, 0); 155 false, hfont, scriptCache, &properties, 0);
|
/external/chromium_org/third_party/freetype/src/sfnt/ |
ttbdf.h | 5 /* TrueType and OpenType embedded BDF properties (specification). */
|
/external/chromium_org/tools/json_schema_compiler/test/ |
browser_action.json | 32 "properties": { 54 "properties": { 82 "properties": { 112 "properties": { 135 "properties": { 163 "properties": { 185 "properties": { 213 "properties": { 238 "properties": {
|
dependency_tester.json | 20 "properties": {
|
/external/chromium_org/ui/compositor/ |
layer_animation_observer.cc | 143 const LayerAnimationElement::AnimatableProperties& properties = local 144 sequence->properties(); 146 properties.begin(); i != properties.end(); ++i) {
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies-for.js | 41 function TestForIn(properties, handler) { 42 TestWithProxies(TestForIn2, properties, handler) 45 function TestForIn2(create, properties, handler) { 49 assertArrayEquals(properties, found) 84 function TestForInDerived(properties, handler) { 85 TestWithProxies(TestForInDerived2, properties, handler) 88 function TestForInDerived2(create, properties, handler) { 94 assertArrayEquals(["z"].concat(properties), found) 100 assertArrayEquals(["y", "z"].concat(properties), found)
|
/external/chromium_org/win8/util/ |
win8_util.h | 12 // UI properties dependent on the single window mode as this method is also
|
/external/clang/test/Analysis/ |
ObjCProperties.m | 4 // The point of this test cases is to exercise properties in the static
|
/external/clang/test/CodeGenObjC/ |
debug-info-default-synth-ivar.m | 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-default-synthesize-properties -emit-llvm -g %s -o %t
|
debug-info-property5.m | 1 // RUN: %clang_cc1 -fobjc-default-synthesize-properties -masm-verbose -S -g %s -o - | FileCheck %s
|
/external/clang/test/Driver/ |
objc_default_synth.m | 1 // We should be synthesizing properties by default on all platforms now.
|
/external/clang/test/SemaObjC/ |
forward-protocol-incomplete-impl-warn.m | 1 // RUN: %clang_cc1 -fsyntax-only -verify -fobjc-default-synthesize-properties %s
|
ivar-sem-check-2.m | 19 @synthesize value1=value; // expected-error {{synthesized properties 'value1' and 'value' both claim instance variable 'value'}}
|
synth-provisional-ivars-1.m | 1 // RUN: %clang_cc1 -fsyntax-only -fobjc-default-synthesize-properties -verify -Wno-objc-root-class %s
|