/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
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...] |
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...] |
VNodeBuilder.java | 125 propNode.propValue = ""; 133 propNode.propValue = ""; 136 propNode.propValue = listToString(propNode.propValue_vector);
|
/external/opencv3/modules/videoio/src/ |
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...] |
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;
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPMeta.java | 187 * @param propValue the value for the property (only leaf properties have a value). 199 Object propValue, 208 * @param propValue the value for the property 214 Object propValue) throws XMPException; 230 * @param itemValue the new value of the array item. Has the same usage as propValue in 272 * propValue in <code>setProperty()</code>. 320 * @param itemValue the value of the array item. Has the same usage as propValue in getProperty. 361 * Has the same usage as propValue in getProperty. 411 * value of the qualifier, if the qualifier has a value. Has the same usage as propValue [all...] |
/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/deqp/modules/gles31/functional/ |
es31fProgramInterfaceQueryTestCase.cpp | 173 virtual void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const = 0; 226 void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const; 227 virtual void validateSingleVariable (const std::vector<VariablePathComponent>& path, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const = 0; 228 virtual void validateBuiltinVariable (const std::string& resource, glw::GLint propValue, const std::string& implementationName) const; 242 void SingleVariableValidator::validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const 256 validateSingleVariable(path, resource, propValue, implementationName); 264 validateBuiltinVariable(resource, propValue, implementationName); 273 void SingleVariableValidator::validateBuiltinVariable (const std::string& resource, glw::GLint propValue, const std::string& implementationName) const 276 DE_UNREF(propValue); 286 void validate (const ProgramInterfaceDefinition::Program* program, const std::string& resource, glw::GLint propValue, const std::string& implementationName) const [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPMetaImpl.java | 768 public void setPropertyBoolean(String schemaNS, String propName, boolean propValue, 771 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, options); 778 public void setPropertyBoolean(String schemaNS, String propName, boolean propValue) 781 setProperty(schemaNS, propName, propValue ? TRUESTR : FALSESTR, null); 797 public void setPropertyInteger(String schemaNS, String propName, int propValue, 800 setProperty(schemaNS, propName, new Integer(propValue), options); 807 public void setPropertyInteger(String schemaNS, String propName, int propValue) 810 setProperty(schemaNS, propName, new Integer(propValue), null); 826 public void setPropertyLong(String schemaNS, String propName, long propValue, 829 setProperty(schemaNS, propName, new Long(propValue), options) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ISub.aidl | 175 void setSubscriptionProperty(int subId, String propKey, String propValue);
|
/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);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntry.java | [all...] |
/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))
|
/libcore/ojluni/src/main/java/java/security/ |
Security.java | 807 String propValue = getProviderProperty(key, prov); 809 if (propValue == null) { [all...] |
/external/v8/test/webkit/ |
for-in-var-scope.js | 36 object.propName = "propValue";
|
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/ |
maven-resources-plugin-2.4.3.jar | |
/external/pdfium/fpdfsdk/src/javascript/ |
JS_Define.h | 115 CJS_PropValue propValue(CJS_Value(pRuntime, value, CJS_Value::VT_unknown)); 116 propValue.StartSetting(); 117 if (!(pObj->*M)(pContext, propValue, sError)) { 408 CJS_PropValue PropValue(CJS_Value(pRuntime, value, CJS_Value::VT_unknown)); 409 PropValue.StartSetting(); 410 if (!pObj->DoProperty(pContext, propname.c_str(), PropValue, sError)) {
|
/external/owasp/sanitizer/empiricism/ |
html-containment.js | 177 var propValue = v[k]; 178 if ((propValue != null && typeof propValue == 'object')
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
SubscriptionControllerMock.java | 271 public void setSubscriptionProperty(int subId, String propKey, String propValue) {
|
/frameworks/base/telephony/java/android/telephony/ |
SubscriptionManager.java | [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;
|
/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...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/shared/maven-filtering/1.0-beta-4/ |
maven-filtering-1.0-beta-4.jar | |
/hardware/libhardware_legacy/audio/ |
AudioPolicyManagerBase.cpp | [all...] |