Searched refs:GetField (Results 1 - 25 of 52) sorted by relevance

123

/external/toolchain-utils/crosperf/
H A Dsettings_factory_unittest.py20 self.assertEqual(res.GetField('test_name'), '')
21 self.assertEqual(res.GetField('test_args'), '')
22 self.assertEqual(res.GetField('iterations'), 1)
23 self.assertEqual(res.GetField('suite'), '')
33 self.assertEqual(res.GetField('chromeos_image'), '')
34 self.assertEqual(res.GetField('autotest_path'), '')
35 self.assertEqual(res.GetField('chromeos_root'), '')
36 self.assertEqual(res.GetField('remote'), None)
37 self.assertEqual(res.GetField('image_args'), '')
38 self.assertEqual(res.GetField('cache_di
[all...]
H A Dexperiment_factory.py110 experiment_name = global_settings.GetField('name')
111 board = global_settings.GetField('board')
112 remote = global_settings.GetField('remote')
121 chromeos_root = global_settings.GetField('chromeos_root')
122 rm_chroot_tmp = global_settings.GetField('rm_chroot_tmp')
123 perf_args = global_settings.GetField('perf_args')
124 acquire_timeout = global_settings.GetField('acquire_timeout')
125 cache_dir = global_settings.GetField('cache_dir')
126 cache_only = global_settings.GetField('cache_only')
127 config.AddConfig('no_email', global_settings.GetField('no_emai
[all...]
H A Dexperiment_file_unittest.py94 self.assertEqual(global_settings.GetField('remote'), ['chromeos-alex3'])
96 global_settings.GetField('perf_args'), 'record -a -e cycles')
100 self.assertEqual(benchmark_settings[0].GetField('iterations'), 3)
105 self.assertEqual(label_settings[0].GetField('chromeos_image'),
107 self.assertEqual(label_settings[1].GetField('remote'), ['chromeos-lumpy1'])
108 self.assertEqual(label_settings[0].GetField('remote'), ['chromeos-alex3'])
114 self.assertEqual(global_settings.GetField('remote'), ['chromeos-alex3'])
119 self.assertEqual(benchmark_settings[0].GetField('iterations'), 3)
121 self.assertEqual(benchmark_settings[1].GetField('iterations'), 2)
H A Dcrosperf_unittest.py58 self.assertTrue(settings.GetField('rerun'))
62 self.assertFalse(settings.GetField('rerun'))
H A Dsettings_unittest.py101 self.assertRaises(Exception, self.settings.GetField, 'iterations')
111 self.assertRaises(Exception, self.settings.GetField, 'iterations')
115 res = self.settings.GetField('iterations')
123 self.assertEqual(parent_settings.GetField('chromeos_root'), '')
124 self.assertEqual(label_settings.GetField('chromeos_root'), '')
129 self.assertEqual(parent_settings.GetField('chromeos_root'), '/tmp/chromeos')
130 self.assertEqual(label_settings.GetField('chromeos_root'), '')
132 self.assertEqual(label_settings.GetField('chromeos_root'), '/tmp/chromeos')
149 res = self.settings.GetField('email')
153 res = self.settings.GetField('emai
[all...]
H A Dsettings.py39 def GetField(self, name): member in class:Settings
55 self.fields[name].Set(self.parent.GetField(name), parse=False)
61 self.fields[name].Set(settings.GetField(name), parse=False)
H A Dcrosperf.py110 if not experiment_file.GetGlobalSettings().GetField('name'):
116 json_report = experiment_file.GetGlobalSettings().GetField('json_report')
/external/pdfium/core/fpdfdoc/
H A Dcpdf_actionfields.h23 CPDF_Object* GetField(size_t iIndex) const;
H A Dcpdf_actionfields.cpp70 CPDF_Object* CPDF_ActionFields::GetField(size_t iIndex) const { function in class:CPDF_ActionFields
H A Dcpdf_formcontrol.h53 CPDF_FormField* GetField() const { return m_pField; } function in class:CPDF_FormControl
H A Dcpdf_interform.h53 CPDF_FormField* GetField(uint32_t index,
H A Dcpdf_interform.cpp417 CPDF_FormField* GetField() { return m_pField; } function in class:CFieldTree::Node
418 const CPDF_FormField* GetField() const { return m_pField; } function in class:CFieldTree::Node
460 CPDF_FormField* GetField(const CFX_WideString& full_name);
544 CPDF_FormField* CFieldTree::GetField(const CFX_WideString& full_name) { function in class:CFieldTree
560 return pNode ? pNode->GetField() : nullptr;
883 CPDF_FormField* CPDF_InterForm::GetField( function in class:CPDF_InterForm
899 return m_pFieldTree->GetField(csWName);
1092 pField = m_pFieldTree->GetField(csWName);
1288 CPDF_FormField* pField = m_pFieldTree->GetField(name);
/external/protobuf/python/google/protobuf/internal/
H A Dunknown_fields_test.py156 # All the tests that use GetField() check an implementation detail of the
161 def GetField(self, name): member in class:UnknownFieldsAccessorsTest
174 value = self.GetField('optional_nested_enum')
179 value = self.GetField('repeated_nested_enum')
184 value = self.GetField('optional_int32')
189 value = self.GetField('optional_fixed32')
194 value = self.GetField('optional_fixed64')
199 value = self.GetField('optional_string')
204 value = self.GetField('optionalgroup')
267 # All the tests that use GetField() chec
272 def GetField(self, name): member in class:UnknownEnumValuesTest
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs63 FieldInfo field = type.GetField( name );
/external/junit/src/main/java/org/junit/runner/
H A DResult.java172 private SerializedForm(ObjectInputStream.GetField fields) throws IOException {
192 ObjectInputStream.GetField fields = s.readFields();
/external/flatbuffers/include/flatbuffers/
H A Dreflection_generated.h81 return static_cast<BaseType>(GetField<int8_t>(VT_BASE_TYPE, 0));
84 return static_cast<BaseType>(GetField<int8_t>(VT_ELEMENT, 0));
87 return GetField<int32_t>(VT_INDEX, -1);
213 return GetField<int64_t>(VT_VALUE, 0);
313 return GetField<uint8_t>(VT_IS_UNION, 0) != 0;
443 return GetField<uint16_t>(VT_ID, 0);
446 return GetField<uint16_t>(VT_OFFSET, 0);
449 return GetField<int64_t>(VT_DEFAULT_INTEGER, 0);
452 return GetField<double>(VT_DEFAULT_REAL, 0.0);
455 return GetField<uint8_
[all...]
/external/flatbuffers/tests/
H A Dmonster_test_generated.h311 return static_cast<Color>(GetField<int8_t>(VT_COLOR, 2));
379 return GetField<int64_t>(VT_VAL, 0);
385 return GetField<uint16_t>(VT_COUNT, 0);
541 return GetField<int16_t>(VT_MANA, 150);
547 return GetField<int16_t>(VT_HP, 100);
571 return static_cast<Color>(GetField<int8_t>(VT_COLOR, 8));
577 return static_cast<Any>(GetField<uint8_t>(VT_TEST_TYPE, 0));
631 return GetField<uint8_t>(VT_TESTBOOL, 0) != 0;
637 return GetField<int32_t>(VT_TESTHASHS32_FNV1, 0);
643 return GetField<uint32_
[all...]
/external/protobuf/src/google/protobuf/
H A Dunknown_field_set_unittest.cc69 const UnknownField* GetField(const string& name) { function in class:google::protobuf::UnknownFieldSetTest
141 const UnknownField* field = GetField("optional_int32");
149 const UnknownField* field = GetField("optional_fixed32");
157 const UnknownField* field = GetField("optional_fixed64");
165 const UnknownField* field = GetField("optional_string");
173 const UnknownField* field = GetField("optionalgroup");
/external/flatbuffers/src/
H A Didl_gen_text.cpp232 reinterpret_cast<const Struct *>(table)->GetField<T>(fd.value.offset) :
233 table->GetField<T>(fd.value.offset, 0), fd.value.type, indent, nullptr,
306 table->GetField<uint8_t>(fd.value.offset, 0));
/external/flatbuffers/tests/union_vector/
H A Dunion_vector_generated.h66 return GetField<int32_t>(VT_SWORD_ATTACK_DAMAGE, 0);
106 return GetField<int32_t>(VT_HAIR_LENGTH, 0);
146 return GetField<int32_t>(VT_BOOKS_READ, 0);
/external/flatbuffers/tests/namespace_test/
H A Dnamespace_test1_generated.h75 return GetField<int32_t>(VT_FOO, 0);
/external/v8/src/debug/
H A Dliveedit.h222 Handle<Object> GetField(int field_position) { function in class:v8::internal::JSArrayBasedStruct
228 Handle<Object> res = GetField(field_position);
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
H A DNaClBitcodeHeader.h232 NaClBitcodeHeaderField *GetField(size_t index) const;
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DNaClBitcodeHeader.cpp271 NaClBitcodeHeaderField *NaClBitcodeHeader::GetField(size_t index) const { function in class:NaClBitcodeHeader
310 NaClBitcodeHeaderField *Field = GetField(i);
/external/v8/src/compiler/
H A Descape-analysis.cc166 Node* GetField(size_t offset) { return fields_[offset]; } function in class:v8::internal::compiler::VirtualObject
353 : objects_.front()->GetField(pos);
356 Node* field = obj->GetField(pos);
447 Node* rep = GetField(i);
495 if (!initialMerge && GetField(i) == nullptr) continue;
498 changed = changed || GetField(i) != field;
508 if (GetField(i) != nullptr) {
1502 Node* value = object->GetField(offset);
1534 Node* value = object->GetField(offset);
1590 if (object->GetField(offse
[all...]

Completed in 525 milliseconds

123