Searched refs:variableName (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.idl43 [CallWith=ScriptState] any setVariableValue([Default=Undefined] optional long scopeIndex, [TreatUndefinedAs=NullString, Default=Undefined] optional DOMString? variableName, [Default=Undefined] optional any newValue);
H A DInjectedScriptHost.idl59 [NotEnumerable, Unforgeable, Custom] any setFunctionVariableValue(Function functionObject, long scopeIndex, DOMString variableName, any newValue);
H A DJavaScriptCallFrame.h73 ScriptValue setVariableValue(ScriptState*, int scopeNumber, const String& variableName, const ScriptValue& newValue);
H A DInjectedScript.h87 void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
H A DJavaScriptCallFrame.cpp183 ScriptValue JavaScriptCallFrame::setVariableValue(ScriptState* scriptState, int scopeNumber, const String& variableName, const ScriptValue& newValue) argument
190 v8String(m_isolate, variableName),
H A DInjectedScript.cpp137 void InjectedScript::setVariableValue(ErrorString* errorString, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr) argument
152 function.appendArgument(variableName);
H A DInjectedScriptSource.js854 * @param {string} variableName
858 setVariableValue: function(topCallFrame, callFrameId, functionObjectId, scopeNumber, variableName, newValueJsonString)
867 callFrame.setVariableValue(scopeNumber, variableName, resolvedValue)
873 InjectedScriptHost.setFunctionVariableValue(func, scopeNumber, variableName, resolvedValue);
H A DInspectorDebuggerAgent.cpp1141 void InspectorDebuggerAgent::setVariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<JSONObject>& newValue, const String* callFrameId, const String* functionObjectId) argument
1166 injectedScript.setVariableValue(errorString, m_currentCallStack, callFrameId, functionObjectId, scopeNumber, variableName, newValueString);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDebuggerScript.js116 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);
H A DScriptDebugServer.h103 v8::Handle<v8::Value> setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue);
H A DScriptDebugServer.cpp631 v8::Handle<v8::Value> ScriptDebugServer::setFunctionVariableValue(v8::Handle<v8::Value> functionValue, int scopeNumber, const String& variableName, v8::Handle<v8::Value> newValue) argument
640 v8String(debuggerContext->GetIsolate(), variableName),
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DTemplateInterpreter.java206 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) { argument
663 dataContext.createLocalVariableByPath(variableName, ((VariableValue) value).getName());
665 dataContext.createLocalVariableByValue(variableName, value.asString(), value.getEscapeMode());
H A DExpressionEvaluator.java95 String variableName = variableLocator.getVariableName(node.getVariable());
96 setResult(Value.variableValue(variableName, context));
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DBaseCompiledTemplate.java197 public static Value asVariableValue(String variableName, DataContext context) { argument
198 return Value.variableValue(variableName, context);
/external/javassist/src/main/javassist/compiler/
H A DJavac.java283 gen.recordVariable(va.descriptor(i), va.variableName(i),
312 gen.recordVariable(va.descriptor(i), va.variableName(i),
/external/javassist/src/main/javassist/bytecode/
H A DLocalVariableAttribute.java212 public String variableName(int i) { method in class:LocalVariableAttribute
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.cpp148 const string variableName(attrib.getName() + (attrib.getArraySize() != Attribute::NOT_ARRAY ? "[" + de::toString(id) + "]" : ""));
156 src << "vec4(" << variableName << ".xy, " << variableName << ".yx)"; local
162 src << "vec4(" << variableName << ".xyz, " << variableName << ".x)"; local
166 src << "vec4(" << variableName << ")"; local
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DProgramBinary.cpp1761 bool ProgramBinary::linkValidateVariablesBase(InfoLog &infoLog, const std::string &variableName, const sh::ShaderVariable &vertexVariable,
1766 infoLog.append("Types for %s differ between vertex and fragment shaders", variableName.c_str());
1771 infoLog.append("Array sizes for %s differ between vertex and fragment shaders", variableName.c_str());
1776 infoLog.append("Precisions for %s differ between vertex and fragment shaders", variableName.c_str());
1782 infoLog.append("Structure lengths for %s differ between vertex and fragment shaders", variableName.c_str());
1794 memberIndex, variableName.c_str(),
1799 const std::string memberName = variableName.substr(0, variableName.length() - 1) + "." +
H A DProgramBinary.h216 const std::string &variableName,
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DDynamicHLSL.cpp829 const std::string &variableName = "out_" + outputLocation.name; local
836 outputKeyVariable.name = variableName + elementString;
837 outputKeyVariable.source = variableName + ArrayString(outputLocation.element);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InjectedScriptHostCustom.cpp384 String variableName = toCoreStringWithUndefinedOrNullCheck(info[2]); local
389 v8SetReturnValue(info, debugServer.setFunctionVariableValue(functionValue, scopeIndex, variableName, newValue));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.expressions_3.4.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp925 void writeUniformComparisons (std::ostringstream& dst, const vector<BasicUniform>& basicUniforms, const char* variableName) const;
1144 void UniformCase::writeUniformComparisons (std::ostringstream& dst, const vector<BasicUniform>& basicUniforms, const char* const variableName) const
1152 dst << "\t" << variableName << " *= "; local
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DOutputHLSL.cpp344 const TString &variableName = outputVariableIt->first; local
347 out << "static " + TypeString(variableType) + " out_" + variableName + ArrayString(variableType) +
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...

Completed in 852 milliseconds

12