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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
tentative-defs.h 2 int variable; 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(); }
  /system/update_engine/update_manager/
umtest_utils.h 27 #include "update_engine/update_manager/variable.h"
39 // Calls GetValue on |variable| and expects its result to be |expected|.
41 static void ExpectVariableHasValue(const T& expected, Variable<T>* variable) {
42 ASSERT_NE(nullptr, variable);
44 variable->GetValue(DefaultTimeout(), nullptr));
45 ASSERT_NE(nullptr, value.get()) << "Variable: " << variable->GetName();
46 EXPECT_EQ(expected, *value) << "Variable: " << variable->GetName()
    [all...]
  /external/curl/lib/
getenv.c 31 char *GetEnv(const char *variable)
34 (void)variable;
39 char *temp = getenv(variable);
45 char *env = getenv(variable);
  /external/testng/src/main/java/org/testng/mustache/
Model.java 11 String variable; field in class:Model.SubModel
19 public void push(String variable, Object subModel) {
21 sl.variable = variable;
26 public Value resolveValue(String variable) {
29 Value value = resolveOnClass(object.subModel, variable);
36 return new Value(m_model.get(variable));
39 private Value resolveOnClass(Object object, String variable) {
44 // List<Object> values = resolveOnClass(o, variable);
51 Field f = cls.getField(variable);
    [all...]
VariableChunk.java 7 public VariableChunk(Model model, String variable) {
9 m_variable = variable;
  /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/syslinux/gpxe/src/arch/i386/include/
librm.h 112 #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, array )
    [all...]
libkir.h 14 #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...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 13 def __init__(self, master, variable, value, *values, **kwargs):
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
21 self.variable=variable
33 command=_setit(self.variable,item,self.command))
35 self.variable.set(value)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 13 def __init__(self, master, variable, value, *values, **kwargs):
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
21 self.variable=variable
33 command=_setit(self.variable,item,self.command))
35 self.variable.set(value)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 13 def __init__(self, master, variable, value, *values, **kwargs):
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
21 self.variable=variable
33 command=_setit(self.variable,item,self.command))
35 self.variable.set(value)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 13 def __init__(self, master, variable, value, *values, **kwargs):
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
21 self.variable=variable
33 command=_setit(self.variable,item,self.command))
35 self.variable.set(value)
  /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...]
  /external/clang/test/Modules/
redecl-add-after-load.cpp 11 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(); }
  /build/kati/testcase/
double_colon_rule.mk 8 # Merge a double colon rule with target specific variable is OK.
  /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/curl/src/
tool_homedir.c 32 static char *GetEnv(const char *variable, char do_expand)
39 /* Don't use getenv(); it doesn't find variable added after program was
42 rc = GetEnvironmentVariableA(variable, buf1, sizeof(buf1));
45 variable = buf1;
47 if(do_expand && strchr(variable, '%')) {
48 /* buf2 == variable if not expanded */
49 rc = ExpandEnvironmentStringsA(variable, buf2, sizeof(buf2));
57 env = getenv(variable);
  /external/python/cpython2/Lib/idlelib/
dynOptionMenuWidget.py 12 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/python/cpython3/Lib/idlelib/
dynoption.py 13 def __init__(self, master, variable, value, *values, **kwargs):
18 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
21 self.variable=variable
33 command=_setit(self.variable,item,self.command))
35 self.variable.set(value)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug482.go 8 // global variable that depends on the variable being initialized
9 // caused gccgo to erroneously report "variable initializer refers to

Completed in 770 milliseconds

1 2 3 4 5 6 7 8 91011>>