OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:variableName
(Results
1 - 25
of
51
) sorted by null
1
2
3
/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
);
Filter.java
607
String varName = generator.
variableName
().isEmpty() ? name
608
: generator.
variableName
();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptExterns.js
108
* @param {string}
variableName
111
InjectedScriptHostClass.prototype.setFunctionVariableValue = function(fun, scopeNumber,
variableName
, newValue) { }
146
* @param {string}
variableName
149
JavaScriptCallFrame.prototype.setVariableValue = function(scopeNumber,
variableName
, newValue) {}
InjectedScriptHost.idl
55
[Custom] any setFunctionVariableValue(any functionObject, int scopeIndex, DOMString
variableName
, any newValue);
JavaScriptCallFrame.idl
42
any setVariableValue([Default=Undefined] optional long scopeIndex, [TreatNullAs=NullString, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString
variableName
, [Default=Undefined] optional any newValue);
JavaScriptCallFrame.h
69
ScriptValue setVariableValue(int scopeNumber, const String&
variableName
, const ScriptValue& 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
169
ScriptValue JavaScriptCallFrame::setVariableValue(int scopeNumber, const String&
variableName
, const ScriptValue& newValue)
175
v8String(m_isolate,
variableName
),
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);
362
function setVariableValue(scopeNumber,
variableName
, newValue)
364
return DebuggerScript._setScopeVariableValue(frameMirror, scopeNumber,
variableName
, newValue);
ScriptDebugServer.h
96
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) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp
368
String
variableName
= toCoreStringWithUndefinedOrNullCheck(info[2]);
373
v8SetReturnValue(info, debugServer.setFunctionVariableValue(functionValue, scopeIndex,
variableName
, newValue));
Completed in 690 milliseconds
1
2
3