HomeSort by relevance Sort by last modified time
    Searched refs:prop (Results 151 - 175 of 569) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_8/src/eap_server/
ikev2.c 121 struct ikev2_proposal_data *prop,
185 prop->encr = transform_id;
191 prop->prf = transform_id;
196 prop->integ = transform_id;
201 prop->dh = transform_id;
210 struct ikev2_proposal_data *prop,
248 if (p->proposal_num != prop->proposal_num) {
249 if (p->proposal_num == prop->proposal_num + 1)
250 prop->proposal_num = p->proposal_num;
286 int tlen = ikev2_parse_transform(data, prop, ppos, pend)
305 struct ikev2_proposal_data prop; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 310 AnimationPropertyWrapperBase(CSSPropertyID prop)
311 : m_prop(prop)
358 PropertyWrapperGetter(CSSPropertyID prop, T (RenderStyle::*getter)() const)
359 : AnimationPropertyWrapperBase(prop)
382 PropertyWrapper(CSSPropertyID prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T))
383 : PropertyWrapperGetter<T>(prop, getter)
400 RefCountedPropertyWrapper(CSSPropertyID prop, T* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<T>))
401 : PropertyWrapperGetter<T*>(prop, getter)
418 PropertyWrapperClipPath(CSSPropertyID prop, ClipPathOperation* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ClipPathOperation>))
419 : RefCountedPropertyWrapper<ClipPathOperation>(prop, getter, setter
    [all...]
CompositeAnimation.cpp 97 CSSPropertyID prop = anim->property(); local
101 // Handle both the 'all' and single property cases. For the single prop case, we make only one pass
107 prop = CSSPropertyAnimation::getPropertyAtIndex(propertyIndex, isShorthand);
113 ASSERT(prop >= firstCSSProperty && prop < (firstCSSProperty + numCSSProperties));
118 RefPtr<KeyframeAnimation> keyframeAnim = getAnimationForProperty(prop);
121 // See if there is a current transition for this prop
122 ImplicitAnimation* implAnim = m_transitions.get(prop);
140 if (!implAnim->isTargetPropertyEqual(prop, targetStyle)) {
143 if (CSSPropertyAnimation::animationOfPropertyIsAccelerated(prop) && implAnim->isAccelerated())
    [all...]
  /external/chromium_org/v8/test/intl/date-format/
property-override.js 50 for (var prop in options) {
51 if (options.hasOwnProperty(prop)) {
52 properties.push(prop);
64 properties.forEach(function(prop) {
65 assertFalse(expectedProperties.indexOf(prop) === -1);
  /external/chromium_org/v8/test/intl/number-format/
property-override.js 52 for (var prop in options) {
53 if (options.hasOwnProperty(prop)) {
54 properties.push(prop);
68 properties.forEach(function(prop) {
69 assertFalse(expectedProperties.indexOf(prop) === -1);
  /external/openfst/src/include/fst/script/
info-impl.h 305 uint64 prop = 1; local
306 for (int i = 0; i < 64; ++i, prop <<= 1) {
307 if (prop & kBinaryProperties) {
309 if (fstinfo.Properties() & prop) value = 'y';
312 } else if (prop & kPosTrinaryProperties) {
314 if (fstinfo.Properties() & prop) value = 'y';
315 else if (fstinfo.Properties() & prop << 1) value = 'n';
  /external/ipsec-tools/src/racoon/
remoteconf.c 514 struct isakmpsa *prop = p->proposal; local
588 while (prop) {
592 prop->prop_no, prop->trns_no,
593 saddr2str(prop->rmconf->remote));
596 (long)prop->lifetime);
598 prop->lifebyte);
600 alg_oakley_dhdef_name(prop->dh_group));
602 alg_oakley_encdef_name(prop->enctype));
604 alg_oakley_hashdef_name(prop->hashtype))
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 362 CProp prop; local
363 prop.Id = NCoderPropID::kAlgorithm;
364 prop.Value = kAlgorithmForBCJ2_LZMA;
365 methodFull.Props.Add(prop);
368 CProp prop; local
369 prop.Id = NCoderPropID::kMatchFinder;
370 prop.Value = kMatchFinderForBCJ2_LZMA;
371 methodFull.Props.Add(prop);
374 CProp prop; local
375 prop.Id = NCoderPropID::kDictionarySize;
380 CProp prop; local
386 CProp prop; local
    [all...]
  /external/lzma/CPP/Windows/
PropVariant.cpp 115 static HRESULT MyPropVariantClear(PROPVARIANT *prop)
117 switch(prop->vt)
135 prop->vt = VT_EMPTY;
136 prop->wReserved1 = 0;
139 return ::VariantClear((VARIANTARG *)prop);
  /external/openfst/src/include/fst/
test-properties.h 52 uint64 prop = 1; local
53 for (int i = 0; i < 64; ++i, prop <<= 1)
54 if (prop & incompat_props)
56 << ": props1 = " << (props1 & prop ? "true" : "false")
57 << ", props2 = " << (props2 & prop ? "true" : "false");
  /external/qemu/android/avd/
util.c 181 /* Retrieves the value of a given system property defined in a .prop
244 p = bufprint(temp, end, "%s/system/build.prop", androidOut);
333 char* prop = _getBuildProperty(androidOut, "ro.adb.qemud"); local
334 if (prop != NULL) {
337 val = strtol(prop, &end, 10);
339 D("Invalid ro.adb.qemud build property: '%s'", prop);
344 AFREE(prop);