HomeSort by relevance Sort by last modified time
    Searched refs:variable (Results 1 - 25 of 3964) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
tentative-defs.h 2 int variable; variable
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfreloc-ext.asm 1 EXTERN variable
2 mov eax, variable
3 mov ax, variable
4 mov al, variable
  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 3 static const int variable; member in struct:C
redecl-add-after-load.h 2 extern const int variable = 0; variable
7 extern const int variable = 0; member in namespace:N
13 const int C::variable = 0; member in class:C
18 static const int variable; member in struct:D
22 const int D::variable = 0; member in class:D
redecl-add-after-load-decls.h 2 extern const int variable;
4 constexpr int test(bool b) { return b ? variable : function(); }
8 extern const int variable;
12 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
16 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
20 static const int variable; member in struct:D
24 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/llvm/test/MC/ARM/
directive-tlsdescseq.s 10 .tlsdescseq variable
12 .tlsdescseq variable
14 .tlsdescseq variable
17 .word variable(tlsdesc) + (. - 1b)
20 @ CHECK: 0x4 R_ARM_TLS_DESCSEQ variable 0x0
21 @ CHECK: 0x8 R_ARM_TLS_DESCSEQ variable 0x0
22 @ CHECK: 0xC R_ARM_TLS_DESCSEQ variable 0x0
23 @ CHECK: 0x10 R_ARM_TLS_GOTDESC variable 0x0
27 @ CHECK-ASM: .tlsdescseq variable
29 @ CHECK-ASM: .tlsdescseq variable
    [all...]
directive-tlsdescseq-diagnostics.s 8 @ CHECK: error: expected variable after '.tlsdescseq' directive
14 .tlsdescseq variable(tlsdesc)
17 @ CHECK: .tlsdescseq variable(tlsdesc)
22 .tlsdescseq variable,
25 @ CHECK: .tlsdescseq variable,
  /external/deqp/framework/randomshaders/
rsgFunctionGenerator.hpp 41 void requireAssignment (Variable* variable) { m_requiredAssignments.push_back(variable); }
48 std::vector<Variable*> m_requiredAssignments;
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...]
rsgFunctionGenerator.cpp 66 for (vector<Variable*>::iterator i = m_requiredAssignments.begin(); i != m_requiredAssignments.end(); i++)
68 Variable* variable = *i; local
69 const ValueEntry* entry = m_state.getVariableManager().getValue(variable);
70 ValueRange valueRange(variable->getType());
76 m_state.getVariableManager().removeValueFromCurrentScope(variable);
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange));
rsgExecutionContext.hpp 46 typedef std::map<const Variable*, ExecValueStorage*> VarValueMap;
66 ExecValueAccess getValue (const Variable* variable);
67 const Sampler2D& getSampler2D (const Variable* variable) const;
68 const SamplerCube& getSamplerCube (const Variable* variable) const;
  /external/clang/test/Modules/
redecl-add-after-load.cpp 10 extern const int variable;
12 constexpr int test(bool b) { return b ? variable : function(); }
16 extern const int variable;
20 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
24 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
28 static const int variable; member in struct:D
32 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/chromium_org/third_party/ocmock/OCMock/
OCMArg.h 33 #define OCMOCK_VALUE(variable) [NSValue value:&variable withObjCType:@encode(__typeof__(variable))]
  /external/doclava/src/com/google/doclava/
Resolution.java 24 * <p>Resolutions contain a Variable and a Value, both of which are set in the Resolution constructor.
31 * <p>Values are the value to which the variable contained within this {@link Resolution} refers.
34 * contains "superclass" as its variable and "Dialog" as its value.
42 * Creates a new resolution with variable and value.
43 * @param variable The piece of data within a Java type that needs to be updated
45 * @param value The value to which the variable contained within this {@link Resolution} refers.
48 public Resolution(String variable, String value, InfoBuilder builder) {
49 mVariable = variable;
63 * @return The value to which the variable contained within this {@link Resolution} refers.
  /external/lldb/
lldb.mk 2 $(error Must set variable LLDB_ROOT_PATH before including this! $(LOCAL_PATH))
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
VariableLocator.java 47 * @param variable the variable node to evaluate.
48 * @return a String representing the Variable name, or {@code null} if it is a compound variable
51 private String quickEval(PVariable variable) {
52 if (variable instanceof ANameVariable) {
53 return ((ANameVariable) variable).getWord().getText();
54 } else if (variable instanceof ADecNumberVariable) {
55 return ((ADecNumberVariable) variable).getDecNumber().getText();
56 } else if (variable instanceof AHexNumberVariable)
    [all...]
  /external/bison/src/
muscle-tab.h 106 /* Indicates whether a variable's value was specified with -D/--define, with
113 /* Define the muscles for %define variable VARIABLE with VALUE specified
115 grammar file while the previous definition for VARIABLE was specified
120 this as a user occurrence of VARIABLE by invoking
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
127 %define variable VARIABLE is defined, return its value. Otherwise, return
128 the empty string. Also, record Bison's usage of VARIABLE by defining
129 b4_percent_define_bison_variables(VARIABLE). The caller is responsible fo
    [all...]
muscle-tab.c 399 /** If the \a variable name is obsolete, return the name to use,
400 * otherwise \a variable. */
403 muscle_percent_variable_update (char const *variable)
416 char const *res = variable;
419 if (STREQ (conversion[i].obsolete, variable))
433 char const *variable = muscle_percent_variable_update (var); local
434 char const *name = UNIQSTR_CONCAT ("percent_define(", variable, ")");
435 char const *loc_name = UNIQSTR_CONCAT ("percent_define_loc(", variable, ")");
437 UNIQSTR_CONCAT ("percent_define_syncline(", variable, ")");
438 char const *how_name = UNIQSTR_CONCAT ("percent_define_how(", variable, ")");
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 64 args, // Args to command: "some.variable=3 ?>"
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
226 variable.variable,
229 | {name} cs_open name command_delimiter variable cs_close
233 variable.variable)}
253 | {with} cs_open with command_delimiter variable assignment expression cs_close
259 variable.variable,
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
VariableInfo.cpp 41 void ExpandUserDefinedVariable(const ShaderVariable &variable,
47 void ExpandVariable(const ShaderVariable &variable,
53 if (variable.isStruct())
55 if (variable.isArray())
57 for (size_t elementIndex = 0; elementIndex < variable.elementCount(); elementIndex++)
61 ExpandUserDefinedVariable(variable, lname, lmappedName, markStaticUse, expanded);
66 ExpandUserDefinedVariable(variable, name, mappedName, markStaticUse, expanded);
71 ShaderVariable expandedVar = variable;
92 void ExpandUserDefinedVariable(const ShaderVariable &variable,
98 ASSERT(variable.isStruct())
338 const TIntermSymbol *variable = sequence[seqIndex]->getAsSymbolNode(); local
430 const ShaderVariable &variable = compact[variableIndex]; local
    [all...]
VariablePacker.cpp 161 // Check whether each variable fits in the available vectors.
163 const sh::ShaderVariable &variable = variables[i];
164 if (variable.elementCount() > maxVectors / GetNumRows(variable.type)) {
178 const sh::ShaderVariable &variable = variables[ii];
179 if (GetNumComponentsPerRow(variable.type) != 4) {
182 topNonFullRow_ += GetNumRows(variable.type) * variable.elementCount();
192 const sh::ShaderVariable &variable = variables[ii];
193 if (GetNumComponentsPerRow(variable.type) != 3)
    [all...]
  /external/compiler-rt/make/
util.mk 31 # Function: Set variable value
33 # Set the given make variable to the given value.
36 # Function: Append variable value
38 # Append the given value to the given make variable.
41 # Function: IsDefined variable
43 # Check whether the given variable is defined.
46 # Function: IsUndefined variable
48 # Check whether the given variable is undefined.
51 # Function: VarOrDefault variable default-value
53 # Get the value of the given make variable, or the default-value if the variabl
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 27 * Returns the Data variable name for a local variable alias.
32 * @param args A local variable
39 Data variable = variableValue.getReference(); local
40 if (variable != null) {
41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(),
  /external/chromium_org/content/shell/tools/plugin/Tests/
FormValue.cpp 19 NPError FormValue::NPP_GetValue(NPPVariable variable, void *value)
21 if (variable == NPPVformValue) {
PluginScriptableNPObjectInvokeDefault.cpp 54 virtual NPError NPP_GetValue(NPPVariable variable, void *value) OVERRIDE
56 if (variable != NPPVpluginScriptableNPObject)

Completed in 944 milliseconds

1 2 3 4 5 6 7 8 91011>>