/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | DebuggerScript.js | 96 DebuggerScript.setFunctionVariableValue = function(functionValue, scopeIndex, variableName, newValu… argument 101 return DebuggerScript._setScopeVariableValue(mirror, scopeIndex, variableName, newValue); 104 DebuggerScript._setScopeVariableValue = function(scopeHolder, scopeIndex, variableName, newValue) argument 109 scopeMirror.setVariableValue(variableName, newValue); 362 function setVariableValue(scopeNumber, variableName, newValue) argument 364 … return DebuggerScript._setScopeVariableValue(frameMirror, scopeNumber, variableName, newValue);
|
D | ScriptDebugServer.h | 96 …e(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8:…
|
D | ScriptDebugServer.cpp | 542 …e(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8:… in setFunctionVariableValue() argument 551 v8String(debuggerContext->GetIsolate(), variableName), in setFunctionVariableValue()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InjectedScriptExterns.js | 111 …stClass.prototype.setFunctionVariableValue = function(fun, scopeNumber, variableName, newValue) { } argument 149 JavaScriptCallFrame.prototype.setVariableValue = function(scopeNumber, variableName, newValue) {} argument
|
D | JavaScriptCallFrame.h | 69 …ScriptValue setVariableValue(int scopeNumber, const String& variableName, const ScriptValue& newVa…
|
D | JavaScriptCallFrame.cpp | 169 ScriptValue JavaScriptCallFrame::setVariableValue(int scopeNumber, const String& variableName, cons… in setVariableValue() argument 175 v8String(m_isolate, variableName), in setVariableValue()
|
D | InjectedScript.h | 81 …pt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& …
|
D | InjectedScript.cpp | 135 …pt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& … in setVariableValue() argument 150 function.appendArgument(variableName); in setVariableValue()
|
D | JavaScriptCallFrame.idl | 42 …g, TreatUndefinedAs=NullString, Default=Undefined] optional DOMString variableName, [Default=Undef…
|
D | InjectedScriptHost.idl | 55 …setFunctionVariableValue(any functionObject, int scopeIndex, DOMString variableName, any newValue);
|
D | InjectedScriptSource.js | 701 …e: function(topCallFrame, callFrameId, functionObjectId, scopeNumber, variableName, newValueJsonSt… argument 729 setter(scopeNumber, variableName, resolvedValue);
|
D | InspectorDebuggerAgent.cpp | 892 …ariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<J… in setVariableValue() argument 917 …ring, m_currentCallStack, callFrameId, functionObjectId, scopeNumber, variableName, newValueString… in setVariableValue()
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | TemplateInterpreter.java | 206 String variableName = variableLocator.getVariableName(node.getVariable()); in caseASetCommand() local 209 Data variable = dataContext.findVariable(variableName, true); in caseASetCommand() 231 String variableName = variableLocator.getVariableName(node.getVariable()); in caseANameCommand() local 232 Data variable = dataContext.findVariable(variableName, false); in caseANameCommand() 658 private void setTempVariable(String variableName, Value value) { in setTempVariable() argument 663 dataContext.createLocalVariableByPath(variableName, ((VariableValue) value).getName()); in setTempVariable() 665 dataContext.createLocalVariableByValue(variableName, value.asString(), value.getEscapeMode()); in setTempVariable()
|
D | ExpressionEvaluator.java | 95 String variableName = variableLocator.getVariableName(node.getVariable()); in caseAVariableExpression() local 96 setResult(Value.variableValue(variableName, context)); in caseAVariableExpression()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | BaseCompiledTemplate.java | 197 public static Value asVariableValue(String variableName, DataContext context) { in asVariableValue() argument 198 return Value.variableValue(variableName, context); in asVariableValue()
|
/external/javassist/src/main/javassist/compiler/ |
D | Javac.java | 283 gen.recordVariable(va.descriptor(i), va.variableName(i), in recordLocalVariables() 312 gen.recordVariable(va.descriptor(i), va.variableName(i), in recordParamNames()
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
D | code_generator_v8.pm | 3465 my $variableName = shift; 3471 my $unionMemberVariable = $variableName . $i; 3478 return "!${variableName}"; 3480 return "${variableName}.isNull()"; 3482 return "${variableName}.isNull()"; 5391 my $variableName = shift; 5401 …$code .= $indent . "V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID($nativeType, $variableName, $native_value… 5403 $code .= $indent . "$nativeType $variableName($native_value, true);\n"; 5406 …$code .= $indent . "V8TRYCATCH_WITH_TYPECHECK_VOID($nativeType, $variableName, $native_value, $get… 5408 $code .= $indent . "V8TRYCATCH_VOID($nativeType, $variableName, $native_value);\n"; [all …]
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
D | V8InjectedScriptHostCustom.cpp | 368 String variableName = toCoreStringWithUndefinedOrNullCheck(info[2]); in setFunctionVariableValueMethodCustom() local 373 …lue(info, debugServer.setFunctionVariableValue(functionValue, scopeIndex, variableName, newValue)); in setFunctionVariableValueMethodCustom()
|
/external/javassist/src/main/javassist/bytecode/ |
D | LocalVariableAttribute.java | 212 public String variableName(int i) { in variableName() method in LocalVariableAttribute
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSPrimitiveValue.cpp | 1123 AtomicString variableName(m_value.string); in customSerializeResolvingVariables() local 1124 if (variables.contains(variableName)) in customSerializeResolvingVariables() 1125 return variables.get(variableName); in customSerializeResolvingVariables()
|
D | CSSParser-in.cpp | 3033 AtomicString variableName = name.atomicSubstring(prefixLength, name.length() - prefixLength); in storeVariableDeclaration() local 3045 …addProperty(CSSPropertyVariable, CSSVariableValue::create(variableName, builder.toString()), impor… in storeVariableDeclaration()
|