Searched refs:GetType (Results 1 - 25 of 378) sorted by relevance

1234567891011>>

/external/lldb/examples/summaries/cocoa/
H A DSelector.py11 return valobj.Cast(valobj.GetType().GetBasicType(lldb.eBasicTypeChar).GetPointerType()).GetSummary()
14 return valobj.CreateValueFromAddress('text',valobj.GetValueAsUnsigned(0),valobj.GetType().GetBasicType(lldb.eBasicTypeChar)).AddressOf().GetSummary()
/external/lldb/source/Interpreter/
H A DOptionValue.cpp33 switch (GetType())
61 if (GetType () == OptionValue::eTypeBoolean)
69 if (GetType () == OptionValue::eTypeBoolean)
78 if (GetType () == OptionValue::eTypeFileSpec)
87 if (GetType () == OptionValue::eTypeFileSpec)
96 if (GetType () == OptionValue::eTypeFileSpecList)
105 if (GetType () == OptionValue::eTypeFileSpecList)
114 if (GetType () == OptionValue::eTypeArch)
123 if (GetType () == OptionValue::eTypeArch)
131 if (GetType ()
[all...]
/external/lldb/scripts/Python/interface/
H A DSBError.i83 GetType () const;
119 __swig_getmethods__["type"] = GetType
120 if _newclass: type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''')
H A DSBFunction.i81 GetType ();
120 __swig_getmethods__["type"] = GetType
121 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
H A DSBSymbol.i54 GetType ();
81 __swig_getmethods__["type"] = GetType
82 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
H A DSBEvent.i132 GetType () const;
H A DSBTypeNameSpecifier.i41 GetType ();
/external/lldb/include/lldb/Interpreter/
H A DOptionValueArgs.h38 GetType() const function in class:lldb_private::OptionValueArgs
/external/lldb/test/python_api/default-constructor/
H A Dsb_event.py10 obj.GetType()
H A Dsb_symbol.py15 obj.GetType()
H A Dsb_error.py13 obj.GetType()
/external/v8/build/android/pylib/instrumentation/
H A Dinstrumentation_test_instance_test.py44 self.assertEqual(base_test_result.ResultType.PASS, results[0].GetType())
65 self.assertEqual(base_test_result.ResultType.SKIP, results[0].GetType())
84 self.assertEqual(base_test_result.ResultType.PASS, results[0].GetType())
100 self.assertEqual(base_test_result.ResultType.FAIL, results[0].GetType())
118 self.assertEqual(base_test_result.ResultType.FAIL, results[0].GetType())
/external/lldb/test/functionalities/type_completion/
H A DTestTypeCompletion.py62 p_type = p_vector.GetType()
69 p_type = p_vector.GetType()
78 p_type = p_vector.GetType()
90 p_type = p_vector.GetType()
99 string = field0.GetType().GetPointeeType()
109 p_type = p_vector.GetType()
118 string = field0.GetType().GetPointeeType()
129 p_type = p_vector.GetType()
136 string = field0.GetType().GetPointeeType()
/external/pdfium/xfa/src/fwl/src/basewidget/
H A Dfxmath_barcodeimp.cpp52 BC_TYPE CFX_Barcode::GetType() { function in class:CFX_Barcode
53 return m_pBCEngine ? m_pBCEngine->GetType() : BC_UNKNOWN;
71 switch (GetType()) {
89 switch (GetType()) {
107 switch (GetType()) {
125 switch (GetType()) {
143 switch (GetType()) {
160 switch (GetType()) {
178 switch (GetType()) {
196 switch (GetType()) {
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_formfield.cpp12 if (pField->GetType() == CPDF_FormField::CheckBox) {
285 if (GetType() == CheckBox || GetType() == RadioButton) {
302 switch (pValue->GetType()) {
474 if (GetType() == ListBox) {
477 if (GetType() == ComboBox) {
487 if (GetType() == ListBox) {
490 if (GetType() == ComboBox) {
501 ASSERT(GetType() == ComboBox || GetType()
[all...]
H A Ddoc_formcontrol.cpp21 ASSERT(GetType() == CPDF_FormField::CheckBox ||
22 GetType() == CPDF_FormField::RadioButton);
40 ASSERT(GetType() == CPDF_FormField::CheckBox ||
41 GetType() == CPDF_FormField::RadioButton);
83 ASSERT(GetType() == CPDF_FormField::CheckBox ||
84 GetType() == CPDF_FormField::RadioButton);
86 if (GetType() == CPDF_FormField::RadioButton ||
87 GetType() == CPDF_FormField::CheckBox) {
98 ASSERT(GetType() == CPDF_FormField::CheckBox ||
99 GetType()
[all...]
/external/boringssl/src/crypto/evp/
H A Devp_test.cc132 if (t->GetType() == "PrivateKey") {
139 if (t->GetType() == "Decrypt") {
142 } else if (t->GetType() == "Sign") {
145 } else if (t->GetType() == "Verify") {
149 t->PrintLine("Unknown test '%s'", t->GetType().c_str());
180 if (t->GetType() == "Verify") {
/external/libbrillo/brillo/
H A Dflag_helper.cc36 const char* GetType() const override { return "bool"; }
67 const char* BoolFlag::GetType() const { function in class:brillo::BoolFlag
83 const char* Int32Flag::GetType() const { function in class:brillo::Int32Flag
99 const char* Int64Flag::GetType() const { function in class:brillo::Int64Flag
115 const char* UInt64Flag::GetType() const { function in class:brillo::UInt64Flag
131 const char* DoubleFlag::GetType() const { function in class:brillo::DoubleFlag
149 const char* StringFlag::GetType() const { function in class:brillo::StringFlag
225 flag->GetType(),
260 flag->GetType(),
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs161 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
165 return TreeAdaptor.GetType(LT(i));
209 int type = TreeAdaptor.GetType(o);
215 type = TreeAdaptor.GetType(o);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs186 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
191 return TreeAdaptor.GetType( LT( i ) );
242 int type = TreeAdaptor.GetType( o );
249 type = TreeAdaptor.GetType( o );
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
H A DfooSynthProvider.py5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
/external/lldb/test/functionalities/data-formatter/rdar-10887661/
H A DfooSynthProvider.py5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
/external/pdfium/core/src/fxge/android/
H A Dfpf_skiafontmgr.h29 virtual int32_t GetType() const { return FPF_SKIAFONTTYPE_Unknown; } function in class:CFPF_SkiaFontDescriptor
51 int32_t GetType() const override { return FPF_SKIAFONTTYPE_Path; }
68 int32_t GetType() const override { return FPF_SKIAFONTTYPE_File; }
77 int32_t GetType() const override { return FPF_SKIAFONTTYPE_Buffer; }
/external/gptfdisk/
H A Dsgdisk.cc57 << (int) mbrData.GetType(i) << dec << endl;
73 res << "PART " << (i + 1) << " " << partData.GetType() << " "
/external/lldb/source/API/
H A DSBTypeSummary.cpp104 if (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback)
115 if (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback)
154 if (m_opaque_sp->IsScripted() || (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback))
216 if (m_opaque_sp->GetType() != rhs.m_opaque_sp->GetType())
219 if (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback)
281 if (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback)
316 if (m_opaque_sp->GetType() == lldb_private::TypeSummaryImpl::eTypeCallback && !want_script)

Completed in 3320 milliseconds

1234567891011>>