Home
last modified time | relevance | path

Searched refs:variable2 (Results 1 – 16 of 16) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dprinter.cc188 const char* variable2, const string& value2) { in Print() argument
191 vars[variable2] = value2; in Print()
197 const char* variable2, const string& value2, in Print() argument
201 vars[variable2] = value2; in Print()
208 const char* variable2, const string& value2, in Print() argument
213 vars[variable2] = value2; in Print()
221 const char* variable2, const string& value2, in Print() argument
227 vars[variable2] = value2; in Print()
236 const char* variable2, const string& value2, in Print() argument
243 vars[variable2] = value2; in Print()
[all …]
Dprinter.h216 const char* variable2, const string& value2);
219 const char* variable2, const string& value2,
223 const char* variable2, const string& value2,
228 const char* variable2, const string& value2,
234 const char* variable2, const string& value2,
241 const char* variable2, const string& value2,
249 const char* variable2, const string& value2,
/external/deqp/data/gles31/shaders/es31/
Dlinkage_io_block.test27 mediump float variable2;
32 ${FRAG_COLOR} = vec4(variable1 + variable2);
48 mediump float variable2;
63 mediump float variable2;
69 ${FRAG_COLOR} = vec4(variable1 + variable2);
135 mediump float variable2;
140 ${FRAG_COLOR} = vec4(variable2);
Dlinkage_shader_storage_block.test30 mediump float variable2;
36 ${FRAG_COLOR} = vec4(vtx_val + variable1 + variable2);
53 mediump float variable2;
59 vtx_val = variable1 + variable2;
69 mediump float variable2;
76 ${FRAG_COLOR} = vec4(vtx_val + variable1 + variable2);
146 mediump float variable2;
152 ${FRAG_COLOR} = vec4(vtx_val + variable2);
/external/tensorflow/tensorflow/compiler/aot/
Dcodegen_test.cc181 tf2xla::Variable* variable2 = config.add_variable(); in TEST() local
182 variable2->set_node_name("my/var"); in TEST()
183 variable2->set_name("myvar2"); in TEST()
184 variable2->mutable_shape()->add_dim()->set_size(5); in TEST()
185 variable2->set_type(DT_INT32); in TEST()
/external/deqp/data/gles31/shaders/es32/
Dlinkage_io_block.test45 mediump float variable2;
50 ${FRAG_COLOR} = vec4(variable1 + variable2);
65 mediump float variable2;
80 mediump float variable2;
86 ${FRAG_COLOR} = vec4(variable1 + variable2);
150 mediump float variable2;
155 ${FRAG_COLOR} = vec4(variable2);
Dlinkage_shader_storage_block.test48 mediump float variable2;
54 ${FRAG_COLOR} = vec4(vtx_val + variable1 + variable2);
71 mediump float variable2;
77 vtx_val = variable1 + variable2;
87 mediump float variable2;
94 ${FRAG_COLOR} = vec4(vtx_val + variable1 + variable2);
164 mediump float variable2;
170 ${FRAG_COLOR} = vec4(vtx_val + variable2);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUnicodeRegex.java220 String variable2 = entry2.getKey(),
222 if (variable.equals(variable2)) {
228 variables.put(variable2, altered2);
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUnicodeRegex.java222 String variable2 = entry2.getKey(),
224 if (variable.equals(variable2)) {
230 variables.put(variable2, altered2);
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/MIR/X86/
Dkill-after-spill.mir35 define i32 @foo(i32 %variable2, i32 %variable1) local_unnamed_addr #0 !dbg !31 {
39 …call void @llvm.dbg.value(metadata i32 %variable2, metadata !36, metadata !DIExpression()), !dbg !…
48 %call1 = tail call %struct.thirdStruct* @func2(i32 %variable2, i32 %variable1)
60 …, i8* inttoptr (i64 or (i64 ptrtoint ([7 x i8]* @.str to i64), i64 -92238) to i8*), i32 %variable2)
179 !36 = !DILocalVariable(name: "variable2", arg: 1, scope: !31, file: !3, line: 50, type: !14)
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCParser.java158 SimpleCParser.variable_return variable2 = null; in declaration() local
182 variable2=variable(); in declaration()
186 adaptor.addChild(root_0, variable2.getTree()); in declaration()
DSimpleCParser.m1086 CommonToken *K_SEMICOLON4 = nil;SimpleCParser_variable_return * variable2 = nil ;
1119 variable2 = [self variable];
1124 [treeAdaptor addChild:[variable2 getTree] toTree:root_0];
/external/google-breakpad/src/testing/test/
Dgmock-generated-matchers_test.cc780 MATCHER_P2(ReferencesAnyOf, variable1, variable2, "") {
781 return &arg == &variable1 || &arg == &variable2;
/external/googletest/googlemock/test/
Dgmock-generated-matchers_test.cc771 MATCHER_P2(ReferencesAnyOf, variable1, variable2, "") {
772 return &arg == &variable1 || &arg == &variable2;
/external/curl/tests/
DFILEFORMAT291 variable2=contents2
/external/tensorflow/tensorflow/python/training/
Dsaver_test.py2738 variable2 = variables.VariableV1([2.0], name="variable2")
2739 saver2 = saver_module.Saver(var_list=[variable2], name="hidden2/")