Searched defs:details (Results 1 - 25 of 67) sorted by relevance

123

/external/parameter-framework/utility/
H A Dconvert.hpp39 /* details namespace is here to hide implementation details to header end user. It
41 namespace details namespace
97 } // namespace details
118 return details::convertTo<T>(str, result);
170 if (!details::convertTo(str, result)) {
200 if (!details::convertTo(str, result)) {
/external/pdfium/fpdfsdk/src/javascript/
H A Dresource.cpp57 const CFX_WideString& details) {
64 result += details;
55 JSFormatErrorString(const char* class_name, const char* property_name, const CFX_WideString& details) argument
/external/linux-tools-perf/src/tools/perf/
H A Dbuiltin-evlist.c18 static int __cmd_evlist(const char *file_name, struct perf_attr_details *details) argument
28 perf_evsel__fprintf(pos, details, stdout);
36 struct perf_attr_details details = { .verbose = false, }; local
39 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"),
40 OPT_BOOLEAN('v', "verbose", &details.verbose,
41 "Show all event attr details"),
42 OPT_BOOLEAN('g', "group", &details.event_group,
55 if (details.event_group && (details.verbose || details
[all...]
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DDigestAuthentication.java35 Map details; field in class:DigestAuthentication
37 public DigestAuthentication(Realm realm, Map details) argument
40 this.details=details;
51 buffer.append(", ").append("realm").append('=').append('"').append(String.valueOf(details.get("realm"))).append('"');
53 buffer.append(", ").append("nonce").append('=').append('"').append(String.valueOf(details.get("nonce"))).append('"');
57 buffer.append(", ").append("algorithm").append('=').append(String.valueOf(details.get("algorithm")));
59 String cnonce = newCnonce(exchange, securityRealm, details);
62 exchange, securityRealm, details)).append('"');
64 buffer.append(", ").append("qop").append('=').append(String.valueOf(details
75 newResponse(String cnonce, HttpExchange exchange, Realm securityRealm, Map details) argument
116 newCnonce(HttpExchange exchange, Realm securityRealm, Map details) argument
[all...]
/external/v8/src/
H A Dd8-debug.cc42 // Print the event details.
43 Handle<Object> details = local
49 String::Utf8Value str(details->Get(String::NewFromUtf8(isolate, "text")));
114 // Convert the debugger response into text details and the running state.
H A Dfield-index-inl.h95 PropertyDetails details = local
100 details.representation().IsDouble());
H A Dd8.js133 var details = {text:'', running:false};
136 details.running = response.running();
167 details.text = result;
195 details.text = result;
208 details.text = result;
212 details.text = 'Unknown debug event ' + response.event();
215 return details;
1336 var details = { text: '', running: false };
1340 details.text = response.message();
1341 return details;
[all...]
H A Dliveedit-debugger.js59 var details = {
63 CopyErrorPositionToDetails(e, details);
64 failure.details = details;
824 // An object describing function compilation details. Its index fields
976 function CopyErrorPositionToDetails(e, details) {
998 details.position = position_struct;
H A Dproperty.h47 void Init(Handle<Name> key, Handle<Object> value, PropertyDetails details) { argument
50 details_ = details;
53 Descriptor(Handle<Name> key, Handle<Object> value, PropertyDetails details) argument
56 details_(details) { }
133 void DescriptorResult(JSObject* holder, PropertyDetails details, int number) { argument
137 details_ = details;
H A Djson-parser.h390 PropertyDetails details = local
392 Representation expected_representation = details.representation();
H A Djson-stringifier.h651 PropertyDetails details = map->instance_descriptors()->GetDetails(i); local
652 if (details.IsDontEnum()) continue;
654 if (details.type() == FIELD && *map == object->map()) {
H A Dstring-stream.cc338 PropertyDetails details = descs->GetDetails(i); local
339 if (details.type() == FIELD) {
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
H A DDeqpInstrumentation.java168 public void testCaseResult (String code, String details) argument
174 info.putString("dEQP-TestCaseResult-Details", details);
/external/deqp/modules/glshared/
H A DglsFboCompletenessTests.hpp42 namespace details namespace in namespace:deqp::gls::fboc
137 } // details
139 using details::Context;
140 using details::TestBase;
141 using details::ParamTest;
142 using details::gl;
H A DglsFboCompletenessTests.cpp60 namespace details namespace in namespace:deqp::gls::fboc
1046 } // details
H A DglsLifetimeTests.hpp44 namespace details namespace in namespace:deqp::gls::LifetimeTests
402 } // details
404 using details::BindFunc;
405 using details::GenFunc;
406 using details::DeleteFunc;
407 using details::ExistsFunc;
409 using details::Context;
410 using details::Binder;
411 using details::SimpleBinder;
412 using details
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DHtmlTooltipHelper.java51 public static Control createTooltipControl(Composite parent, String header, String details) { argument
52 return createTooltipControl(parent, header, details, 0);
57 String details,
66 html += "<tr><td align=justify>" + details + "</td></tr>";
70 control = createTooltipControl_Label(parent, details);
55 createTooltipControl(Composite parent, String header, String details, int heightLimit) argument
/external/parameter-framework/xmlserializer/
H A DXmlDocSource.cpp258 xmlError* details = xmlGetLastError(); local
259 if (details != NULL) {
260 errorMsg += ": " + string(details->message);
268 xmlError* details = xmlGetLastError(); local
269 if (details != NULL) {
270 errorMsg += ": " + string(details->message);
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.hpp34 // Hide implementation-private types in a details namespace.
35 namespace details namespace in namespace:de
243 } // details
245 using details::UniquePtr;
246 using details::MovePtr;
247 using details::newMovePtr;
/external/deqp/framework/platform/android/
H A DtcuTestLogParserJNI.cpp57 void testCaseResult (const char* statusCode, const char* details);
149 void TestLogListener::testCaseResult (const char* statusCode, const char* details) argument
152 jstring jDetails = m_env->NewStringUTF(details);
/external/valgrind/coregrind/
H A Dm_tooliface.c22 General Public License for more details.
57 /* Setting details */
60 VgDetails VG_(details) = { variable
73 VG_(details).detail = detail; \
118 CHECK_NOT(VG_(details).name, NULL);
120 CHECK_NOT(VG_(details).description, NULL);
121 CHECK_NOT(VG_(details).copyright_author, NULL);
122 CHECK_NOT(VG_(details).bug_reports_to, NULL);
/external/selinux/libsepol/cil/test/unit/
H A DCuTest.c328 void CuSuiteDetails(CuSuite* testSuite, CuString* details) argument
337 CuStringAppendFormat(details, "OK (%d %s)\n", passCount, testWord);
342 CuStringAppend(details, "There was 1 failure:\n");
344 CuStringAppendFormat(details, "There were %d failures:\n", testSuite->failCount);
352 CuStringAppendFormat(details, "%d) %s: %s\n",
356 CuStringAppend(details, "\n!!!FAILURES!!!\n");
358 CuStringAppendFormat(details, "Runs: %d ", testSuite->count);
359 CuStringAppendFormat(details, "Passes: %d ", testSuite->count - testSuite->failCount);
360 CuStringAppendFormat(details, "Fails: %d\n", testSuite->failCount);
/external/v8/src/ic/ia32/
H A Dhandler-compiler-ia32.cc340 PropertyDetails details = descriptors->GetDetails(descriptor); local
341 Representation representation = details.representation();
344 if (details.type() == CONSTANT) {
390 if (details.type() == FIELD &&
414 if (details.type() == CONSTANT) {
/external/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc335 PropertyDetails details = descriptors->GetDetails(descriptor); local
336 Representation representation = details.representation();
339 if (details.type() == CONSTANT) {
384 if (details.type() == FIELD &&
408 if (details.type() == CONSTANT) {
/external/v8/src/ic/x87/
H A Dhandler-compiler-x87.cc340 PropertyDetails details = descriptors->GetDetails(descriptor); local
341 Representation representation = details.representation();
344 if (details.type() == CONSTANT) {
392 if (details.type() == FIELD &&
416 if (details.type() == CONSTANT) {

Completed in 1572 milliseconds

123