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

1 2

  /libcore/luni/src/main/java/javax/xml/xpath/
XPathVariableResolver.java 41 * <p>If <code>variableName</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
43 * @param variableName The <code>QName</code> of the variable name.
45 * @return The variables value, or <code>null</code> if no variable named <code>variableName</code>
48 * @throws NullPointerException If <code>variableName</code> is <code>null</code>.
50 public Object resolveVariable(QName variableName);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GenerateProgramPort.java 30 String variableName() default "";
Program.java 35 public abstract void setHostValue(String variableName, Object value);
37 public abstract Object getHostValue(String variableName);
NativeProgram.java 126 public void setHostValue(String variableName, Object value) {
134 if (!callNativeSetValue(variableName, value.toString())) {
135 throw new RuntimeException("Error setting native value for variable '" + variableName + "'!");
140 public Object getHostValue(String variableName) {
148 return callNativeGetValue(variableName);
ShaderProgram.java 132 public void setHostValue(String variableName, Object value) {
133 if (!setUniformValue(variableName, value)) {
135 variableName + "'!");
140 public Object getHostValue(String variableName) {
141 return getUniformValue(variableName);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8JavaScriptCallFrameCustom.cpp 56 String variableName = toWebCoreStringWithUndefinedOrNullCheck(args[1]);
58 v8SetReturnValue(args, impl->setVariableValue(scopeIndex, variableName, newValue));
V8InjectedScriptHostCustom.cpp 359 String variableName = toWebCoreStringWithUndefinedOrNullCheck(args[2]);
364 v8SetReturnValue(args, debugServer.setFunctionVariableValue(functionValue, scopeIndex, variableName, newValue));
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptExterns.js 115 * @param {string} variableName
118 InjectedScriptHostClass.prototype.setFunctionVariableValue = function(fun, scopeNumber, variableName, newValue) { }
153 * @param {string} variableName
156 JavaScriptCallFrame.prototype.setVariableValue = function(scopeNumber, variableName, newValue) {}
InjectedScriptHost.idl 55 [Custom] any setFunctionVariableValue(any functionObject, int scopeIndex, DOMString variableName, any newValue);
JavaScriptCallFrame.idl 42 [Custom] any setVariableValue(long scopeIndex, DOMString variableName, any newValue);
JavaScriptCallFrame.h 65 v8::Handle<v8::Value> setVariableValue(int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
InjectedScript.h 81 void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
JavaScriptCallFrame.cpp 148 v8::Handle<v8::Value> JavaScriptCallFrame::setVariableValue(int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue)
154 v8String(variableName, m_isolate),
InjectedScript.cpp 135 void InjectedScript::setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr)
150 function.appendArgument(variableName);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkEnvSupplier.java 108 public IBuildEnvironmentVariable getVariable(String variableName,
111 return mEnvVars.get(variableName);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 96 DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValue)
101 return DebuggerScript._setScopeVariableValue(mirror, scopeIndex, variableName, newValue);
104 DebuggerScript._setScopeVariableValue = function(scopeHolder, scopeIndex, variableName, newValue)
109 scopeMirror.setVariableValue(variableName, newValue);
345 function setVariableValue(scopeNumber, variableName, newValue)
347 return DebuggerScript._setScopeVariableValue(frameMirror, scopeNumber, variableName, newValue);
ScriptDebugServer.h 97 v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 206 String variableName = variableLocator.getVariableName(node.getVariable());
209 Data variable = dataContext.findVariable(variableName, true);
231 String variableName = variableLocator.getVariableName(node.getVariable());
232 Data variable = dataContext.findVariable(variableName, false);
658 private void setTempVariable(String variableName, Value value) {
663 dataContext.createLocalVariableByPath(variableName, ((VariableValue) value).getName());
665 dataContext.createLocalVariableByValue(variableName, value.asString(), value.getEscapeMode());
ExpressionEvaluator.java 95 String variableName = variableLocator.getVariableName(node.getVariable());
96 setResult(Value.variableValue(variableName, context));
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 328 * @param variableName
335 String variableName, IClassDefinition declaration) {
336 assert variableName != null;
346 if (variableName.equals(typeVariable.getName())) {
350 return getDeclarationOfTypeVariable(variableName, declaration
  /frameworks/base/core/java/android/os/
Environment.java 758 static File getDirectory(String variableName, String defaultPath) {
759 String path = System.getenv(variableName);
763 private static String getCanonicalPathOrNull(String variableName) {
764 String path = System.getenv(variableName);
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 197 public static Value asVariableValue(String variableName, DataContext context) {
198 return Value.variableValue(variableName, context);
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 291 public Object resolveVariable(QName variableName) {
292 return element.getAttribute("var:" + variableName.getLocalPart());
  /external/javassist/src/main/javassist/compiler/
Javac.java 283 gen.recordVariable(va.descriptor(i), va.variableName(i),
312 gen.recordVariable(va.descriptor(i), va.variableName(i),
  /external/javassist/src/main/javassist/bytecode/
LocalVariableAttribute.java 212 public String variableName(int i) {

Completed in 612 milliseconds

1 2