OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:variableName
(Results
1 - 20
of
20
) sorted by null
/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
);
/external/webkit/Source/WebCore/wml/
WMLVariables.cpp
130
String
variableName
= text.substring(nameStartPosition, nameEndPosition - nameStartPosition);
132
int conversionStringStart =
variableName
.find(':');
134
conversionString =
variableName
.substring(conversionStringStart + 1,
variableName
.length() - (conversionStringStart + 1));
135
variableName
=
variableName
.left(conversionStringStart);
138
isValid = isValidVariableName(
variableName
);
201
String
variableName
;
211
variableName
= remainingInput.substring(2, referenceEndPosition - 2);
215
int pos =
variableName
.find(':')
[
all
...]
/system/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
();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt.ndk/src/com/android/ide/eclipse/adt/ndk/internal/build/
NdkEnvSupplier.java
99
public IBuildEnvironmentVariable getVariable(String
variableName
,
102
return mEnvVars.get(
variableName
);
/frameworks/base/core/java/android/os/
Environment.java
460
static File getDirectory(String
variableName
, String defaultPath) {
461
String path = System.getenv(
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));
/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
/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/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
CodeGeneratorTestRunner.pm
417
my ($self, $signature, $
variableName
, $argumentName, $condition) = @_;
434
return "$platformType $
variableName
= $condition && $constructor;" if $condition && $platformType eq "bool";
435
return "$platformType $
variableName
= $condition ? $constructor : $nullValue;" if $condition;
436
return "$platformType $
variableName
= $constructor;";
/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/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm
[
all
...]
/prebuilt/common/ecj/
ecj.jar
/prebuilt/common/tradefed/
tradefed-prebuilt.jar
Completed in 560 milliseconds