Searched refs:variable (Results 1 - 25 of 545) sorted by relevance

1234567891011>>

/external/clang/test/PCH/
H A Dtentative-defs.h2 int variable; variable
/external/clang/test/Modules/Inputs/
H A Dredecl-add-after-load-top.h3 static const int variable; member in struct:C
H A Dredecl-add-after-load.h2 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
H A Dredecl-add-after-load-decls.h2 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(); }
/external/curl/lib/
H A Dgetenv.c31 char *GetEnv(const char *variable) argument
34 (void)variable;
39 char *temp = getenv(variable);
45 char *env = getenv(variable);
/external/testng/src/main/java/org/testng/mustache/
H A DModel.java11 String variable; field in class:Model.SubModel
19 public void push(String variable, Object subModel) { argument
21 sl.variable = variable;
26 public Value resolveValue(String variable) { argument
29 Value value = resolveOnClass(object.subModel, variable);
36 return new Value(m_model.get(variable));
39 private Value resolveOnClass(Object object, String variable) { argument
44 // List<Object> values = resolveOnClass(o, variable);
51 Field f = cls.getField(variable);
69 resolveValueToString(String variable) argument
[all...]
H A DVariableChunk.java7 public VariableChunk(Model model, String variable) { argument
9 m_variable = variable;
/external/llvm/test/MC/ARM/
H A Ddirective-tlsdescseq.s10 .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...]
H A Ddirective-tlsdescseq-diagnostics.s8 @ CHECK: error: expected variable after '.tlsdescseq' directive
14 .tlsdescseq variable(tlsdesc)
17 @ CHECK: .tlsdescseq variable(tlsdesc)
22 .tlsdescseq variable,
25 @ CHECK: .tlsdescseq variable,
/external/syslinux/gpxe/src/arch/i386/include/
H A Dlibrm.h112 #define __data16( variable ) \
114 _data16_ ## variable __asm__ ( #variable )
116 #define __data16_array( variable, array ) \
118 _data16_ ## variable array __asm__ ( #variable )
120 #define __bss16( variable ) \
122 _data16_ ## variable __asm__ ( #variable )
124 #define __bss16_array( variable, arra
[all...]
H A Dlibkir.h14 #define __data16( variable ) variable
15 #define __data16_array( variable, array ) variable array
16 #define __bss16( variable ) variable
17 #define __bss16_array( variable, array ) variable array
18 #define __text16( variable ) variable
[all...]
/external/deqp/framework/randomshaders/
H A DrsgFunctionGenerator.hpp41 void requireAssignment (Variable* variable) { m_requiredAssignments.push_back(variable); } argument
H A DrsgVariableManager.cpp95 ValueEntry::ValueEntry (const Variable* variable) argument
96 : m_variable (variable)
97 , m_valueRange (variable->getType())
116 Variable* variable = new Variable(type, storage, name); local
119 m_liveVariables.push_back(variable);
120 return variable;
124 delete variable;
129 void VariableScope::declare (Variable* variable) argument
131 m_declaredVariables.push_back(variable);
132 removeLive(variable);
135 removeLive(const Variable* variable) argument
160 allocate(const Variable* variable) argument
178 CompareEntryVariable(const Variable* variable) argument
203 setValue(const Variable* variable, ConstValueRangeAccess value) argument
213 removeValue(const Variable* variable) argument
249 Variable* variable = varScope.allocate(type, Variable::STORAGE_LOCAL, name); local
265 setStorage(Variable* variable, Variable::Storage storage) argument
301 declareVariable(Variable* variable) argument
327 removeValueFromCurrentScope(const Variable* variable) argument
355 setValue(const Variable* variable, ConstValueRangeAccess value) argument
[all...]
H A DrsgFunctionGenerator.cpp68 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.asAccess()));
H A DrsgExecutionContext.hpp66 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/
H A Dredecl-add-after-load.cpp11 extern const int variable;
13 constexpr int test(bool b) { return b ? variable : function(); }
17 extern const int variable;
21 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
25 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
29 static const int variable; member in struct:D
33 constexpr int D_test(bool b) { return b ? D::variable : D::function(); }
/external/doclava/src/com/google/doclava/
H A DResolution.java31 * <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) { argument
49 mVariable = variable;
63 * @return The value to which the variable contained within this {@link Resolution} refers.
/external/curl/src/
H A Dtool_homedir.c32 static char *GetEnv(const char *variable, char do_expand) argument
39 /* Don't use getenv(); it doesn't find variable added after program was
42 rc = GetEnvironmentVariable(variable, buf1, sizeof(buf1));
45 variable = buf1;
47 if(do_expand && strchr(variable, '%')) {
48 /* buf2 == variable if not expanded */
49 rc = ExpandEnvironmentStrings (variable, buf2, sizeof(buf2));
57 env = getenv(variable);
/external/python/cpython2/Lib/idlelib/
H A DdynOptionMenuWidget.py12 def __init__(self, master, variable, value, *values, **kwargs):
17 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
20 self.variable=variable
32 command=_setit(self.variable,item,self.command))
34 self.variable.set(value)
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DVariableLocator.java47 * @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) { argument
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) {
57 return ((AHexNumberVariable) variable)
69 getVariableName(PVariable variable) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_map_field.cc97 variables_["field_type"] = value_field_generator_->variable("field_type");
98 variables_["default"] = value_field_generator_->variable("default");
99 variables_["default_name"] = value_field_generator_->variable("default_name");
111 value_field_generator_->variable("fieldflags");
130 value_field_generator_->variable("storage_type") + "*>";
140 value_field_generator_->variable("storage_type") + "*>";
145 value_field_generator_->variable("dataTypeSpecific_name");
147 value_field_generator_->variable("dataTypeSpecific_value");
160 "// |" + variables_["name"] + "| values are |" + value_field_generator_->variable("storage_type") + "|\n";
171 value_field_generator_->variable("storage_typ
[all...]
/external/bison/src/
H A Dmuscle-tab.h106 /* Indicates whether a variable's value was specified with -D/--define, with
113 /* Define the muscles for %define variable VARIABLE with VALUE specified
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
127 %define variable VARIABLE is defined, return its value. Otherwise, return
131 char *muscle_percent_define_get (char const *variable);
134 if the %define variable VARIABLE is undefined, complain fatally since that's
139 location muscle_percent_define_get_loc (char const *variable);
142 is, if the %define variable VARIABLE is undefined, complain fatally since
147 char const *muscle_percent_define_get_syncline (char const *variable);
150 %define variable VARIABL
[all...]
H A Dmuscle-tab.c399 /** If the \a variable name is obsolete, return the name to use,
400 * otherwise \a variable. */
403 muscle_percent_variable_update (char const *variable) argument
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, ")");
467 muscle_percent_define_get(char const *variable) argument
485 muscle_percent_define_get_loc(char const *variable) argument
496 muscle_percent_define_get_syncline(char const *variable) argument
510 muscle_percent_define_ifdef(char const *variable) argument
531 muscle_percent_define_flag_if(char const *variable) argument
563 muscle_percent_define_default(char const *variable, char const *value) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc64 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/compiler-rt/make/
H A Dutil.mk31 # 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, o
[all...]

Completed in 2637 milliseconds

1234567891011>>