HomeSort by relevance Sort by last modified time
    Searched defs:variable (Results 51 - 75 of 209) sorted by null

1 23 4 5 6 7 8 9

  /external/deqp/framework/randomshaders/
rsgVariableManager.cpp 21 * \brief Variable manager.
95 ValueEntry::ValueEntry (const Variable* variable)
96 : m_variable (variable)
97 , m_valueRange (variable->getType())
107 for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); i++)
110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++)
114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char* name)
116 Variable* variable = new Variable(type, storage, name) local
249 Variable* variable = varScope.allocate(type, Variable::STORAGE_LOCAL, name); local
    [all...]
rsgExpression.cpp 51 if ((m_exprFlags & CONST_EXPR) && (entry->getVariable()->getStorage() != Variable::STORAGE_CONST))
147 DE_ASSERT(entry->getVariable()->getStorage() == Variable::STORAGE_UNIFORM);
889 return 0.0f; // Would require creating a new variable
912 // - variable valuerange is made unbound
958 Variable* allocateNewVariable (GeneratorState& state, ConstValueRangeAccess valueRange)
960 Variable* variable = state.getVariableManager().allocate(valueRange.getType()); local
963 state.getVariableManager().setValue(variable, valueRange);
966 static const Variable::Storage storages[] =
968 Variable::STORAGE_CONST
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferNegotiator.java 75 * A static variable to use only offer IBB for file transfer. It is generally recommend to only
76 * set this variable to true for testing purposes as IBB is the backup file transfer method
308 String variable; local
312 variable = it.next().getValue();
313 if (variable.equals(Socks5BytestreamManager.NAMESPACE) && !IBB_ONLY) {
316 else if (variable.equals(InBandBytestreamManager.NAMESPACE)) {
443 String variable; local
447 variable = it.next();
448 if (variable.equals(Socks5BytestreamManager.NAMESPACE) && !IBB_ONLY) {
451 else if (variable.equals(InBandBytestreamManager.NAMESPACE)) {
    [all...]
  /frameworks/base/tools/aidl/
AST.h 67 struct Variable : public Expression
73 Variable();
74 Variable(Type* type, const string& name);
75 Variable(Type* type, const string& name, int dimension);
76 virtual ~Variable();
100 Variable *variable; member in struct:Field
104 Field(int modifiers, Variable* variable);
140 Variable* lvalue
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 155 //test type variable
157 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local
158 assertEquals("T", variable.getName());
159 //test type variable bound
160 assertEquals(1, variable.getUpperBounds().size());
161 IClassReference bound = (IClassReference) variable.getUpperBounds().get(0);
174 //test type variable
176 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local
177 assertEquals("T", variable.getName());
178 //test type variable bound
586 ITypeVariableReference variable = (ITypeVariableReference) parametrizedType.getTypeArguments().get(0); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 59 import org.apache.xpath.operations.Variable;
166 expr = variable(opPos); break;
529 * Compile a variable reference.
533 * @return reference to {@link org.apache.xpath.operations.Variable} instance.
537 protected Expression variable(int opPos) throws TransformerException method in class:Compiler
540 Variable var = new Variable();
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
variables.c 2 * variables.c: Implementation of the variable storage and lookup
127 * insinde an xsl:variable and xsl:param to the lifetime of the
163 * When evaluating "select" expressions of xsl:variable
165 * to the variable itself; otherwise the tragment will be
298 * global variable or a doc acquired via the
558 * Example: The fragment of the variable must not be freed
561 * <xsl:variable name="bar">
563 * </xsl:variable>
576 * Cache or free the variable structure.
638 * First lookup expects the variable name and URI t
1780 xsltStackElemPtr variable; local
2223 xsltStackElemPtr variable = NULL, cur; local
    [all...]
transform.c 174 * Pops all variable values at the given @depth from the stack.
176 * Returns the stored variable value
183 xsltStackElemPtr variable; local
191 variable = ctxt->varsTab[ctxt->varsNr - 1];
192 if (variable->level <= level)
194 if (variable->level >= 0)
195 xsltFreeStackElemList(variable);
208 * variable-stack. Only xsl:with-param items are not freed.
    [all...]
  /external/chromium_org/v8/src/
scopes.cc 22 // When inserting a new variable via Declare(), we rely on the fact that
23 // the handle location remains alive for the duration of that variable
24 // use. Because a Variable holding a handle with the same location exists
42 Variable* VariableMap::Declare(
47 Variable::Kind kind,
53 // The variable has not been declared yet -> insert it.
55 p->value = new(zone()) Variable(scope,
63 return reinterpret_cast<Variable*>(p->value);
67 Variable* VariableMap::Lookup(Handle<String> name) {
73 return reinterpret_cast<Variable*>(p->value)
145 Variable* variable = variables_.Declare(this, local
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 57 "Debug Variable Analysis", false, false)
61 "Debug Variable Analysis", false, false)
100 /// UserValue - A user value is a part of a debug info user variable.
103 /// holds part of a user variable. The part is identified by a byte offset.
106 /// user values are related if they refer to the same variable, or if they are
112 const MDNode *variable; ///< The debug info variable we are part of. member in class:__anon29525::UserValue
113 unsigned offset; ///< Byte offset into variable.
115 DebugLoc dl; ///< The debug location for the variable. This is
144 : variable(var), offset(o), IsIndirect(i), dl(L), leader(this)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11modes.c 549 const char *variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_DISPLAY"); local
550 if ( !variable ) {
551 variable = SDL_getenv("SDL_VIDEO_FULLSCREEN_HEAD");
553 if ( variable ) {
554 desired = SDL_atoi(variable);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FilterGraph.java 107 * Adds a variable to the graph.
111 * @param name the name of the variable.
112 * @param value the value of the variable or null if no value is to be set yet.
113 * @return the VariableSource filter that holds the value of this variable.
248 // Get variable
249 Filter variable = getFilter(varName); local
250 if (variable == null || !(variable instanceof VariableSource)) {
251 throw new IllegalArgumentException("Unknown variable '" + varName + "'!");
254 // Connect variable (and possibly branch) variable to filte
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 112 // SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
115 // SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) )
142 // SimpleCTP.g:13:9: variable
145 variable(); method
203 // $ANTLR start "variable"
204 // SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ;
205 public final void variable() throws RecognitionException { method in class:SimpleCTP
237 // $ANTLR end "variable"
399 // SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ;
402 // SimpleCTP.g:42:5: ( ^( BLOCK ( variable )* ( stat )* )
425 variable(); method
    [all...]
SimpleCParser.java 150 // SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );
172 // SimpleC.g:21:5: ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) )
177 // SimpleC.g:21:9: variable
182 variable2=variable();
303 // $ANTLR start "variable"
304 // SimpleC.g:26:1: variable : type declarator ';' -> ^( VAR_DEF type declarator ) ;
305 public final SimpleCParser.variable_return variable() throws RecognitionException { method in class:SimpleCParser
387 // $ANTLR end "variable"
749 // SimpleC.g:50:1: block : lc= '{' ( variable )* ( stat )* '}' -> ^( BLOCK[$lc,@\"BLOCK\"] ( variable )* ( stat )* )
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 112 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) );
115 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) )
142 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:13:9: variable
145 variable(); method
203 // $ANTLR start "variable"
204 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ;
205 public final void variable() throws RecognitionException { method in class:SimpleCTP
237 // $ANTLR end "variable"
399 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ;
402 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:42:5: ( ^( BLOCK ( variable )* ( stat )* )
425 variable(); method
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
TemplateInterpreter.java 209 Data variable = dataContext.findVariable(variableName, true); local
211 variable.setValue(value.asString());
213 // "set" was used to set a variable to a constant or escaped value like
216 variable.setEscapeMode(value.getEscapeMode());
225 * &lt;?cs name:blah &gt; command. Writes out the name of the original variable referred to by a
232 Data variable = dataContext.findVariable(variableName, false); local
233 if (variable != null) {
234 context.writeEscaped(variable.getSymlink().getName());
299 // With refers to a non-existent variable. Do nothing.
467 * &lt;?cs call:someMacro(x,y) command. Call a macro. Need to create a new variable scope to hol
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
FrameWork.py 461 nextid = 1 # Necessarily a class variable class in class:MenuBar
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputHLSL.cpp 2290 TIntermTyped *variable = sequence[0]->getAsTyped(); local
3036 TIntermTyped *variable = sequence[0]->getAsTyped(); local
    [all...]
ParseContext.cpp 566 // This function checks to see if a void variable has been declared and raise an error message for such a case
655 error(line, "location must only be specified for a single input or output variable", "location");
788 bool TParseContext::arrayErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType &type, TVariable*& variable)
802 variable = new TVariable(&identifier, TType(type));
805 variable->getType().setArraySize(type.arraySize);
807 if (! symbolTable.declare(*variable)) {
808 delete variable;
814 error(line, "variable expected", identifier.c_str());
818 variable = static_cast<TVariable*>(symbol);
819 if (! variable->getType().isArray())
1236 TVariable* variable = 0; local
1278 TVariable* variable = 0; local
1331 TVariable* variable = 0; local
1362 TVariable* variable = NULL; local
1374 TVariable* variable = NULL; local
    [all...]
glslang_lex.cpp 13 #pragma GCC diagnostic ignored "-Wunused-variable"
211 * access to the local variable yy_act. Since yyless() is a macro, it would break
215 * normally declared as a register variable-- so it is not worth it.
3206 TVariable* variable = static_cast<TVariable*>(symbol); local
    [all...]
  /external/clang/lib/CodeGen/
CGBlocks.cpp 271 // We can only do this if the variable is const.
282 // If the variable doesn't have any initializer (shouldn't this be
374 const VarDecl *variable = CI.getVariable(); local
395 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) {
396 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant);
403 variable->getType().getObjCLifetime();
417 } else if (variable->getType()->isObjCRetainableType()) {
430 variable->getType()->getAsCXXRecordDecl()) {
438 QualType VT = variable->getType();
440 CharUnits align = C.getDeclAlign(variable);
588 const VarDecl *variable = CI.getVariable(); local
742 const VarDecl *variable = CI.getVariable(); local
1175 const VarDecl *variable = CI.getVariable(); local
1217 const VarDecl *variable = CI.getVariable(); local
1327 const VarDecl *variable = CI.getVariable(); local
1496 const VarDecl *variable = CI.getVariable(); local
    [all...]
  /ndk/sources/host-tools/make-3.81/
main.c 22 #include "variable.h"
111 char *value_ptr; /* Pointer to the value-holding variable. */
267 for each reference to an undefined variable. */
281 /* Remember the original value of the SHELL variable, from the environment. */
283 struct variable shell_var;
340 -R, --no-builtin-variables Disable the built-in variable settings.\n"),
358 --warn-undefined-variables Warn when an undefined variable is referenced.\n"),
449 struct variable *variable;
466 /* Value of the MAKELEVEL variable at startup (or 0). *
447 struct variable *variable; member in struct:command_variable
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 

Completed in 1242 milliseconds

1 23 4 5 6 7 8 9