HomeSort by relevance Sort by last modified time
    Searched defs:prop (Results 101 - 125 of 852) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 390 ICalendar.Property prop = new ICalendar.Property(propertyName); local
391 prop.setValue(rrule);
392 component.addProperty(prop);
449 ICalendar.Property prop = new ICalendar.Property(propertyName); local
457 prop.addParameter(new ICalendar.Parameter("TZID", tz));
459 prop.setValue(dateStr);
460 component.addProperty(prop);
  /art/tools/wrapagentproperties/
wrapagentproperties.cc 139 static jvmtiError WrapGetSystemProperty(jvmtiEnv* env, const char* prop, char** out) {
142 if (funcs->proxy_vm->map->find(prop) != funcs->proxy_vm->map->end()) {
143 std::string str_prop(prop);
152 return funcs->original_interface->GetSystemProperty(env, prop, out);
194 static jvmtiError WrapSetSystemProperty(jvmtiEnv* env, const char* prop, const char* val) {
197 jvmtiError res = funcs->original_interface->SetSystemProperty(env, prop, val);
201 if (funcs->proxy_vm->map->find(prop) != funcs->proxy_vm->map->end()) {
202 funcs->proxy_vm->map->at(prop) = val;
276 std::string prop = substrOf(line, 0, line.find('=')); local
278 LOG(INFO) << "Overriding property " << std::quoted(prop) << " new value is
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraFactory.cpp 450 char prop[PROPERTY_VALUE_MAX]; local
451 if (property_get(key, prop, nullptr) > 0) {
495 char prop[PROPERTY_VALUE_MAX]; local
498 if (property_get("qemu.sf.fake_camera", prop, nullptr) != 0 ) {
516 char prop[PROPERTY_VALUE_MAX]; local
517 if ((property_get("qemu.sf.fake_camera", prop, nullptr) > 0) &&
518 (!strcmp(prop, "both") ||
519 !strcmp(prop, backCamera ? "back" : "front"))) {
532 char prop[PROPERTY_VALUE_MAX]; local
536 if (property_get(propQuery, prop, nullptr) > 0)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/libfdt/
fdt_ro.c 276 const struct fdt_property *prop; local
284 prop = _fdt_offset_ptr(fdt, offset);
287 *lenp = fdt32_to_cpu(prop->len);
289 return prop;
300 const struct fdt_property *prop; local
302 if (!(prop = fdt_get_property_by_offset(fdt, offset, lenp))) {
306 if (_fdt_string_eq(fdt, fdt32_to_cpu(prop->nameoff),
308 return prop;
327 const struct fdt_property *prop; local
329 prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp)
339 const struct fdt_property *prop; local
670 const void *prop; local
    [all...]
fdt_rw.c 204 int len, struct fdt_property **prop)
209 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
210 if (! (*prop))
213 if ((err = _fdt_splice_struct(fdt, (*prop)->data, FDT_TAGALIGN(oldlen),
217 (*prop)->len = cpu_to_fdt32(len);
222 int len, struct fdt_property **prop)
236 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
237 proplen = sizeof(**prop) + FDT_TAGALIGN(len);
239 err = _fdt_splice_struct(fdt, *prop, 0, proplen);
243 (*prop)->tag = cpu_to_fdt32(FDT_PROP)
275 struct fdt_property *prop; local
293 struct fdt_property *prop; local
319 struct fdt_property *prop; local
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/FdtLib/
fdt_ro.c 244 const struct fdt_property *prop; local
252 prop = _fdt_offset_ptr(fdt, offset);
255 *lenp = fdt32_to_cpu(prop->len);
257 return prop;
268 const struct fdt_property *prop; local
270 prop = fdt_get_property_by_offset(fdt, offset, lenp);
271 if (!prop) {
275 if (_fdt_string_eq(fdt, fdt32_to_cpu(prop->nameoff),
277 return prop;
296 const struct fdt_property *prop; local
308 const struct fdt_property *prop; local
539 const void *prop; local
    [all...]
fdt_rw.c 208 int len, struct fdt_property **prop)
213 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
214 if (! (*prop))
217 err = _fdt_splice_struct(fdt, (*prop)->data, FDT_TAGALIGN(oldlen),
222 (*prop)->len = cpu_to_fdt32(len);
227 int len, struct fdt_property **prop)
241 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
242 proplen = sizeof(**prop) + FDT_TAGALIGN(len);
244 err = _fdt_splice_struct(fdt, *prop, 0, proplen);
248 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
280 struct fdt_property *prop; local
298 struct fdt_property *prop; local
324 struct fdt_property *prop; local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOArrayLengthTests.cpp 120 const glw::GLenum prop = GL_OFFSET; local
126 gl.getProgramResourceiv(m_shader->getProgram(), GL_BUFFER_VARIABLE, index, 1, &prop, 1, DE_NULL, &result);
133 const glw::GLenum prop = GL_OFFSET; local
139 gl.getProgramResourceiv(m_shader->getProgram(), GL_BUFFER_VARIABLE, index, 1, &prop, 1, DE_NULL, &result);
146 const glw::GLenum prop = GL_ARRAY_STRIDE; local
152 gl.getProgramResourceiv(m_shader->getProgram(), GL_BUFFER_VARIABLE, index, 1, &prop, 1, DE_NULL, &result);
  /external/doclava/src/com/google/doclava/
DocFile.java 29 public static final Pattern PROP = Pattern.compile("([^=]+)=(.*)");
92 Matcher prop = PROP.matcher(line); local
93 if (prop.matches()) {
94 String key = prop.group(1);
95 String value = prop.group(2);
137 Matcher prop = PROP.matcher(line); local
138 if (prop.matches()) {
139 String key = prop.group(1)
    [all...]
  /external/dtc/
fdtget.c 126 int prop; local
128 prop = fdt_first_property_offset(blob, node);
131 if (prop < 0)
132 return prop == -FDT_ERR_NOTFOUND ? 0 : prop;
133 data = fdt_get_property_by_offset(blob, prop, NULL);
137 prop = fdt_next_property_offset(blob, prop);
254 const char *prop; local
273 prop = args_per_step == 1 ? NULL : arg[i + 1]
    [all...]
  /external/dtc/libfdt/
fdt_overlay.c 547 const void *prop; local
551 prop = fdt_getprop_by_offset(fdto, property, &name,
558 ret = fdt_setprop(fdt, target, name, prop, prop_len);
fdt_ro.c 276 const struct fdt_property *prop; local
284 prop = _fdt_offset_ptr(fdt, offset);
287 *lenp = fdt32_to_cpu(prop->len);
289 return prop;
300 const struct fdt_property *prop; local
302 if (!(prop = fdt_get_property_by_offset(fdt, offset, lenp))) {
306 if (_fdt_string_eq(fdt, fdt32_to_cpu(prop->nameoff),
308 return prop;
327 const struct fdt_property *prop; local
329 prop = fdt_get_property_namelen(fdt, nodeoffset, name, namelen, lenp)
339 const struct fdt_property *prop; local
670 const void *prop; local
    [all...]
fdt_rw.c 204 int len, struct fdt_property **prop)
209 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
210 if (!*prop)
213 if ((err = _fdt_splice_struct(fdt, (*prop)->data, FDT_TAGALIGN(oldlen),
217 (*prop)->len = cpu_to_fdt32(len);
222 int len, struct fdt_property **prop)
236 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
237 proplen = sizeof(**prop) + FDT_TAGALIGN(len);
239 err = _fdt_splice_struct(fdt, *prop, 0, proplen);
243 (*prop)->tag = cpu_to_fdt32(FDT_PROP)
275 struct fdt_property *prop; local
294 struct fdt_property *prop; local
320 struct fdt_property *prop; local
    [all...]
  /external/freetype/src/autofit/
afmodule.c 190 FT_Prop_IncreaseXHeight* prop; local
199 prop = (FT_Prop_IncreaseXHeight*)value;
201 error = af_property_get_face_globals( prop->face, &globals, module );
203 globals->increase_x_height = prop->limit;
346 FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value; local
350 error = af_property_get_face_globals( prop->face, &globals, module );
352 prop->map = globals->glyph_styles;
378 FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value; local
382 error = af_property_get_face_globals( prop->face, &globals, module );
384 prop->limit = globals->increase_x_height
    [all...]
  /external/freetype/src/bdf/
bdfdrivr.c 205 bdf_property_t* prop; local
213 prop = bdf_get_font_property( font, (char *)"SLANT" );
214 if ( prop && prop->format == BDF_ATOM &&
215 prop->value.atom &&
216 ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o' ||
217 *(prop->value.atom) == 'I' || *(prop->value.atom) == 'i' ) )
220 strings[2] = ( *(prop->value.atom) == 'O' || *(prop->value.atom) == 'o'
390 bdf_property_t* prop = NULL; local
875 bdf_property_t* prop; local
    [all...]
  /external/freetype/src/pcf/
pcfdrivr.c 230 PCF_Property prop = &face->properties[i]; local
233 if ( prop )
235 FT_FREE( prop->name );
236 if ( prop->isString )
237 FT_FREE( prop->value.atom );
615 PCF_Property prop; local
618 prop = pcf_find_property( face, prop_name );
619 if ( prop )
621 if ( prop->isString )
624 aproperty->u.atom = prop->value.atom
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ppucd.cpp 285 for(int32_t prop=0; prop<UCHAR_BINARY_LIMIT; ++prop) {
286 if(newValues.contains(prop) && cpProps.binProps[prop]==blockProps.binProps[prop]) {
287 newValues.remove(prop);
290 for(int32_t prop=UCHAR_INT_START; prop<UCHAR_INT_LIMIT; ++prop) {
302 int32_t prop; member in struct:__anon21823
337 int32_t prop=pnames->getPropertyEnum(p); local
    [all...]
  /external/ipsec-tools/src/libipsec/
key_debug.c 215 struct sadb_prop *prop = (void *)ext; local
223 len = (PFKEY_UNUNIT64(prop->sadb_prop_len) - sizeof(*prop))
225 comb = (void *)(prop + 1);
226 printf("sadb_prop{ replay=%u\n", prop->sadb_prop_replay);
  /external/ipsec-tools/src/racoon/
remoteconf.c 512 struct isakmpsa *prop = p->proposal; local
586 while (prop) {
590 prop->prop_no, prop->trns_no,
591 saddr2str(prop->rmconf->remote));
594 (long)prop->lifetime);
596 prop->lifebyte);
598 alg_oakley_dhdef_name(prop->dh_group));
600 alg_oakley_encdef_name(prop->enctype));
602 alg_oakley_hashdef_name(prop->hashtype))
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapObject.java 150 Object prop = properties.elementAt(index); local
151 if (prop instanceof PropertyInfo) {
152 return ((PropertyInfo) prop).getValue();
154 return ((SoapObject) prop);
466 Object prop = properties.elementAt(propIndex); local
467 if (prop instanceof PropertyInfo) {
471 } else if (prop instanceof SoapObject) {
472 o.addSoapObject(((SoapObject) prop).newInstance());
494 Object prop = properties.elementAt(index); local
495 if (prop instanceof PropertyInfo)
599 Object prop = properties.elementAt(i); local
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 51 const MDString *prop = dyn_cast<MDString>(md->getOperand(i)); local
52 assert(prop && "Annotation property not a string");
58 std::string keyname = prop->getString().str();
102 bool llvm::findOneNVVMAnnotation(const GlobalValue *gv, const std::string &prop,
110 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end())
112 retval = (*annotationCache)[m][gv][prop][0];
116 bool llvm::findAllNVVMAnnotation(const GlobalValue *gv, const std::string &prop,
124 if ((*annotationCache)[m][gv].find(prop) == (*annotationCache)[m][gv].end())
126 retval = (*annotationCache)[m][gv][prop];
  /external/lzma/CPP/7zip/Archive/
SplitHandler.cpp 56 NCOM::CPropVariant prop; local
59 case kpidMainSubfile: prop = (UInt32)0; break;
60 case kpidPhySize: if (!_sizes.IsEmpty()) prop = _sizes[0]; break;
61 case kpidTotalPhySize: prop = _totalSize; break;
62 case kpidNumVolumes: prop = (UInt32)_streams.Size(); break;
64 prop.Detach(value);
137 NCOM::CPropVariant prop; local
138 RINOK(volumeCallback->GetProperty(kpidName, &prop));
139 if (prop.vt != VT_BSTR)
141 name = prop.bstrVal;
278 NCOM::CPropVariant prop; local
    [all...]
  /external/lzma/CPP/7zip/Common/
MethodProps.cpp 26 HRESULT PROPVARIANT_to_bool(const PROPVARIANT &prop, bool &dest)
28 switch (prop.vt)
31 case VT_BOOL: dest = (prop.boolVal != VARIANT_FALSE); return S_OK;
32 case VT_BSTR: return StringToBool(prop.bstrVal, dest) ? S_OK : E_INVALIDARG;
45 HRESULT ParsePropToUInt32(const UString &name, const PROPVARIANT &prop, UInt32 &resValue)
51 if (prop.vt == VT_UI4)
55 resValue = prop.ulVal;
58 if (prop.vt != VT_EMPTY)
69 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads)
73 switch (prop.vt)
154 CProp &prop = Props.AddNew(); local
202 CProp prop; local
348 CProp prop; local
416 CProp prop; local
    [all...]
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.cpp 73 const PROPVARIANT &prop = props[i]; local
82 if (prop.vt != VT_UI4)
84 UInt32 v = prop.ulVal;
93 if (prop.vt != VT_UI4)
95 relatLim = prop.ulVal;
  /external/lzma/CPP/7zip/UI/Common/
Extract.cpp 203 NCOM::CPropVariant prop; local
204 if (archive->GetArchiveProperty(kpidPhySize, &prop) == S_OK)
205 ConvertPropVariantToUInt64(prop, stdInProcessed);

Completed in 2332 milliseconds

1 2 3 45 6 7 8 91011>>