Searched refs:prop (Results 51 - 75 of 429) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/resources/extensions/
H A Dexperimental.offscreenTabs_custom_bindings.js13 function maybeCopy(src, prop, dest) {
14 if (src[prop] !== undefined)
15 dest[prop] = src[prop];
H A Djson_schema.js343 for (var prop in schema.properties) {
350 if (!$Object.hasOwnProperty(schema.properties, prop))
353 var propPath = path ? path + "." + prop : prop;
354 if (schema.properties[prop] == undefined) {
356 } else if (prop in instance && !isOptionalValue(instance[prop])) {
357 this.validate(instance[prop], schema.properties[prop], propPath);
358 } else if (!schema.properties[prop]
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-load-elements.js32 o.prop = 0;
/external/lzma/CPP/7zip/Common/
H A DMethodProps.cpp58 const CProp &prop = method.Props[i]; local
59 propIDs.Add(prop.Id);
61 value = prop.Value;
62 // if (tryReduce && prop.Id == NCoderPropID::kDictionarySize && value.vt == VT_UI4 && reducedDictionarySize < value.ulVal)
64 if (prop.Id == NCoderPropID::kDictionarySize)
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp17 static void ParseNumberString(const UString &s, NCOM::CPropVariant &prop) argument
22 prop = s;
24 prop = (UInt32)result;
26 prop = result;
H A DUpdateCallback.cpp92 NWindows::NCOM::CPropVariant prop; local
96 prop = up.IsAnti;
97 prop.Detach(value);
109 prop = (UInt64)0;
110 prop.Detach(value);
113 prop.Detach(value);
123 case kpidPath: prop = DirItems->GetLogPath(up.DirIndex); break;
124 case kpidIsDir: prop = di.IsDir(); break;
125 case kpidSize: prop = di.Size; break;
126 case kpidAttrib: prop
[all...]
/external/lzma/CPP/7zip/Archive/
H A DArchiveExports.cpp92 NWindows::NCOM::CPropVariant prop; local
96 prop = arc.Name;
106 prop = arc.Ext;
110 prop = arc.AddExt;
113 prop = (bool)(arc.CreateOutArchive != 0);
116 prop = arc.KeepName;
121 prop.Detach(value);
H A DSplitHandler.cpp53 NCOM::CPropVariant prop; local
56 case kpidMainSubfile: prop = (UInt32)0; break;
57 case kpidNumVolumes: prop = (UInt32)_streams.Size(); break;
59 prop.Detach(value);
155 NCOM::CPropVariant prop; local
156 RINOK(openVolumeCallback->GetProperty(kpidName, &prop));
157 if (prop.vt != VT_BSTR)
159 name = prop.bstrVal;
216 NCOM::CPropVariant prop; local
217 RINOK(openVolumeCallback->GetProperty(kpidSize, &prop));
243 NCOM::CPropVariant prop; local
284 NWindows::NCOM::CPropVariant prop; local
[all...]
/external/lzma/CPP/7zip/Compress/
H A DDeltaFilter.cpp64 const PROPVARIANT &prop = props[i]; local
65 if (propIDs[i] != NCoderPropID::kDefaultProp || prop.vt != VT_UI4 || prop.ulVal < 1 || prop.ulVal > 256)
67 delta = prop.ulVal;
75 Byte prop = (Byte)(_delta - 1); local
76 return outStream->Write(&prop, 1, NULL);
/external/lzma/CPP/7zip/UI/Client7z/
H A DClient7z.cpp81 NCOM::CPropVariant prop; local
82 RINOK(archive->GetProperty(index, propID, &prop));
83 if (prop.vt == VT_BOOL)
84 result = VARIANT_BOOLToBool(prop.boolVal);
85 else if (prop.vt == VT_EMPTY)
236 NCOM::CPropVariant prop; local
237 RINOK(_archiveHandler->GetProperty(index, kpidPath, &prop));
240 if (prop.vt == VT_EMPTY)
244 if (prop.vt != VT_BSTR)
246 fullPath = prop
256 NCOM::CPropVariant prop; local
276 NCOM::CPropVariant prop; local
295 NCOM::CPropVariant prop; local
517 NWindows::NCOM::CPropVariant prop; local
837 NWindows::NCOM::CPropVariant prop; local
845 NWindows::NCOM::CPropVariant prop; local
[all...]
/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/chromium_org/v8/test/webkit/
H A Ddictionary-no-cache.js86 var test4 = {__proto__:{prop:"on prototype"}};
90 var test5 = {__proto__:{__proto__:{prop:"on prototype's prototype"}}};
95 return o.prop;
101 test4.prop = "on self";
105 return o.prop;
111 test5.prop = "on self";
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafmodule.c102 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
106 error = af_property_get_face_globals( prop->face, &globals, module );
108 globals->increase_x_height = prop->limit;
131 FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value; local
135 error = af_property_get_face_globals( prop->face, &globals, module );
137 prop->map = globals->glyph_scripts;
152 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
156 error = af_property_get_face_globals( prop->face, &globals, module );
158 prop->limit = globals->increase_x_height;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A DAPIspec.py47 self.tmpl_nodes[node.prop("name")] = node
49 self.api_nodes[node.prop("name")] = node
57 if node.prop("implementation") == "true":
76 self.name = api_node.prop("name")
77 self.is_impl = (api_node.prop("implementation") == "true")
88 cat = node.prop("name")
98 tmpl_node = spec.tmpl_nodes[func_node.prop("template")]
103 func_name = func_node.prop("name")
126 self.tmpl_name = tmpl_node.prop("name")
127 self.direction = tmpl_node.prop("directio
[all...]
/external/freetype/src/autofit/
H A Dafmodule.c102 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
106 error = af_property_get_face_globals( prop->face, &globals, module );
108 globals->increase_x_height = prop->limit;
131 FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value; local
135 error = af_property_get_face_globals( prop->face, &globals, module );
137 prop->map = globals->glyph_scripts;
152 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
156 error = af_property_get_face_globals( prop->face, &globals, module );
158 prop->limit = globals->increase_x_height;
/external/mesa3d/src/mesa/main/
H A DAPIspec.py47 self.tmpl_nodes[node.prop("name")] = node
49 self.api_nodes[node.prop("name")] = node
57 if node.prop("implementation") == "true":
76 self.name = api_node.prop("name")
77 self.is_impl = (api_node.prop("implementation") == "true")
88 cat = node.prop("name")
98 tmpl_node = spec.tmpl_nodes[func_node.prop("template")]
103 func_name = func_node.prop("name")
126 self.tmpl_name = tmpl_node.prop("name")
127 self.direction = tmpl_node.prop("directio
[all...]
/external/chromium_org/chrome/test/chromedriver/js/
H A Dcall_function.js156 for (var prop in value)
157 obj[prop] = wrap(value[prop]);
177 for (var prop in value)
178 obj[prop] = unwrap(value[prop], cache);
/external/chromium_org/third_party/icu/source/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/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
304 defaultGetValue(const IntProperty &prop, UChar32 c, UProperty ) argument
309 defaultGetMaxValue(const IntProperty &prop, UProperty ) argument
313 getMaxValueFromShift(const IntProperty &prop, UProperty ) argument
458 const BinaryProperty &prop=binProps[which]; local
462 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
482 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
493 const BinaryProperty &prop=binProps[which]; local
502 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
[all...]
/external/chromium_org/base/win/
H A Devent_trace_controller_unittest.cc60 EtwTraceProperties prop; local
62 EVENT_TRACE_PROPERTIES* p = prop.get();
92 EtwTraceProperties prop; local
94 ASSERT_STREQ(L"", prop.GetLoggerFileName());
95 ASSERT_STREQ(L"", prop.GetLoggerName());
98 ASSERT_HRESULT_SUCCEEDED(prop.SetLoggerFileName(name.c_str()));
99 ASSERT_HRESULT_SUCCEEDED(prop.SetLoggerName(name.c_str()));
100 ASSERT_STREQ(name.c_str(), prop.GetLoggerFileName());
101 ASSERT_STREQ(name.c_str(), prop.GetLoggerName());
104 ASSERT_HRESULT_FAILED(prop
126 EtwTraceProperties prop; local
[all...]
/external/chromium_org/tools/dromaeo_benchmark_runner/
H A Ddromaeo_benchmark_runner.py166 for prop in test_props:
169 row.append('%s %i' % (prop, i + 1))
170 row.append('average ' + prop)
181 for prop in test_props:
186 row.extend([str(x) for x in test_data[prop]])
187 row.append(str(sum(test_data[prop]) / len(test_data[prop])))
216 self.data[test_name] = dict([(prop, []) for prop in test_props])
218 for prop i
[all...]
/external/chromium_org/build/android/pylib/
H A Dvalgrind_tools.py127 for prop in self._wrap_properties:
129 prop, self.GetTestWrapper()))
133 for prop in self._wrap_properties:
134 self._adb.RunShellCommand('setprop %s ""' % (prop,))
170 for prop in self._wrap_properties:
172 prop, self.GetTestWrapper()))
177 for prop in self._wrap_properties:
178 self._adb.RunShellCommand('setprop %s ""' % (prop,))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.h57 struct tgsi_full_property *prop);
79 const struct tgsi_full_property *prop);
H A Dtgsi_dump.h71 const struct tgsi_full_property *prop );
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_transform.h57 struct tgsi_full_property *prop);
79 const struct tgsi_full_property *prop);

Completed in 4069 milliseconds

1234567891011>>