HomeSort by relevance Sort by last modified time
    Searched defs:propValue (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNode.java 44 public String propValue;
48 * Used when propValue is encoded by something like BASE64, QUOTED-PRINTABLE, etc.
69 propValue = "";
77 String propName, String propValue, List<String> propValue_vector,
85 if (propValue != null) {
86 this.propValue = propValue;
88 this.propValue = "";
143 if (!propValue.equals(node.propValue)) {
    [all...]
PropertyNodesVerifierElem.java 62 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue) {
63 return addExpectedNodeWithOrder(propName, propValue, null, null, null, null, null);
67 String propName, String propValue, ContentValues contentValues) {
68 return addExpectedNodeWithOrder(propName, propValue, null,
79 String propName, String propValue, List<String> propValueList) {
80 return addExpectedNodeWithOrder(propName, propValue, propValueList, null,
86 final String propValue = concatinateListWithSemiColon(propValueList);
87 return addExpectedNodeWithOrder(propName, propValue.toString(), propValueList,
91 public PropertyNodesVerifierElem addExpectedNodeWithOrder(String propName, String propValue,
93 return addExpectedNodeWithOrder(propName, propValue, null
    [all...]
  /hardware/libhardware/modules/input/evdev/
InputDevice.cpp 99 const char* propValue = prop.getValue();
100 if (propValue == nullptr) return false;
103 int value = std::strtol(propValue, &end, 10);
105 ALOGW("Expected boolean for property %s; value=%s", prop.getKey(), propValue);
  /libcore/ojluni/src/main/java/sun/nio/ch/
ThreadPool.java 145 String propValue = AccessController.doPrivileged(new
147 if (propValue != null) {
149 return Integer.parseInt(propValue);
159 String propValue = AccessController.doPrivileged(new
161 if (propValue != null) {
164 .forName(propValue, true, ClassLoader.getSystemClassLoader());
  /external/lzma/CPP/7zip/Common/
MethodProps.cpp 346 NCOM::CPropVariant propValue;
348 propValue = value;
354 propValue = res;
360 propValue = number;
362 propValue = value;
364 if (!ConvertProperty(propValue, nameToPropID.VarType, prop.Value))
  /external/opencv3/modules/videoio/src/
cap_intelperc.cpp 559 double propValue = 0;
563 propValue = m_imageStream.getProperty(purePropIdx);
567 propValue = m_depthStream.getProperty(purePropIdx);
571 propValue = m_depthStream.getProperty(purePropIdx);
573 return propValue;
cap_openni2.cpp 400 double propValue = 0;
408 propValue = getImageGeneratorProperty( purePropIdx );
412 propValue = getDepthGeneratorProperty( purePropIdx );
416 propValue = getCommonProperty( purePropIdx );
420 return propValue;
423 bool CvCapture_OpenNI2::setProperty( int propIdx, double propValue )
432 isSet = setImageGeneratorProperty( purePropIdx, propValue );
436 isSet = setDepthGeneratorProperty( purePropIdx, propValue );
440 isSet = setCommonProperty( purePropIdx, propValue );
449 double propValue = 0
    [all...]
cap_openni.cpp 776 double propValue = 0;
784 propValue = getImageGeneratorProperty( purePropIdx );
788 propValue = getDepthGeneratorProperty( purePropIdx );
792 propValue = getCommonProperty( purePropIdx );
796 return propValue;
799 bool CvCapture_OpenNI::setProperty( int propIdx, double propValue )
808 isSet = setImageGeneratorProperty( purePropIdx, propValue );
812 isSet = setDepthGeneratorProperty( purePropIdx, propValue );
816 isSet = setCommonProperty( purePropIdx, propValue );
825 double propValue = 0
    [all...]
  /hardware/qcom/audio/msm8909/post_proc/
bass_boost.c 438 char propValue[PROPERTY_VALUE_MAX];
444 if (property_get("audio.safx.pbe.enabled", propValue, NULL)) {
445 pbe_enabled_by_prop = atoi(propValue) ||
446 !strncmp("true", propValue, 4);
577 uint32_t propValue = 0;
598 propValue = atoll(propValueStr);
599 if (propValue != 0) {
600 pbe_app_type = propValue;
  /hardware/qcom/audio/msm8909/hal/audio_extn/
audio_extn.c 482 char propValue[PROPERTY_VALUE_MAX] = {0};
485 if (property_get("audio.pp.asphere.enabled", propValue, "false")) {
486 if (!strncmp("true", propValue, 4))
    [all...]
  /hardware/qcom/audio/msm8909/policy_hal/
AudioPolicyManager.cpp 81 char propValue[PROPERTY_VALUE_MAX];
83 if (property_get("voice.conc.fallbackpath", propValue, NULL)) {
84 if (!strncmp(propValue, "deep-buffer", 11)) {
87 else if (!strncmp(propValue, "fast", 4)) {
92 propValue);
439 char propValue[PROPERTY_VALUE_MAX];
440 if (property_get("audio.offload.disable", propValue, "0")) {
441 if (atoi(propValue) != 0) {
442 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
481 if (property_get("audio.offload.min.duration.secs", propValue, NULL))
    [all...]
  /libcore/ojluni/src/main/java/java/security/
Security.java 807 String propValue = getProviderProperty(key, prov);
809 if (propValue == null) {
    [all...]
  /packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
VehicleNetworkMockedTest.java 471 VehiclePropValue propValue = handler.onPropertyGet(value);
472 return propValue;
  /hardware/libhardware_legacy/audio/
AudioPolicyManagerBase.cpp     [all...]
  /hardware/qcom/audio/msm8909/hal/msm8974/
platform.c     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/
maven-resources-plugin-2.4.3.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerBuilder.java 662 String propValue = projectState.getProperty(MANIFEST_MERGER_PROPERTY);
663 if (propValue != null) {
664 enabled = Boolean.valueOf(propValue);
    [all...]
  /frameworks/av/services/audiopolicy/managerdefault/
AudioPolicyManager.cpp     [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntry.java     [all...]
  /hardware/qcom/audio/msm8909/hal/msm8916/
platform.c     [all...]
  /hardware/ril/reference-ril/
reference-ril.c 554 char propValue[PROP_VALUE_MAX];
556 if (__system_property_get("ro.kernel.qemu", propValue) != 0) {
577 if (__system_property_get(propName, propValue) == 0) {
583 strlcat(dnslist, propValue, dnslist_sz);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/shared/maven-filtering/1.0-beta-4/
maven-filtering-1.0-beta-4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/classworlds/classworlds/1.1/
classworlds-1.1.jar 

Completed in 655 milliseconds

1 2 3 4 5 6 7