Searched refs:props (Results 101 - 125 of 422) sorted by relevance

1234567891011>>

/external/lzma/C/
H A DLzmaEnc.h44 SZ_ERROR_PARAM - Incorrect paramater in props
54 SRes LzmaEnc_SetProps(CLzmaEncHandle p, const CLzmaEncProps *props);
73 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dqueue.cpp33 cl_command_queue_properties props) :
34 ctx(ctx), dev(dev), __props(props) {
32 _cl_command_queue(context &ctx, device &dev, cl_command_queue_properties props) argument
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_output.c127 drmModePropertyPtr props = NULL; local
133 props = drmModeGetProperty(priv->fd, drm_connector->props[i]);
134 if (!props)
137 if (!(props->flags & DRM_MODE_PROP_BLOB))
140 if (!strcmp(props->name, "EDID")) {
148 drmModeFreeProperty(props);
279 prop = drmModeGetProperty(ms->fd, drm_connector->props[p]);
/external/openfst/src/include/fst/
H A Darcsort.h71 uint64 Properties(uint64 props) const { return comp_.Properties(props); }
183 uint64 Properties(uint64 props) const {
184 return (props & kArcSortProperties) | kILabelSorted |
185 (props & kAcceptor ? kOLabelSorted : 0);
197 uint64 Properties(uint64 props) const {
198 return (props & kArcSortProperties) | kOLabelSorted |
199 (props & kAcceptor ? kILabelSorted : 0);
/external/llvm/tools/msbuild/
H A Dinstall.bat42 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2010.props %D%\LLVM-vs2010
52 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012.props %D%\LLVM-vs2012
58 copy %PLATFORM%\Microsoft.Cpp.%PLATFORM%.LLVM-vs2012_xp.props %D%\LLVM-vs2012_xp
68 copy %PLATFORM%\toolset-vs2013.props %D%\LLVM-vs2013\toolset.props
74 copy %PLATFORM%\toolset-vs2013_xp.props %D%\LLVM-vs2013_xp\toolset.props
/external/chromium_org/tools/idl_parser/
H A Didl_node.py142 def __init__(self, props):
145 self.props = props
150 if self.props:
153 if key in self.props:
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dbootstrap.py61 props = self.__norm_path_keys(self.client.propfind(path, depth=1))
63 del props[os.path.normpath(path)]
64 return [os.path.basename(p) for p in props.keys()]
68 props = self.__norm_path_keys(self.client.propfind(path, depth=1))
69 return props[os.path.normpath(path)]['resourcetype'] is None
/external/chromium_org/v8/test/webkit/
H A Darray-enumerators-functions.js48 var props = [];
50 props.push(i);
51 for (var i = props.length - 1; i >= 0; i--)
52 o[props[i]] = array[props[i]];
/external/apache-http/src/org/apache/commons/logging/
H A DLogFactory.java422 Properties props = getConfigurationFile(contextClassLoader, FACTORY_PROPERTIES);
427 if (props != null) {
428 String useTCCLStr = props.getProperty(TCCL_KEY);
563 if (props != null) {
570 String factoryClass = props.getProperty(FACTORY_PROPERTY);
624 if( props!=null ) {
625 Enumeration names = props.propertyNames();
628 String value = props.getProperty(name);
1370 Properties props = new Properties();
1371 props
[all...]
/external/chromium_org/content/browser/resources/media/
H A Dclient_renderer.js259 var props = player.properties;
264 if (props['buffer_start'] !== undefined &&
265 props['buffer_current'] !== undefined &&
266 props['buffer_end'] !== undefined &&
267 props['total_bytes'] !== undefined) {
268 this.drawBufferGraph_(props['buffer_start'],
269 props['buffer_current'],
270 props['buffer_end'],
271 props['total_bytes']);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertiesFactory.java355 Properties props = new Properties(defaults);
381 props.load(bis);
442 Enumeration keys = ((Properties) props.clone()).keys();
459 value = (String) props.get(key);
478 props.remove(key);
479 props.put(newKey, newValue);
484 return props;
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc68 std::vector<Var> props; local
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
70 if (props.empty())
72 *property_count = static_cast<uint32_t>(props.size());
77 memory_if->MemAlloc(sizeof(PP_Var) * props.size()));
79 for (size_t i = 0; i < props.size(); ++i)
80 (*properties)[i] = props[i].Detach();
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_characteristic_chromeos.cc115 Properties props = kPropertyNone; local
121 props |= kPropertyBroadcast;
123 props |= kPropertyRead;
125 props |= kPropertyWriteWithoutResponse;
127 props |= kPropertyWrite;
129 props |= kPropertyNotify;
131 props |= kPropertyIndicate;
133 props |= kPropertyAuthenticatedSignedWrites;
135 props |= kPropertyExtendedProperties;
137 props |
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dsurface.cpp34 SkSurfaceProps props(flags, geo);
36 return SkSurface::NewRenderTarget(ctx, info, 0, &props);
38 return SkSurface::NewRaster(info, &props);
/external/chromium_org/third_party/skia/include/core/
H A DSkSurface.h64 static SkSurface* NewRasterPMColor(int width, int height, const SkSurfaceProps* props = NULL) {
65 return NewRaster(SkImageInfo::MakeN32Premul(width, height), props);
215 const SkSurfaceProps& props() const { return fProps; } function in class:SkSurface
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv_c.h37 PgScalerProps_t props; member in struct:private_yuvhwdata
/external/chromium_org/ppapi/generators/
H A Didl_propertynode.py58 def BuildNode(name, props, children=None, parents=None):
61 for prop in props:
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsort.h46 uint64 props = fst->Properties(kFstProperties, false); local
64 fst->SetProperties(comp.Properties(props), kFstProperties);
94 uint64 props = fst_->Properties(kCopyProperties, false); local
95 SetProperties(comp_.Properties(props));
285 uint64 Properties(uint64 props) const {
286 return (props & kArcSortProperties) | kILabelSorted;
298 uint64 Properties(uint64 props) const {
299 return (props & kArcSortProperties) | kOLabelSorted;
H A Dinvert.h35 uint64 Properties(uint64 props) { return InvertProperties(props); } argument
H A Dstatesort.h43 uint64 props = fst->Properties(kStateSortProperties, false);
83 fst->SetProperties(props, kFstProperties);
H A Dconnect.h42 // props: related property bits (cyclicity, initial cyclicity,
45 vector<bool> *coaccess, uint64 *props)
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
47 SccVisitor(uint64 *props) argument
48 : scc_(0), access_(0), coaccess_(0), props_(props) {}
207 uint64 props = 0; local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
44 SccVisitor(vector<StateId> *scc, vector<bool> *access, vector<bool> *coaccess, uint64 *props) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dpolicy_ui_browsertest.cc247 for (policy::Schema::Iterator props = chrome_schema.GetPropertiesIterator();
248 !props.IsAtEnd(); props.Advance()) {
250 expected_values.find(props.key());
253 const policy::PolicyMap::Entry* metadata = values.Get(props.key());
257 PopulateExpectedPolicy(props.key(), value, metadata, false));
/external/chromium_org/third_party/icu/source/common/
H A Duprops.h61 #define GET_CATEGORY(props) ((props)&0x1f)
62 #define CAT_MASK(props) U_MASK(GET_CATEGORY(props))
64 #define GET_NUMERIC_TYPE_VALUE(props) ((props)>>UPROPS_NUMERIC_TYPE_VALUE_SHIFT)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php71 if (preg_match($perfile_regex, $z, $props))
76 $props[$y] = mysql_real_escape_string($props[$y], $connect);
78 preg_match("/^\/cvsroot\/[^\/]+\/([^\/]+)\//", $props[1], $proj);
79 $q = "`project` = '$proj[1]', `head` = '$props[3]', `keyword_subs` = '$props[9]'";
80 wmysql_query("INSERT INTO `cvsfiles` SET `cvsname` = '$props[1]', $q ON DUPLICATE KEY UPDATE $q");
82 $result = wmysql_query("SELECT `fid` FROM `cvsfiles` WHERE `cvsname` = '$props[1]'");
88 $count = preg_match_all("/^\t(\S+): ([0-9\.]+)$\n/m", $props[8], $syms);
102 $commits = $props[1
[all...]
/external/icu/icu4c/source/common/
H A Duprops.h61 #define GET_CATEGORY(props) ((props)&0x1f)
62 #define CAT_MASK(props) U_MASK(GET_CATEGORY(props))
64 #define GET_NUMERIC_TYPE_VALUE(props) ((props)>>UPROPS_NUMERIC_TYPE_VALUE_SHIFT)

Completed in 1315 milliseconds

1234567891011>>