HomeSort by relevance Sort by last modified time
    Searched refs:valueName (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 139 * @param valueName the name of the argument to use if the check fails
145 public static float checkArgumentFinite(final float value, final String valueName) {
147 throw new IllegalArgumentException(valueName + " must not be NaN");
149 throw new IllegalArgumentException(valueName + " must not be infinite");
164 * @param valueName the name of the argument to use if the check fails
171 String valueName) {
173 throw new IllegalArgumentException(valueName + " must not be NaN");
177 "%s is out of range of [%f, %f] (too low)", valueName, lower, upper));
181 "%s is out of range of [%f, %f] (too high)", valueName, lower, upper));
193 * @param valueName the name of the argument to use if the check fail
    [all...]
XmlUtils.java     [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
Preconditions.java 132 * @param valueName the name of the argument to use if the check fails
139 final String valueName) {
141 throw new NullPointerException(valueName + " must not be null");
148 String.format("%s[%d] must not be null", valueName, ctr));
160 * @param valueName the name of the argument to use if the check fails.
168 final String valueName) {
170 throw new NullPointerException(valueName + " must not be null");
173 throw new IllegalArgumentException(valueName + " is empty");
  /external/lzma/CPP/Windows/
Registry.h 13 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
48 LONG SetValue(LPCTSTR valueName, UInt32 value);
49 LONG SetValue(LPCTSTR valueName, bool value);
50 LONG SetValue(LPCTSTR valueName, LPCTSTR value);
51 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
59 LONG SetValue_Strings(LPCTSTR valueName, const UStringVector &strings);
60 LONG GetValue_Strings(LPCTSTR valueName, UStringVector &strings);
62 LONG SetKeyValue(LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
Registry.cpp 170 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value)
176 res = key.SetValue(valueName, value);
180 LONG CKey::SetKeyValue(LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value)
186 res = key.SetValue(valueName, value);
324 LONG CKey::SetValue_Strings(LPCTSTR valueName, const UStringVector &strings)
339 return SetValue(valueName, buffer, numChars * sizeof(wchar_t));
342 LONG CKey::GetValue_Strings(LPCTSTR valueName, UStringVector &strings)
347 LONG res = QueryValue(valueName, buffer, dataSize);
  /external/deqp/modules/internal/
ditBuildInfoTests.cpp 93 BuildInfoStringCase (tcu::TestContext& testCtx, const char* name, const char* valueName, const char* value)
94 : tcu::TestCase (testCtx, name, valueName)
95 , m_valueName (valueName)
127 const char* valueName = m_getString(m_value);
128 const bool isOk = valueName != DE_NULL;
129 std::string logValue = valueName ? std::string(valueName) : de::toString(m_value);
  /external/chromium_org/remoting/webapp/
l10n.js 81 var valueName = 'i18n-value-name-' + j;
84 } else if (element.hasAttribute(valueName)) {
85 var name = element.getAttribute(valueName);
  /external/deqp/modules/glshared/
glsShaderLibraryCase.cpp 830 const char* const valueName = val.valueName.c_str();
866 string attribName = attribPrefix + valueName;
899 const char* const valueName = val.valueName.c_str();
904 string refName = string("ref_") + valueName;
910 setUniformValue(gl, pipelineProgramIDs, valueName, val, arrayNdx, m_testCtx.getLog());
    [all...]
glsShaderConstExprTests.cpp 90 shaderOutput[0].values[0].valueName = "out0";
glsShaderLibraryCase.hpp 88 std::string valueName;
  /external/clang/lib/Driver/
WindowsToolChain.cpp 89 static bool getSystemRegistryString(const char *keyPath, const char *valueName,
169 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
187 lResult = RegQueryValueEx(hKey, valueName, NULL, &valueType,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
AdtStartup.java 189 final String valueName = "Path"; //$NON-NLS-1$
192 Pattern.compile("^\\s+" + valueName + "\\s+REG_SZ\\s+(.*)$");//$NON-NLS-1$ //$NON-NLS-2$
199 "reg", "query", key, "/v", valueName //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp 252 static const AtomicString& valueName(CSSValueID valueID)
945 return valueName(m_value.valueID);
964 return valueName(m_value.valueID);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureStateQueryTests.cpp 231 TextureWrapCase (Context& context, TexParamVerifier* verifier, const char* name, const char* description, GLenum textureTarget, GLenum valueName)
233 , m_valueName (valueName)
  /external/chromium_org/third_party/icu/source/common/
uniset_props.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureStateQueryTests.cpp 260 TextureSwizzleCase (Context& context, TexParamVerifier* verifier, const char* name, const char* description, GLenum textureTarget, GLenum valueName, GLenum initialValue)
262 , m_valueName (valueName)
303 TextureWrapCase (Context& context, TexParamVerifier* verifier, const char* name, const char* description, GLenum textureTarget, GLenum valueName)
305 , m_valueName (valueName)
es3fSamplerStateQueryTests.cpp 227 SamplerWrapCase (Context& context, SamplerParamVerifier* verifier, const char* name, const char* description, GLenum valueName)
229 , m_valueName (valueName)
  /external/fonttools/Lib/fontTools/ttLib/tables/
otBase.py 817 def toXML(self, xmlWriter, font, valueName, attrs=None):
832 xmlWriter.begintag(valueName, simpleItems)
837 xmlWriter.endtag(valueName)
840 xmlWriter.simpletag(valueName, simpleItems)
  /external/icu/icu4c/source/common/
uniset_props.cpp     [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
TemplateTranslator.java 762 String valueName = generateTempVariable("argValue");
763 java.writeStatement(declare(Type.STRING, valueName, value));
764 argValues[i] = JavaExpression.symbol(value.getType(), valueName);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm     [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 164 protected function htmlTag($content, $tag, $attrName, $attrValue, $valueName)
166 preg_match_all("#<{$tag}[^>]*$attrName=['\"].*?$attrValue.*?['\"][^>]*$valueName=['\"](.+?)['\"][^>]*/?>#i", $content, $matches1);
167 preg_match_all("#<{$tag}[^>]*$valueName=['\"](.+?)['\"][^>]*$attrName=['\"].*?$attrValue.*?['\"][^>]*/?>#i", $content, $matches2);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 442 private static void assertValueNotNull(String valueName, Object value) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp     [all...]
  /prebuilts/devtools/tools/lib/
ddmuilib.jar 

Completed in 2062 milliseconds

1 2