/external/sonivox/jet_tools/JetCreator/ |
D | JetDialogs.py | 130 def GetValue(self, fld): member in JetEdit 132 return self.ctrls[fld].GetValue() 167 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue() 174 self.fileName = self.je.ctrls[JetDefs.F_JFILE].GetValue() 184 if len(self.je.ctrls[JetDefs.F_JFILE].GetValue()) == 0: 188 if not FileExists(self.je.ctrls[JetDefs.F_JFILE].GetValue()): 206 def GetValue(self, fld): member in JetPreferences 207 return self.je.ctrls[fld].GetValue() 228 def GetValue(self, fld): member in JetAbout 229 return self.je.ctrls[fld].GetValue() [all …]
|
D | JetCreator.py | 426 self.jet_file.AddSegment(replicate[0], dlg.GetValue(JetDefs.F_MIDIFILE), 429 … SegmentOutputFile(dlg.GetValue(JetDefs.F_SEGNAME), self.currentJetConfigFile), 430 dlg.GetValue(JetDefs.F_QUANTIZE), 431 [], dlg.GetValue(JetDefs.F_DLSFILE), 433 dlg.GetValue(JetDefs.F_TRANSPOSE), 434 dlg.GetValue(JetDefs.F_REPEAT), 435 dlg.GetValue(JetDefs.F_MUTEFLAGS)) 440 … self.jet_file.AddSegment(dlg.GetValue(JetDefs.F_SEGNAME), dlg.GetValue(JetDefs.F_MIDIFILE), 441 dlg.GetValue(JetDefs.F_START), dlg.GetValue(JetDefs.F_END), 443 … SegmentOutputFile(dlg.GetValue(JetDefs.F_SEGNAME), self.currentJetConfigFile), [all …]
|
D | JetCtrls.py | 58 def GetValue(self): member in JetSpinOneBased 59 val = wx.SpinCtrl.GetValue(self) 220 def GetValue(self): member in JetTrackCtrl 277 def GetValue(self): member in JetFileCombo 278 return StrNoneChk(self.cmb.GetValue()) 336 def GetValue(self): member in JetFileText 337 return StrNoneChk(self.txt.GetValue()) 440 if int(self.time[self.iCtrl].GetValue()) > self.mx[self.iCtrl]: 442 if int(self.time[self.iCtrl].GetValue()) < self.mn[self.iCtrl]: 450 if int(self.time[self.iCtrl].GetValue()) < self.mx[self.iCtrl]: [all …]
|
/external/lldb/test/functionalities/data-formatter/format-propagation/ |
D | TestFormatPropagation.py | 66 self.assertTrue(X.GetValue() == "1", "X has an invalid value") 67 self.assertTrue(Y.GetValue() == "2", "Y has an invalid value") 70 self.assertTrue(X.GetValue() == "0x00000001", "X has not changed format") 71 self.assertTrue(Y.GetValue() == "0x00000002", "Y has not changed format") 74 self.assertTrue(X.GetValue() == "0x00000004", "X has not become 4") 75 self.assertTrue(Y.GetValue() == "0x00000002", "Y has not stuck as hex") 78 self.assertTrue(X.GetValue() == "0x00000004", "X is still hex") 79 self.assertTrue(Y.GetValue() == "2", "Y has not been reset") 84 self.assertTrue(X.GetValue() == "0x00000004", "X is not hex as it asked") 85 self.assertTrue(Y.GetValue() == "2", "Y is not defaulted")
|
/external/lldb/examples/scripting/ |
D | tree_utils.py | 62 if left_child_ptr.GetValue() == None: 71 if right_child_ptr.GetValue() == None: 87 if (root.GetValue == None): 90 if (int (root.GetValue(), 16) == 0): 110 …if (root.GetChildAtIndex(1).GetValue() != None) and (int (root.GetChildAtIndex(1).GetValue(), 16) … 115 …if (root.GetChildAtIndex(2).GetValue() != None) and (int (root.GetChildAtIndex(2).GetValue(), 16) …
|
/external/lldb/source/Interpreter/ |
D | OptionValueProperties.cpp | 53 lldb::OptionValueSP new_value_sp (m_properties[i].GetValue()->DeepCopy()); in OptionValueProperties() 76 property.GetValue()->SetParent(shared_from_this()); in Initialize() 124 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue(); in GetValueForKey() 272 return setting->GetValue(); in GetPropertyValueAtIndex() 299 return property->GetValue()->GetAsArch(); in GetPropertyAtIndexAsOptionValueArch() 309 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs() 332 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs() 355 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean() 368 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsBoolean() 383 return property->GetValue()->GetAsDictionary(); in GetPropertyAtIndexAsOptionValueDictionary() [all …]
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | proc_cpuinfo_reader_unittest.cc | 80 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 108 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 112 ASSERT_STREQ("tut", reader.GetValue()); in TEST() 125 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 138 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 151 ASSERT_STREQ("tut", reader.GetValue()); in TEST() 164 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 168 ASSERT_STREQ("bar", reader.GetValue()); in TEST() 181 ASSERT_STREQ("zoo", reader.GetValue()); in TEST()
|
/external/v8/src/base/platform/ |
D | platform-unittest.cc | 69 Thread::SetThreadLocal(keys_[i], GetValue(i)); in Run() 75 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys_[i])); in Run() 76 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys_[i])); in Run() 79 Thread::SetThreadLocal(keys_[i], GetValue(arraysize(keys_) - i - 1)); in Run() 85 CHECK_EQ(GetValue(arraysize(keys_) - i - 1), in Run() 87 CHECK_EQ(GetValue(arraysize(keys_) - i - 1), in Run() 93 static void* GetValue(size_t x) { in GetValue() function in v8::base::__anon2c1d75e90211::ThreadLocalStorageTest
|
/external/lldb/source/Expression/ |
D | ClangExpressionVariable.cpp | 68 return m_frozen_sp->GetValue().GetRegisterInfo(); in GetRegisterInfo() 74 …return m_frozen_sp->GetValue().SetContext (Value::eContextTypeRegisterInfo, const_cast<RegisterInf… in SetRegisterInfo() 86 m_frozen_sp->GetValue().SetClangType(clang_type); in SetClangType() 105 m_frozen_sp->GetValue().ResizeData(byte_size); in GetValueBytes() 106 m_frozen_sp->GetValue().GetData (m_frozen_sp->GetDataExtractor()); in GetValueBytes()
|
/external/lldb/test/lang/cpp/dynamic-value/ |
D | TestDynamicValue.py | 47 this_static_loc = int (this_static.GetValue(), 16) 54 this_dynamic_loc = int (this_dynamic.GetValue(), 16) 72 m_b_value = int (this_dynamic_m_b_value.GetValue(), 0) 94 contained_b_addr = int (contained_b.GetValue(), 16) 95 contained_b_static_addr = int (contained_b_static.GetValue(), 16) 191 anotherA_static_addr = int (anotherA_static.GetValue(), 16) 195 anotherA_dynamic_addr = int (anotherA_dynamic.GetValue(), 16) 203 anotherA_m_b_val = int (anotherA_m_b_value_dynamic.GetValue(), 10) 230 anotherA_loc = int (anotherA_value.GetValue(), 16)
|
/external/lldb/test/python_api/value/linked_list/ |
D | TestValueAPILinkedList.py | 81 list.append(int(t.GetChildMemberWithName("id").GetValue())) 94 if not val or int(val.GetValue(), 16) == 0: 98 if int(val.GetChildMemberWithName("id").GetValue(), 0) <= 0: 111 list.append(int(t.GetChildMemberWithName("id").GetValue())) 128 list.append(int(t.GetChildMemberWithName("id").GetValue())) 142 list.append(int(t.GetChildMemberWithName("id").GetValue()))
|
/external/lldb/test/expression_command/test/ |
D | TestExprs.py | 139 self.expect(val.GetValue(), "2.345 evaluated correctly", exe=False, 146 self.expect(val.GetValue(), "Argc evaluated correctly", exe=False, 151 self.expect(val.GetValue(), "Argv[1] evaluated correctly", exe=False, 156 self.expect(val.GetValue(), "Argv[2] evaluated correctly", exe=False, 161 self.expect(val.GetValue(), "Argv[3] evaluated correctly", exe=False,
|
/external/lldb/tools/lldb-perf/lib/ |
D | Results.cpp | 68 double d = result->GetAsDouble()->GetValue(); in AddResultToArray() 76 CFCString cfstr (result->GetAsString()->GetValue()); in AddResultToArray() 84 uint64_t uval64 = result->GetAsUnsigned()->GetValue(); in AddResultToArray() 138 parent_dict.SetValueDouble(cf_key.get(), result->GetAsDouble()->GetValue(), true); in AddResultToDictionary() 143 parent_dict.SetValueCString(cf_key.get(), result->GetAsString()->GetValue(), true); in AddResultToDictionary() 149 parent_dict.SetValueUInt64 (cf_key.get(), result->GetAsUnsigned()->GetValue(), true); in AddResultToDictionary()
|
D | Results.h | 222 GetValue () const in GetValue() function 251 GetValue () const in GetValue() function 280 GetValue () const in GetValue() function
|
/external/lldb/test/python_api/lldbutil/iter/ |
D | TestRegistersIterator.py | 59 print "%s => %s" % (reg.GetName(), reg.GetValue()) 68 print "%s => %s" % (reg.GetName(), reg.GetValue()) 77 print "%s => %s" % (reg.GetName(), reg.GetValue())
|
/external/lldb/test/functionalities/return-value/ |
D | TestReturnValue.py | 58 in_child_str = in_child.GetValue() 81 in_child_str = in_child.GetValue() 82 ret_child_str = ret_child.GetValue() 172 in_float = float (in_value.GetValue()) 184 return_float = float (return_value.GetValue())
|
/external/lldb/test/lang/c/bitfields/ |
D | TestBitfields.py | 165 int(b1.GetValue(), 0) == 1, 173 int(b7.GetValue(), 0) == 127, 181 int(four.GetValue(), 0) == 15,
|
/external/clang/test/SemaCXX/ |
D | warn-tautological-compare.cpp | 30 #define GetValue(ptr) ((ptr != 0) ? ptr[0] : 0) macro 40 (void)GetValue(b); in ignore()
|
D | warn-bool-conversion.cpp | 71 #define GetValue(ptr) ((ptr) ? ptr[0] : 0) macro 81 (void)GetValue(b); in ignore()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
D | Antlr.Runtime.Tools.Tests.pas | 112 function GetValue: String; in GetValue() function 114 property Value: String read GetValue write SetValue; 119 function GetValue: String; in GetValue() function 124 function TFoo.GetValue: String; in TFoo.GetValue() function 157 ReturnValue := FIANTLRString.GetValue;
|
/external/pdfium/fpdfsdk/src/formfiller/ |
D | FFL_TextField.cpp | 118 CFX_WideString swValue = m_pWidget->GetValue(); in NewPDFWindow() 187 return pEdit->GetText() != m_pWidget->GetValue(); in IsDataChanged() 198 CFX_WideString sOldValue = m_pWidget->GetValue(); in SaveData() 236 fa.sValue = m_pWidget->GetValue(); in GetActionData()
|
D | FFL_ComboBox.cpp | 86 swText = m_pWidget->GetValue(); in NewPDFWindow() 122 return pWnd->GetText() != m_pWidget->GetValue(); in IsDataChanged() 166 sOldValue = m_pWidget->GetValue(); in SaveData() 223 fa.sValue = m_pWidget->GetValue(); in GetActionData()
|
/external/lldb/test/python_api/frame/ |
D | TestFrames.py | 95 val.GetValue())) 103 …self.assertTrue (int(pc_value.GetValue(), 0) == frame.GetPC(), "PC gotten as a value should equal … 106 …self.assertTrue (int(sp_value.GetValue(), 0) == frame.GetSP(), "SP gotten as a value should equal …
|
/external/lldb/include/lldb/DataFormatters/ |
D | TypeFormat.h | 118 GetValue () in GetValue() function 192 return m_flags.GetValue(); in GetOptions()
|
/external/lldb/source/Core/ |
D | ValueObjectChild.cpp | 125 m_value.GetScalar() = parent->GetValue().GetScalar(); in UpdateValue() 126 Value::ValueType value_type = parent->GetValue().GetValueType(); in UpdateValue()
|