Searched refs:summary (Results 51 - 75 of 285) sorted by relevance

1234567891011>>

/external/lldb/examples/summaries/cocoa/
H A DNSIndexSet.py8 # example summary provider for NS(Mutable)IndexSet
9 # the real summary is now C++ code built into LLDB
135 summary = provider.count();
137 summary = None
138 logger >> "got summary " + str(summary)
139 if summary == None:
140 summary = '<variable is not NSIndexSet>'
141 if isinstance(summary, basestring):
142 return summary
[all...]
H A DNSBundle.py8 # example summary provider for NSBundle
9 # the real summary is now C++ code built into LLDB
24 # trying to provide anything but a summary for an NSURL, so they need not
117 summary = provider.url_text();
119 summary = None
120 logger >> "got summary " + str(summary)
121 if summary == None or summary == '':
122 summary
[all...]
H A DNSMachPort.py8 # example summary provider for NSMachPort
9 # the real summary is now C++ code built into LLDB
111 summary = provider.port();
113 summary = None
114 logger >> "got summary " + str(summary)
115 if summary == None:
116 summary = '<variable is not NSMachPort>'
117 if isinstance(summary, basestring):
119 return 'mach port: ' + str(summary)
[all...]
H A DNSURL.py8 # summary provider for NSURL
23 # trying to provide anything but a summary for an NSURL, so they need not
127 summary = provider.url_text();
129 summary = None
130 logger >> "got summary " + str(summary)
131 if summary == None or summary == '':
132 summary = '<variable is not NSURL>'
133 return summary
[all...]
H A DCFArray.py8 # example summary provider for NSArray
9 # the real summary is now C++ code built into LLDB
189 summary = int(provider.num_children());
191 summary = None
192 logger >> "provider gave me " + str(summary)
193 if summary == None:
194 summary = '<variable is not NSArray>'
195 elif isinstance(summary,basestring):
198 # we format it like it were a CFString to make it look the same as the summary from Xcode
199 summary
[all...]
H A DNSException.py8 # summary provider for class NSException
104 summary = provider.description();
106 summary = None
107 logger >> "got summary " + str(summary)
108 if summary == None:
109 summary = '<variable is not NSException>'
110 return str(summary)
114 debugger.HandleCommand("type summary add -F NSException.NSException_SummaryProvider NSException")
H A DNSNotification.py8 # example summary provider for NSNotification
9 # the real summary is now C++ code built into LLDB
100 summary = provider.name();
102 summary = None
103 logger >> "got summary " + str(summary)
104 if summary == None:
105 summary = '<variable is not NSNotification>'
106 return str(summary)
110 debugger.HandleCommand("type summary ad
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas50 /// <summary>
59 /// </summary>
66 /// <summary>
69 /// </summary>
75 /// <summary>Duplicate a single tree node </summary>
79 /// <summary>Duplicate tree recursively, using DupNode() for each node </summary>
82 /// <summary>
86 /// </summary>
[all...]
/external/ceres-solver/internal/ceres/
H A Ddogleg_strategy_test.cc142 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
147 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
162 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
167 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
182 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
187 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
244 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
249 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
272 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
277 EXPECT_NE(summary
[all...]
H A Dline_search_minimizer.h71 Solver::Summary* summary);
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dmanual.css94 .summary {
101 .summary .results .failed {
106 .summary .results .failed.none {
111 .summary .results .passed {
116 .summary .results .passed.none {
/external/clang/utils/
H A DClangDataFormat.py25 debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLocation")
26 debugger.HandleCommand("type summary add -F ClangDataFormat.QualType_summary clang::QualType")
27 debugger.HandleCommand("type summary add -F ClangDataFormat.StringRef_summary llvm::StringRef")
30 return SourceLocation(srcloc).summary()
33 return QualType(qualty).summary()
36 return StringRef(strref).summary()
60 def summary(self): member in class:SourceLocation
76 def summary(self): member in class:QualType
88 def summary(self): member in class:StringRef
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py13 # file on your local machine, a small summary of what the file is, a
59 def upload(file, project_name, user_name, password, summary, labels=None):
68 summary: A small description for the file.
83 form_fields = [('summary', summary)]
155 def upload_find_auth(file_path, project_name, summary, labels=None,
159 file_path, project_name, summary, and labels are passed as-is to upload.
164 summary: A small description for the file.
195 summary, labels)
212 parser.add_option('-s', '--summary', des
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPreference.java23 protected CharSequence summary; field in class:ShadowPreference
114 this.summary = context.getResources().getText(summaryResId);
118 public void setSummary(CharSequence summary) { argument
119 this.summary = summary;
124 return summary;
/external/ceres-solver/examples/
H A Dcircle_fit.cc153 Solver::Summary summary; local
154 Solve(options, &problem, &summary);
159 std::cout << summary.BriefReport() << "\n";
H A Dpowell.cc144 Solver::Summary summary; local
145 Solve(options, &problem, &summary);
147 std::cout << summary.FullReport() << "\n";
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXImageMapLink.cpp119 const AtomicString& summary = getAttribute(summaryAttr); local
120 if (!summary.isEmpty())
121 return summary;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSummaryElement.cpp40 RefPtrWillBeRawPtr<HTMLSummaryElement> summary = adoptRefWillBeNoop(new HTMLSummaryElement(document)); local
41 summary->ensureUserAgentShadowRoot();
42 return summary.release();
/external/lldb/source/Interpreter/
H A DOptionGroupVariable.cpp37 { LLDB_OPT_SET_1, false, "summary", 'y', required_argument, NULL, 0, eArgTypeName, "Specify the summary that the variable output should use."},
38 { LLDB_OPT_SET_2, false, "summary-string", 'z', required_argument, NULL, 0, eArgTypeName, "Specify a summary string to use to format the variable output."},
45 return Error("must specify a valid named summary");
48 return Error("must specify a valid named summary");
56 return Error("must specify a non-empty summary string");
63 summary(ValidateNamedSummary),
92 error = summary.SetCurrentValue(option_arg);
114 summary
[all...]
/external/lldb/www/cpp_reference/html/
H A Ddynsections.js4 var summary = $('#'+base+'-summary');
10 summary.show();
15 summary.hide();
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcpdtrtst.h25 * @summary General test of Compound Transliterator
56 const UnicodeString& summary, UBool pass,
H A Djamotest.h24 * @summary Test of Latin-Jamo and Jamo-Latin rules
46 const UnicodeString& summary, UBool pass,
/external/icu/icu4c/source/test/intltest/
H A Dcpdtrtst.h25 * @summary General test of Compound Transliterator
56 const UnicodeString& summary, UBool pass,
H A Djamotest.h24 * @summary Test of Latin-Jamo and Jamo-Latin rules
46 const UnicodeString& summary, UBool pass,
/external/lldb/include/lldb/Interpreter/
H A DOptionGroupVariable.h56 OptionValueString summary; // the name of a named summary member in class:lldb_private::OptionGroupVariable
57 OptionValueString summary_string; // a summary string

Completed in 5950 milliseconds

1234567891011>>