Home
last modified time | relevance | path

Searched refs:variable (Results 1 – 25 of 5369) sorted by relevance

12345678910>>...215

/external/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/Inputs/
Dglobals-fundamental.lldbinit1 target variable BFalse
2 target variable BTrue
3 target variable CA
4 target variable CZ
5 target variable SCa
6 target variable SCz
7 target variable UC24
8 target variable UC42
9 target variable C16_24
10 target variable C32_42
[all …]
Ds_constant.lldbinit1 target variable GlobalLUEA
2 target variable GlobalLUEB
3 target variable GlobalLUEC
5 target variable GlobalLSEA
6 target variable GlobalLSEB
7 target variable GlobalLSEC
9 target variable GlobalUEA
10 target variable GlobalUEB
11 target variable GlobalUEC
13 target variable GlobalSEA
[all …]
Dast-types.lldbinit1 target variable TC
2 target variable TS
3 target variable TU
4 target variable TE
6 target variable ABCInt
7 target variable ABCFloat
8 target variable ABCVoid
10 target variable AC0
11 target variable ACNeg1
13 target variable AC1D
[all …]
Dfunction-types-classes.lldbinit1 target variable a
2 target variable b
3 target variable c
4 target variable d
5 target variable e
6 target variable f
7 target variable g
8 target variable h
9 target variable i
10 target variable incomplete
/external/python/cpython3/Tools/c-analyzer/
Dknown.tsv2 Modules/_abc.c - _abc_data_type variable static PyTypeObject _abc_data_type
3 Modules/_abc.c - abc_invalidation_counter variable static unsigned long long abc_invalidation_count…
4 Modules/_abc.c - _abcmodule variable static struct PyModuleDef _abcmodule
5 Python/import.c import_find_and_load accumulated variable static _PyTime_t accumulated
6 Modules/itertoolsmodule.c - accumulate_methods variable static PyMethodDef accumulate_methods
7 Modules/itertoolsmodule.c - accumulate_type variable static PyTypeObject accumulate_type
8 Python/Python-ast.c - Add_singleton variable static PyObject *Add_singleton
9 Python/Python-ast.c - Add_type variable static PyTypeObject *Add_type
10 Objects/genobject.c - ag_asend_freelist variable static PyAsyncGenASend *ag_asend_freelist[_PyAsync…
11 Objects/genobject.c - ag_asend_freelist_free variable static int ag_asend_freelist_free
[all …]
/external/python/cpython3/Tools/c-analyzer/cpython/
Dsupported.py95 def is_supported(variable, ignored=None, known=None, *, argument
100 if _ignored(variable,
103 elif _vartype_okay(variable.vartype,
110 def _is_ignored(variable, ignoredvars=None, *, argument
117 if ignoredvars and (reason := ignoredvars.get(variable.id)):
120 if variable.funcname is None:
121 if reason := _IGNORED.get(variable.name):
125 if variable.filename == 'Python/graminit.c':
126 if variable.vartype.startswith('static state '):
128 if variable.filename == 'Python/symtable.c':
[all …]
/external/angle/src/compiler/translator/
Dblocklayout.cpp30 void encodeVariable(const ShaderVariable &variable, in encodeVariable() argument
35 ASSERT(!gl::IsSamplerType(variable.type)); in encodeVariable()
36 if (!gl::IsOpaqueType(variable.type)) in encodeVariable()
65 void TraverseStructVariable(const ShaderVariable &variable, in TraverseStructVariable() argument
69 const std::vector<ShaderVariable> &fields = variable.fields; in TraverseStructVariable()
71 visitor->enterStructAccess(variable, isRowMajorLayout); in TraverseStructVariable()
73 visitor->exitStructAccess(variable, isRowMajorLayout); in TraverseStructVariable()
76 void TraverseStructArrayVariable(const ShaderVariable &variable, in TraverseStructArrayVariable() argument
80 visitor->enterArray(variable); in TraverseStructArrayVariable()
84 const unsigned int currentArraySize = variable.getNestedArraySize(0); in TraverseStructArrayVariable()
[all …]
DVariablePacker.cpp24 void ExpandVariable(const ShaderVariable &variable,
28 void ExpandStructVariable(const ShaderVariable &variable, in ExpandStructVariable() argument
32 ASSERT(variable.isStruct()); in ExpandStructVariable()
34 const std::vector<ShaderVariable> &fields = variable.fields; in ExpandStructVariable()
43 void ExpandStructArrayVariable(const ShaderVariable &variable, in ExpandStructArrayVariable() argument
50 const unsigned int currentArraySize = variable.getNestedArraySize(arrayNestingIndex); in ExpandStructArrayVariable()
54 if (arrayNestingIndex + 1u < variable.arraySizes.size()) in ExpandStructArrayVariable()
56 ExpandStructArrayVariable(variable, arrayNestingIndex + 1u, elementName, expanded); in ExpandStructArrayVariable()
60 ExpandStructVariable(variable, elementName, expanded); in ExpandStructArrayVariable()
65 void ExpandVariable(const ShaderVariable &variable, in ExpandVariable() argument
[all …]
DCollectVariables.cpp68 void MarkActive(ShaderVariable *variable) in MarkActive() argument
70 if (!variable->active) in MarkActive()
72 if (variable->isStruct()) in MarkActive()
75 for (auto &field : variable->fields) in MarkActive()
80 variable->staticUse = true; in MarkActive()
81 variable->active = true; in MarkActive()
152 const TVariable &variable,
155 ShaderVariable recordAttribute(const TIntermSymbol &variable) const;
156 ShaderVariable recordOutputVariable(const TIntermSymbol &variable) const;
157 ShaderVariable recordVarying(const TIntermSymbol &variable) const;
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/compiler/
Dvariable_accessor.cc164 absl::StrAppend(result, "shared highp ", GetVariableType(variable.value), in operator ()()
165 " ", variable.name, ";\n"); in operator ()()
170 absl::StrAppend(result, "shared highp ", GetVariableType(variable.value), in operator ()()
171 " ", variable.name); in operator ()()
183 const Variable& variable; member
187 void GenerateSharedVariableDeclaration(const Variable& variable, in GenerateSharedVariableDeclaration() argument
189 absl::visit(SharedVariableDeclarationGenerator{variable, result}, in GenerateSharedVariableDeclaration()
190 variable.value); in GenerateSharedVariableDeclaration()
196 absl::StrAppend(result, "uniform ", GetVariableType(variable.value), " ", in operator ()()
197 variable.name, ";\n"); in operator ()()
[all …]
/external/deqp/framework/randomshaders/
DrsgVariableManager.cpp95 ValueEntry::ValueEntry (const Variable* variable) in ValueEntry() argument
96 : m_variable (variable) in ValueEntry()
97 , m_valueRange (variable->getType()) in ValueEntry()
116 Variable* variable = new Variable(type, storage, name); in allocate() local
119 m_liveVariables.push_back(variable); in allocate()
120 return variable; in allocate()
124 delete variable; in allocate()
129 void VariableScope::declare (Variable* variable) in declare() argument
131 m_declaredVariables.push_back(variable); in declare()
132 removeLive(variable); in declare()
[all …]
/external/skia/resources/sksl/errors/
DCanExitWithoutReturningValue.sksl3 int variable = 0;
6 int if_only() { if (variable == 1) return 0; }
7 int return_on_if_but_not_else() { if (variable == 1) return 0; else variable *= 2; }
8 int return_on_else_but_not_if() { if (variable == 1) variable *= 2; else return 1; }
10 int for_with_conditional_return() { for (;;) { if (variable == 1) return 0; } }
11 int for_with_conditional_break() { for (;;) { if (variable == 1) break; return 0; } }
12 int for_with_conditional_continue() { for (;;) { if (variable == 1) continue; return 0; } }
26 variable *= 2; // doesn't return
33 switch (variable) {}
37 switch (variable) {
[all …]
/external/deqp/data/gles31/shaders/es31/
Dlinkage_io_block.test84 mediump vec2 variable;
89 variable.x = float(gl_VertexID);
90 variable.y = float(gl_InstanceID);
100 mediump float variable;
105 ${FRAG_COLOR} = vec4(variable);
155 mediump float variable[1];
160 variable[0] = float(gl_VertexID);
170 mediump float variable[2];
175 ${FRAG_COLOR} = vec4(variable[0] + variable[1]);
194 mediump float variable;
[all …]
Dlinkage_shader_storage_block.test92 mediump vec2 variable;
98 vtx_val = variable.y;
108 mediump float variable;
114 ${FRAG_COLOR} = vec4(vtx_val + variable);
168 mediump float variable[];
174 vtx_val = variable[0];
184 mediump float variable[1];
190 ${FRAG_COLOR} = vec4(vtx_val + variable[0]);
206 mediump float variable[1];
212 vtx_val = variable[0];
[all …]
/external/deqp/data/gles31/shaders/es32/
Dlinkage_io_block.test100 mediump vec2 variable;
105 variable.x = float(gl_VertexID);
106 variable.y = float(gl_InstanceID);
116 mediump float variable;
121 ${FRAG_COLOR} = vec4(variable);
169 mediump float variable[1];
174 variable[0] = float(gl_VertexID);
184 mediump float variable[2];
189 ${FRAG_COLOR} = vec4(variable[0] + variable[1]);
207 mediump float variable;
[all …]
/external/llvm-project/lldb/test/Shell/SymbolFile/PDB/Inputs/
DVariablesLocationsTest.script6 target variable g_var
8 frame variable arg_0
9 frame variable arg_1
11 frame variable loc_0
12 frame variable loc_1
16 frame variable loc_0
17 frame variable loc_1
21 frame variable arg_0
23 frame variable loc_0
24 frame variable loc_1
/external/llvm-project/clang/test/Sema/
Dpragma-attribute-strict-subjects.c3 #pragma clang attribute push (__attribute__((annotate("test"))), apply_to = any(function, variable))
9 …e("subRuleContradictions"))), apply_to = any(variable, variable(is_parameter), function(is_member)…
20 …_attribute__((annotate("subRuleContradictions3"))), apply_to = any(variable, variable(unless(is_pa…
25 …annotate("negatedSubRuleContradictions1"))), apply_to = any(variable(is_parameter), variable(unles…
30 …leContradictions2"))), apply_to = any(variable(unless(is_parameter)), variable(is_thread_local), f…
42 … push (__attribute__((abi_tag("a"))), apply_to = any(record(unless(is_union)), function, variable))
46 #pragma clang attribute push (__attribute__((abi_tag("a"))), apply_to = any(function, variable, rec…
50 #pragma clang attribute push (__attribute__((abi_tag("a"))), apply_to = any(variable, record(unless…
54 …(__attribute__((abi_tag("a"))), apply_to = any(function, record(unless(is_union)), variable, enum))
58 … apply_to = any(enum_constant, function, record(unless(is_union)), variable, variable(is_parameter…
[all …]
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dgoogle-objc-global-variable-declaration.m1 // RUN: %check_clang_tidy %s google-objc-global-variable-declaration %t
6 …arning: const global variable 'myConstString' must have a name which starts with an appropriate pr…
10 …arning: const global variable 'GlobalConstant' must have a name which starts with an appropriate p…
13 …18: warning: non-const global variable 'MyString' must have a name which starts with 'g[A-Z]' [goo…
17 …: warning: non-const global variable 'globalString' must have a name which starts with 'g[A-Z]' [g…
21 …1]]:18: warning: non-const global variable 'a' must have a name which starts with 'g[A-Z]' [google…
25 …]:18: warning: non-const global variable 'noDef' must have a name which starts with 'g[A-Z]' [goog…
29 … warning: const global variable '_notAlpha' must have a name which starts with an appropriate pref…
33 …4: warning: const global variable 'notCap' must have a name which starts with an appropriate prefi…
37 …: warning: const global variable 'k_Alpha' must have a name which starts with an appropriate prefi…
[all …]
/external/llvm-project/lldb/test/API/lang/c/array_types/
DTestArrayTypes.py163 variable = frame.FindVariable("strings")
164 var = str(variable)
171 variable.GetName()])
172 self.DebugSBValue(variable)
173 self.assertEquals(variable.GetNumChildren(), 4,
175 byte_size = variable.GetByteSize()
178 child3 = variable.GetChildAtIndex(3)
184 variable = frame.FindVariable("char_16")
185 self.DebugSBValue(variable)
186 self.assertEquals(variable.GetNumChildren(), 16,
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DForEachStmt.java52 private VariableDeclarationExpr variable; field in ForEachStmt
63 …public ForEachStmt(final VariableDeclarationExpr variable, final Expression iterable, final Statem… in ForEachStmt() argument
64 this(null, variable, iterable, body); in ForEachStmt()
71 …public ForEachStmt(TokenRange tokenRange, VariableDeclarationExpr variable, Expression iterable, S… in ForEachStmt() argument
73 setVariable(variable); in ForEachStmt()
79 public ForEachStmt(VariableDeclarationExpr variable, String iterable, BlockStmt body) { in ForEachStmt() argument
80 this(null, variable, new NameExpr(iterable), body); in ForEachStmt()
107 return variable; in getVariable()
139 public ForEachStmt setVariable(final VariableDeclarationExpr variable) { in setVariable() argument
140 assertNotNull(variable); in setVariable()
[all …]
/external/llvm-project/clang/test/Parser/
Dpragma-attribute.cpp9 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any(variable(is_paramete…
12 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = variable(unless(is_param…
15 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any(variable(unless(is_p…
65 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any( variable( )) // exp…
66 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any(variable())) // exp…
67 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any(variable(is))) …
68 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any( variable(is_paramet…
69 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any( variable is_paramet…
70 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = any( variable ( ) // exp…
71 #pragma clang attribute push(__attribute__((annotate("test"))), apply_to = variable ( // expected-…
[all …]
/external/llvm-project/clang/test/SemaObjC/
Dflexible-array.m12 int last; // expected-note {{next instance variable declaration is here}}
20 …char flexible[]; // expected-warning {{field 'flexible' with variable sized type 'char []' is not …
28 …// expected-warning@-1 {{field 'flexible' with variable sized type 'char []' is not visible to sub…
29 int last; // expected-note {{next instance variable declaration is here}}
35 …// expected-warning@-1 {{field 'flexible' with variable sized type 'char []' is not visible to sub…
36 int last; // expected-note {{next instance variable declaration is here}}
45 int last; // expected-note {{next instance variable declaration is here}}
62 …char flexible[]; // expected-warning {{field 'flexible' with variable sized type 'char []' is not …
70 …// expected-warning@-1 {{field 'flexible' with variable sized type 'char []' is not visible to sub…
71 int last; // expected-note {{next instance variable declaration is here}}
[all …]
/external/testng/src/main/java/org/testng/mustache/
DModel.java11 String variable; field in Model.SubModel
19 public void push(String variable, Object subModel) { in push() argument
21 sl.variable = variable; in push()
26 public Value resolveValue(String variable) { in resolveValue() argument
29 Value value = resolveOnClass(object.subModel, variable); in resolveValue()
36 return new Value(m_model.get(variable)); in resolveValue()
39 private Value resolveOnClass(Object object, String variable) { in resolveOnClass() argument
51 Field f = cls.getField(variable); in resolveOnClass()
62 return m_subModels.peek().variable; in getTopSubModel()
69 public String resolveValueToString(String variable) { in resolveValueToString() argument
[all …]
/external/tensorflow/tensorflow/core/framework/
Dvariable.proto11 // Indicates when a distributed variable will be synced.
17 // `NONE`: Indicates that there will only be one copy of the variable, so
20 // `ON_WRITE`: Indicates that the variable will be updated across devices
23 // `ON_READ`: Indicates that the variable will be aggregated across devices
25 // the variable).
29 // Indicates how a distributed variable will be aggregated.
32 // variable-update operation with multiple replicas.
47 // Name of the variable tensor.
50 // Name of the tensor holding the variable's initial value.
59 // Support for saving variables as slices of a larger variable.
[all …]
/external/llvm/test/MC/ARM/
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 …]

12345678910>>...215