OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:variableValue
(Results
1 - 6
of
6
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java
24
import com.google.clearsilver.jsilver.values.
VariableValue
;
37
if (value instanceof
VariableValue
) {
38
VariableValue
variableValue
= (
VariableValue
) value;
39
Data variable =
variableValue
.getReference();
41
return literalValue(variable.getSymlink().getName(),
variableValue
.getEscapeMode(),
42
variableValue
.isPartiallyEscaped());
/external/webkit/Source/WebCore/wml/
WMLVariables.cpp
239
String
variableValue
= pageState->getVariable(variableName);
240
if (
variableValue
.isEmpty())
243
if (containsVariableReference(
variableValue
, isValid)) {
247
variableValue
= substituteVariableReferences(
variableValue
, document, escapeMode);
265
variableValue
= encodeWithURLEscapeSequences(
variableValue
);
268
variableValue
= decodeURLEscapeSequences(
variableValue
);
272
result +=
variableValue
;
[
all
...]
WMLInputElement.cpp
363
String
variableValue
;
367
variableValue
= pageSate->getVariable(nameVariable);
369
if (
variableValue
.isEmpty() || !isConformedToInputMask(
variableValue
)) {
372
variableValue
= val;
374
variableValue
= "";
376
pageSate->storeVariable(nameVariable,
variableValue
);
378
setValue(
variableValue
);
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
ExpressionEvaluator.java
96
setResult(Value.
variableValue
(variableName, context));
TemplateInterpreter.java
61
import com.google.clearsilver.jsilver.values.
VariableValue
;
297
if (value instanceof
VariableValue
) {
298
if (((
VariableValue
) value).getReference() == null) {
377
if (expression instanceof
VariableValue
) {
378
VariableValue
variableValue
= (
VariableValue
) expression;
379
Data parent =
variableValue
.getReference();
381
each(node.getVariable(),
variableValue
.getName(), parent, node.getCommand());
524
//
VariableValue
object
[
all
...]
/external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java
221
public static Value
variableValue
(String name, DataContext dataContext) {
222
return new
VariableValue
(name, dataContext);
Completed in 180 milliseconds