HomeSort by relevance Sort by last modified time
    Searched refs:prop (Results 76 - 100 of 1278) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/dtc/tests/
property_iterate.c 37 const fdt32_t *prop; local
46 prop = fdt_getprop(fdt, parent_offset, "test-properties", &len);
47 if (!prop || len != sizeof(fdt32_t)) {
51 properties = fdt32_to_cpu(*prop);
subnode_iterate.c 37 const fdt32_t *prop; local
43 prop = fdt_getprop(fdt, parent_offset, "subnodes", &len);
44 if (!prop || len != sizeof(fdt32_t)) {
48 subnodes = fdt32_to_cpu(*prop);
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.cpp 18 static void ParseNumberString(const UString &s, NCOM::CPropVariant &prop)
23 prop = s;
25 prop = (UInt32)result;
27 prop = result;
  /external/pdfium/core/fxcrt/css/
cfx_csscustomproperty.h 15 CFX_CSSCustomProperty(const CFX_CSSCustomProperty& prop);
  /external/testng/src/main/java/org/testng/remote/adapter/
IMasterAdapter.java 20 * @param prop holds the properties loaded from the remote.properties file.
23 void init( Properties prop) throws Exception;
  /system/libufdt/
ufdt_prop_dict.h 50 const struct fdt_property *prop);
  /external/lzma/CPP/7zip/Common/
CreateCoder.cpp 49 NWindows::NCOM::CPropVariant prop; local
50 RINOK(codecsInfo->GetProperty(index, propID, &prop));
51 if (prop.vt == VT_EMPTY)
53 else if (prop.vt == VT_UI4)
54 res = prop.ulVal;
62 NWindows::NCOM::CPropVariant prop; local
63 RINOK(codecsInfo->GetProperty(index, propID, &prop));
64 if (prop.vt == VT_EMPTY)
66 else if (prop.vt == VT_BOOL)
67 res = VARIANT_BOOLToBool(prop.boolVal);
88 NWindows::NCOM::CPropVariant prop; local
125 NWindows::NCOM::CPropVariant prop; local
    [all...]
  /system/media/camera/docs/
html.mako 151 def entry_cols(prop):
153 if prop.details: cols = cols + 2
154 if prop.hal_details: cols = cols + 2
252 <%def name="insert_entry(prop)">
253 <tr class="entry" id="${prop.kind}_${prop.name}">
255 % if prop.deprecated:
258 " rowspan="${entry_cols(prop)}">
259 ${prop.name | wbr}
262 % if prop.enum
    [all...]
  /build/make/tools/
post_process_props.py 19 # Usage: post_process_props.py file.prop [blacklist_key, ...]
27 # Put the modifications that you need to make into the /system/build.prop into this
28 # function. The prop object has get(name) and put(name,value) methods.
29 def mangle_build_prop(prop):
32 # Put the modifications that you need to make into /vendor/default.prop and
33 # /odm/default.prop into this function. The prop object has get(name) and
35 def mangle_default_prop_override(prop):
38 # Put the modifications that you need to make into the /system/etc/prop.default into this
39 # function. The prop object has get(name) and put(name,value) methods
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
AbstractIpAddressPreferenceController.java 95 LinkProperties prop = cm.getActiveLinkProperties(); local
96 return formatIpAddresses(prop);
99 private static String formatIpAddresses(LinkProperties prop) {
100 if (prop == null) return null;
101 Iterator<InetAddress> iter = prop.getAllAddresses().iterator();
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
HvacTestFragment.java 201 for(CarPropertyConfig prop : props) {
202 int propId = prop.getPropertyId();
205 Log.d(TAG, prop.toString());
210 configureOutsideTemp(v, prop);
213 configureDualOn(v, prop);
216 configureAcOn(v, prop);
219 configureFanPosition(v, prop);
222 configureFanSpeed(v, prop);
225 configureTempSetpoint(v, prop);
228 configureAutoModeOn(v, prop);
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.cpp 106 NCOM::CPropVariant prop; local
107 RINOK(_archiveHandler->GetProperty(index, kpidPath, &prop));
108 if (prop.vt == VT_EMPTY)
112 if (prop.vt != VT_BSTR)
114 fullPath.SetFromBstr(prop.bstrVal);
121 NCOM::CPropVariant prop; local
122 RINOK(_archiveHandler->GetProperty(index, kpidAttrib, &prop));
123 if (prop.vt == VT_EMPTY)
127 if (prop.vt != VT_UI4)
129 _processedFileInfo.Attributes = prop.ulVal;
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
DiagnosticHalService.java 95 switch (propConfig.prop) {
97 mDiagnosticCapabilities.setSupported(propConfig.prop);
98 mVehiclePropertyToConfig.put(propConfig.prop, propConfig);
103 mDiagnosticCapabilities.setSupported(propConfig.prop);
104 mVehiclePropertyToConfig.put(propConfig.prop, propConfig);
109 mDiagnosticCapabilities.setSupported(propConfig.prop);
110 return propConfig.prop;
112 mDiagnosticCapabilities.setSupported(propConfig.prop);
118 "clearing of freeze frames. assuming it does not.", propConfig.prop));
124 return propConfig.prop;
    [all...]
PropertyHalService.java 187 * @param prop
189 public void setProperty(CarPropertyValue prop) {
190 int halPropId = managerToHalPropId(prop.getPropertyId());
193 + toHexString(prop.getPropertyId()));
195 VehiclePropValue halProp = toVehiclePropValue(prop, halPropId);
265 for (Integer prop : mSubscribedPropIds) {
266 mVehicleHal.unsubscribeProperty(this, prop);
283 if (mPropIds.isSupportedProperty(p.prop)) {
284 CarPropertyConfig config = CarPropertyUtils.toCarPropertyConfig(p, p.prop);
286 mProps.put(p.prop, config)
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties_test.cc 89 const OpInfo::TensorProperties& prop = props[0]; local
90 EXPECT_EQ(DT_FLOAT, prop.dtype());
91 EXPECT_FALSE(prop.shape().unknown_rank());
92 EXPECT_EQ(2, prop.shape().dim_size());
93 EXPECT_EQ(10, prop.shape().dim(0).size());
94 EXPECT_EQ(1, prop.shape().dim(1).size());
138 const OpInfo::TensorProperties& prop = props[0]; local
139 EXPECT_EQ(DT_INVALID, prop.dtype());
140 EXPECT_TRUE(prop.shape().unknown_rank());
144 const OpInfo::TensorProperties& prop = props[0] local
189 const OpInfo::TensorProperties& prop = props[0]; local
203 const OpInfo::TensorProperties& prop = props[0]; local
229 const OpInfo::TensorProperties& prop = props[0]; local
348 const OpInfo::TensorProperties& prop = props[0]; local
389 const OpInfo::TensorProperties& prop = props[0]; local
450 const OpInfo::TensorProperties& prop = props[0]; local
456 const OpInfo::TensorProperties& prop = props[0]; local
513 const OpInfo::TensorProperties& prop = props[0]; local
519 const OpInfo::TensorProperties& prop = props[0]; local
571 const OpInfo::TensorProperties& prop = props[0]; local
577 const OpInfo::TensorProperties& prop = props[0]; local
621 const OpInfo::TensorProperties& prop = props[0]; local
627 const OpInfo::TensorProperties& prop = props[0]; local
713 const OpInfo::TensorProperties& prop = props[0]; local
740 const OpInfo::TensorProperties& prop = props[0]; local
    [all...]
  /packages/services/Car/tools/emulator/
vhal_emulator_test.py 170 self._log.debug(" Getting config for propId=0x%X", cfg.prop)
171 self._vhal.getConfig(cfg.prop)
176 self._log.error("testGetConfig failed. prop=0x%X, expected:\n%s\nreceived:\n%s",
177 cfg.prop, str(cfg), str(rxMsg.config))
183 for prop in self._badProps:
184 self._log.debug(" Testing bad propId=0x%X", prop)
185 self._vhal.getConfig(prop)
190 self._log.error("testGetBadConfig prop=0x%X, expected:None, received:\n%s",
191 cfg.prop, str(rxMsg.config))
209 if cfg.prop in self._skipProps
    [all...]
vhal_emulator.py 170 def getConfig(self, prop):
176 propGet = cmd.prop.add()
177 propGet.prop = prop
188 def getProperty(self, prop, area_id):
194 propGet = cmd.prop.add()
195 propGet.prop = prop
207 def setProperty(self, prop, area_id, value, status=VehicleHalProto_pb2.AVAILABLE):
218 propValue.prop = pro
    [all...]
  /external/dtc/
livetree.c 249 void add_property(struct node *node, struct property *prop)
253 prop->next = NULL;
259 *p = prop;
264 struct property *prop = node->proplist; local
266 while (prop) {
267 if (streq(prop->name, name)) {
268 delete_property(prop);
271 prop = prop->next;
275 void delete_property(struct property *prop)
310 struct property *prop; local
406 struct property *prop; local
424 struct property *prop; local
680 struct property *prop, **tbl; local
838 struct property *prop; local
883 struct property *prop; local
903 struct property *prop; local
964 struct property *prop; local
    [all...]
treesource.c 195 static void write_propval(FILE *f, struct property *prop)
197 int len = prop->val.len;
198 const char *p = prop->val.val;
199 struct marker *m = prop->val.markers;
217 if ((m->offset > 0) && (prop->val.val[m->offset - 1] != '\0'))
226 write_propval_string(f, prop->val);
228 write_propval_cells(f, prop->val);
230 write_propval_bytes(f, prop->val);
238 struct property *prop; local
250 for_each_property(tree, prop) {
    [all...]
  /hardware/interfaces/broadcastradio/2.0/default/
BroadcastRadio.cpp 47 Properties prop = {}; local
49 prop.maker = "Google";
50 prop.product = virtualRadio.getName();
51 prop.supportedIdentifierTypes = hidl_vec<uint32_t>({
56 prop.vendorInfo = hidl_vec<VendorKeyValue>({
60 return prop;
  /libcore/ojluni/src/main/java/java/util/jar/
Pack200.java     [all...]
  /build/soong/cc/
check.go 29 func CheckBadCompilerFlags(ctx BaseModuleContext, prop string, flags []string) {
34 ctx.PropertyErrorf(prop, "Flag `%s` must start with `-`", flag)
36 ctx.PropertyErrorf(prop, "Bad flag `%s`, use local_include_dirs or include_dirs instead", flag)
38 ctx.PropertyErrorf(prop, "Illegal flag `%s`", flag)
40 ctx.PropertyErrorf(prop, "Bad flag: `%s`, use native_coverage instead", flag)
45 ctx.PropertyErrorf(prop, "`-include` only takes one argument: `%s`", flag)
49 ctx.PropertyErrorf(prop, "Path must not be an absolute path: %s", flag)
51 ctx.PropertyErrorf(prop, "Path must not start with `../`: `%s`. Use include_dirs to -include from a different directory", flag)
59 ctx.PropertyErrorf(prop, "Bad flag: `%s` is not an allowed multi-word flag. Should it be split into multiple flags?", flag)
67 func CheckBadLinkerFlags(ctx BaseModuleContext, prop string, flags []string)
    [all...]
  /external/icu/icu4c/source/common/
uprops.cpp 47 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
55 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) {
57 return (u_getUnicodeProperties(c, prop.column)&prop.mask)!=0;
60 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) {
64 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
68 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
72 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
81 static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
95 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which)
296 const BinaryProperty &prop=binProps[which]; local
473 const BinaryProperty &prop=binProps[which]; local
477 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
497 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
508 const BinaryProperty &prop=binProps[which]; local
517 const IntProperty &prop=intProps[which-UCHAR_INT_START]; local
    [all...]
  /system/bt/btif/src/
btif_core.cc 102 bt_property_t prop; member in struct:__anon1751
425 bt_property_t prop; local
426 prop.type = BT_PROPERTY_BDADDR;
427 prop.val = (void*)&local_bd_addr;
428 prop.len = sizeof(RawAddress);
430 &prop);
748 bt_property_t* p_prop = &(p_req->write_req.prop);
759 bt_property_t prop; local
760 prop.type = p_req->read_req.type;
761 prop.val = (void*)buf
815 bt_property_t prop; local
    [all...]
  /toolchain/binutils/binutils-2.27/gprof/
cg_arcs.c 170 if (parent->cg.prop.fract == 0.0)
180 if (arc->count == 0 || child == parent || child->cg.prop.fract == 0)
217 /* (1 - cg.prop.fract) gets lost along the way: */
218 prop_share = parent->cg.prop.fract * share;
221 parent->cg.prop.child += prop_share;
222 arc->time *= parent->cg.prop.fract;
223 arc->child_time *= parent->cg.prop.fract;
229 parent->cg.cyc.head->cg.prop.child += prop_share;
256 if (member->cg.prop.fract == 0.0)
266 cyc->cg.prop.self = cyc->cg.prop.fract * cyc->hist.time
    [all...]

Completed in 1062 milliseconds

1 2 34 5 6 7 8 91011>>