Searched refs:prop (Results 1 - 25 of 171) sorted by relevance

1234567

/external/v8/test/mjsunit/
H A Dundeletable-functions.js143 function CheckDeletable(type, prop) {
144 var old = type[prop];
146 if (!type[prop]) return;
147 assertTrue(type.hasOwnProperty(prop), "inherited: " + prop);
148 var deleted = delete type[prop];
149 assertTrue(deleted, "delete operator returned false: " + prop);
150 assertFalse(hasOwnProperty.call(type, prop), "still there after delete: " + prop);
151 type[prop]
[all...]
H A Darguments-enum.js30 for (var prop in arguments)
39 for (var prop in arguments)
/external/pcre/
H A Dpcre_xclass.c106 const ucd_record *prop = GET_UCD(c); local
115 if ((prop->chartype == ucp_Lu || prop->chartype == ucp_Ll ||
116 prop->chartype == ucp_Lt) == (t == XCL_PROP)) return !negated;
120 if ((data[1] == _pcre_ucp_gentype[prop->chartype]) == (t == XCL_PROP))
125 if ((data[1] == prop->chartype) == (t == XCL_PROP)) return !negated;
129 if ((data[1] == prop->script) == (t == XCL_PROP)) return !negated;
133 if ((_pcre_ucp_gentype[prop->chartype] == ucp_L ||
134 _pcre_ucp_gentype[prop->chartype] == ucp_N) == (t == XCL_PROP))
139 if ((_pcre_ucp_gentype[prop
[all...]
/external/clang/test/PCH/Inputs/
H A Dchain-remap-types1.h9 @property X *prop; variable
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regress/
H A Dregress-7703.js55 for (prop in object) {
56 var x = object[prop];
71 for (prop in object) {
72 types_2[types_2.length] = (typeof object[prop]);
/external/qemu/hw/
H A Dqdev.c113 Property *prop;
135 for (prop = info->props; prop && prop->name; prop++) {
142 if (!prop->info->parse) {
145 error_printf("%s.%s=%s\n", info->name, prop->name, prop->info->name);
237 DeviceProperty *prop; local
240 prop
251 DeviceProperty *prop; local
259 DeviceProperty *prop; local
267 DeviceProperty *prop; local
301 DeviceProperty *prop; local
314 DeviceProperty *prop; local
326 DeviceProperty *prop; local
335 DeviceProperty *prop; local
466 DeviceProperty *prop; local
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSignedObjectTest.java36 Properties prop;
46 prop = new Properties();
47 prop.put("aaa", "bbb");
49 SignedObject so = new SignedObject(prop, tkp.getPrivate(), sig);
52 assertEquals(prop, so.getObject());
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
H A Dregress-108440.js66 for(var prop in self)
68 temp = prop;
69 temp = (a[a.length] = self[prop]);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A D15.10.4.1-1.js89 for (prop in obj2)
91 msg = status + quote(prop);
92 actual = obj2[prop];
93 expect = obj1[prop];
H A D15.10.4.1-2.js95 for (prop in obj2)
97 msg = status + quote(prop);
98 actual = obj2[prop];
99 expect = obj1[prop];
H A D15.10.4.1-3.js101 for (prop in obj2)
103 msg = status + quote(prop);
104 actual = obj2[prop];
105 expect = obj1[prop];
H A D15.10.4.1-4.js107 for (prop in obj2)
109 msg = status + quote(prop);
110 actual = obj2[prop];
111 expect = obj1[prop];
/external/webkit/Source/WebCore/rendering/style/
H A DKeyframeList.h46 void addProperty(int prop) { m_properties.add(prop); } argument
47 bool containsProperty(int prop) const { return m_properties.contains(prop); }
80 void addProperty(int prop) { m_properties.add(prop); } argument
81 bool containsProperty(int prop) const { return m_properties.contains(prop); }
/external/harfbuzz/tests/linebreaking/
H A Dharfbuzz-qt.cpp64 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch); local
65 return (HB_WordClass) prop->wordBreak;
71 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch); local
72 return (HB_SentenceClass) prop->sentenceBreak;
77 const QUnicodeTables::Properties *prop = QUnicodeTables::properties(ch); local
78 *grapheme = (HB_GraphemeClass) prop->graphemeBreak;
79 *lineBreak = (HB_LineBreakClass) prop->line_break_class;
/external/qemu/android/
H A Dboot-properties.c47 BootProperty* prop = android_alloc( sizeof(*prop) + length + 1 ); local
50 prop->next = NULL;
51 prop->property = p = (char*)(prop + 1);
52 prop->length = length;
61 return prop;
94 BootProperty* prop; local
125 prop = boot_property_alloc(name, namelen, value, valuelen);
127 *_boot_properties_tail = prop;
303 BootProperty* prop; local
[all...]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
H A Dpicoloaddbg.lua60 -- get :PROP and mapval prop/propval
76 -- try to get next prop/propval and add to props
77 prop, propval = string.match(cline, "^,%s*(%w+)%s*=%s*(%d+)%s*")
78 if prop and propval then
80 props[prop] = tonumber(propval)
109 for prop, propval in pairs(p) do
110 if not propnames[prop] and not upropnames[prop] then
111 io.write("*** error: invalid property name '", prop, "'\n")
114 if propnames[prop] the
[all...]
H A Dpicoloadphones.lua58 -- get :PROP and mapval prop/propval
74 -- try to get next prop/propval and add to props
75 prop, propval = string.match(cline, "^,%s*(%w+)%s*=%s*(%d+)%s*")
76 if prop and propval then
78 props[prop] = tonumber(propval)
107 for prop, propval in pairs(p) do
108 if not propnames[prop] and not upropnames[prop] then
109 io.write("*** error: invalid property name '", prop, "'\n")
112 if propnames[prop] the
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DPropertiesTest.java104 ((String) tProps.getProperty("test.prop")));
115 ((String) tProps.getProperty("test.prop", "Blarg")));
117 .getProperty("notInThere.prop", "Gabba")));
208 Properties prop = null;
211 prop = new Properties();
212 prop.load(is = new ByteArrayInputStream(writeProperties()));
217 assertEquals("Failed to load correct properties", "harmony.tests", prop
219 assertNull("Load failed to parse incorrectly", prop
222 prop = new Properties();
224 prop
[all...]
/external/chromium/base/win/
H A Devent_trace_controller.cc14 EVENT_TRACE_PROPERTIES* prop = get(); local
16 prop->Wnode.BufferSize = sizeof(buffer_);
17 prop->Wnode.Flags = WNODE_FLAG_TRACED_GUID;
18 prop->LoggerNameOffset = sizeof(EVENT_TRACE_PROPERTIES);
19 prop->LogFileNameOffset = sizeof(EVENT_TRACE_PROPERTIES) +
53 EtwTraceProperties* prop) {
56 if (prop == NULL)
57 prop = &ignore;
59 HRESULT hr = Start(session_name, prop, &session_);
70 EtwTraceProperties prop; local
52 Start(const wchar_t* session_name, EtwTraceProperties* prop) argument
86 EtwTraceProperties prop; local
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-44009.js61 obj.prop = obj;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
H A DSignedObjectTest.java47 private Properties prop; field in class:SignedObjectTest
60 prop = new Properties();
61 prop.put("aaa", "bbb");
64 o = new SignedObject(prop, tkp.getPrivate(), sig);
84 assertEquals(test.getObject(), prop);
/external/icu4c/tools/genpname/
H A Dgensvpa.pl37 "--prop=s" => \$prop,
42 usage() unless defined $prop;
45 $propFH = IO::File->new($prop,"r")
46 or die "could not open the file $prop for reading: $! \n";
156 --prop=<PropertyValueAliases.txt>
158 e.g.: gensvpa.pl --destdir=<icu>/source/tools/genpname --iso15924=iso15924-utf8-20041025.txt --prop=<icu>/source/data/unidata --code-start=60
/external/icu4c/common/
H A Duprops.cpp48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
56 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) { argument
58 return (u_getUnicodeProperties(c, prop.column)&prop.mask)!=0;
61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) {
65 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
69 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
73 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
82 static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar3
286 const BinaryProperty &prop=binProps[which]; local
330 defaultGetValue(const IntProperty &prop, UChar32 c, UProperty ) argument
335 defaultGetMaxValue(const IntProperty &prop, UProperty ) argument
339 getMaxValueFromShift(const IntProperty &prop, UProperty ) argument
484 const BinaryProperty &prop=binProps[which]; local
488 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
508 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
519 const BinaryProperty &prop=binProps[which]; local
528 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
H A D15.11.7.6-001.js61 for (var prop in F)
63 if (F[prop] === proto)
/external/clang/test/SemaObjC/Inputs/
H A Darc-system-header.h41 @property id *prop; variable

Completed in 2136 milliseconds

1234567