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

1 2 3 4

  /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);
  /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);
  /frameworks/rs/api/
gen_runtime.cpp 106 string variableName; // e.g. inX, used both in .rs and .java
616 variableName = "out";
618 variableName += capitalize(specName);
620 variableName += toString(*outputCount);
624 variableName = "in";
626 variableName += capitalize(specName);
628 variableName += toString(*inputCount);
632 rsAllocName = "gAlloc" + capitalize(variableName);
633 javaAllocName = variableName;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.idl 43 [CallWith=ScriptState] any setVariableValue([Default=Undefined] optional long scopeIndex, [TreatUndefinedAs=NullString, Default=Undefined] optional DOMString? variableName, [Default=Undefined] optional any newValue);
JavaScriptCallFrame.h 73 ScriptValue setVariableValue(ScriptState*, int scopeNumber, const String& variableName, const ScriptValue& newValue);
InjectedScriptHost.idl 59 [NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(Function functionObject, long scopeIndex, DOMString variableName, any newValue);
InjectedScript.h 87 void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
JavaScriptCallFrame.cpp 183 ScriptValue JavaScriptCallFrame::setVariableValue(ScriptState* scriptState, int scopeNumber, const String& variableName, const ScriptValue& newValue)
190 v8String(m_isolate, variableName),
InjectedScript.cpp 137 void InjectedScript::setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr)
152 function.appendArgument(variableName);
  /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));
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DebuggerScript.js 116 DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValue)
121 return DebuggerScript._setScopeVariableValue(mirror, scopeIndex, variableName, newValue);
124 DebuggerScript._setScopeVariableValue = function(scopeHolder, scopeIndex, variableName, newValue)
129 scopeMirror.setVariableValue(variableName, newValue);
458 function setVariableValue(scopeNumber, variableName, newValue)
460 return DebuggerScript._setScopeVariableValue(frameMirror, scopeNumber, variableName, newValue);
ScriptDebugServer.h 103 v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
  /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 795 static File getDirectory(String variableName, String defaultPath) {
796 String path = System.getenv(variableName);
800 private static String getCanonicalPathOrNull(String variableName) {
801 String path = System.getenv(variableName);
    [all...]
  /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) {
  /external/deqp/modules/glshared/
glsAttributeLocationTests.cpp 148 const string variableName(attrib.getName() + (attrib.getArraySize() != Attribute::NOT_ARRAY ? "[" + de::toString(id) + "]" : ""));
156 src << "vec4(" << variableName << ".xy, " << variableName << ".yx)";
162 src << "vec4(" << variableName << ".xyz, " << variableName << ".x)";
166 src << "vec4(" << variableName << ")";
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
ProgramBinary.cpp     [all...]

Completed in 467 milliseconds

1 2 3 4