HomeSort by relevance Sort by last modified time
    Searched refs:details (Results 101 - 125 of 1022) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/src/compiler/
access-info.cc 247 PropertyDetails const details = descriptors->GetDetails(number); local
250 if (details.IsReadOnly()) {
254 if (details.kind() == kData && !holder.is_null()) {
261 if (details.type() == DATA_CONSTANT) {
266 } else if (details.type() == DATA) {
268 Representation field_representation = details.representation();
277 // Extract the field type from the property details (make sure its
438 PropertyDetails const details = local
441 if (details.IsReadOnly()) return false;
443 if (details.type() != DATA) return false
    [all...]
  /external/compiler-rt/lib/builtins/
Makefile.mk 6 # License. See LICENSE.TXT for details.
  /external/compiler-rt/lib/builtins/arm/
Makefile.mk 6 # License. See LICENSE.TXT for details.
  /external/compiler-rt/lib/lsan/
Makefile.mk 6 # License. See LICENSE.TXT for details.
  /external/compiler-rt/lib/sanitizer_common/
Makefile.mk 6 # License. See LICENSE.TXT for details.
  /external/llvm/bindings/go/llvm/
linker.go 6 // License. See LICENSE.TXT for details.
string_test.go 6 // License. See LICENSE.TXT for details.
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 6 * License. See LICENSE.TXT for details.
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 6 * License. See LICENSE.TXT for details.
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
llvm_passmgr_builder.ml 6 * License. See LICENSE.TXT for details.
  /external/parameter-framework/upstream/test/functional-tests/include/
FailureWrapper.hpp 38 namespace details namespace in namespace:parameterFramework
52 } // namespace details
130 if (not details::successTest(res)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaObject.java 124 MediaDetails details = new MediaDetails(); local
125 return details;
  /prebuilts/go/darwin-x86/misc/cgo/test/
setgid_linux.go 6 // See https://golang.org/issue/3871 for details.
  /prebuilts/go/linux-x86/misc/cgo/test/
setgid_linux.go 6 // See https://golang.org/issue/3871 for details.
  /tools/test/connectivity/acts/framework/acts/
records.py 43 RECORD_DETAILS = "Details"
59 self.details: A string explaining the details of the test case.
70 self.details = None
92 self.details = e.details
95 self.details = str(e)
172 d[TestResultEnums.RECORD_DETAILS] = self.details
183 'Details': <details>,
    [all...]
  /external/v8/src/runtime/
runtime-collections.cc 135 Handle<FixedArray> details = isolate->factory()->NewFixedArray(4); local
136 details->set(0, isolate->heap()->ToBoolean(holder->HasMore()));
137 details->set(1, holder->index());
138 details->set(2, holder->kind());
139 return *isolate->factory()->NewJSArrayWithElements(details);
222 Handle<FixedArray> details = isolate->factory()->NewFixedArray(4); local
223 details->set(0, isolate->heap()->ToBoolean(holder->HasMore()));
224 details->set(1, holder->index());
225 details->set(2, holder->kind());
226 return *isolate->factory()->NewJSArrayWithElements(details);
    [all...]
  /external/owasp/sanitizer/empiricism/
canned-data.js 38 "details": true,
164 "details",
279 "details",
394 "details",
509 "details",
624 "details",
740 "details",
855 "details",
970 "details",
1085 "details",
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 72 String details = cursor.getString(detailsIndex); local
78 dataOutput.writeUTF(details != null ? details : "");
114 String details = dataInput.readUTF(); local
121 values[i].put(TestResultsProvider.COLUMN_TEST_DETAILS, details);
TestResultsReport.java 73 private static final String TEST_DETAILS_TAG = "details";
126 String details = mAdapter.getTestDetails(i); local
127 if (!TextUtils.isEmpty(details)) {
129 xml.text(details);
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 80 /*details*/ m.group(7));
91 /*details*/ m.group(6));
102 /*details*/ m.group(6));
251 String eventName, String details) {
261 if (details == null || !details.startsWith("B|")) {
267 if (details.endsWith("|" + initialSection)) {
278 && details.endsWith("|" + requiredSectionList[nextSectionIndex])) {
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/
TitledSettingsFragment.java 118 mDetails = (TextView) v.findViewById(R.id.details);
144 public void positionOnCircular(Context context, View header, View details,
160 details.setLayoutParams(params);
165 if (details instanceof TextView) {
166 ((TextView) details).setGravity(Gravity.CENTER);
  /external/libbrillo/brillo/dbus/
data_serialization.h 146 namespace details { namespace in namespace:brillo::dbus_utils
179 } // namespace details
476 if (!details::DescendIntoVariantIfPresent(&reader, &variant_reader) ||
492 namespace details { namespace in namespace:brillo::dbus_utils
516 } // namespace details
520 : public details::DBusArrayType<IsTypeSupported<T>::value, T, ALLOC> {};
523 namespace details { namespace in namespace:brillo::dbus_utils
544 } // namespace details
550 details::TupleTraits<Types...>::GetSignature() +
573 if (!details::DescendIntoVariantIfPresent(&reader, &variant_reader) |
583 namespace details { namespace in namespace:brillo::dbus_utils
614 namespace details { namespace in namespace:brillo::dbus_utils
680 namespace details { namespace in namespace:brillo::dbus_utils
758 namespace details { namespace in namespace:brillo::dbus_utils
    [all...]
  /cts/hostsidetests/services/activitymanager/src/android/server/cts/
ActivityManagerTestBase.java 484 ReportedSizes details = new ReportedSizes(); local
485 details.widthDp = Integer.parseInt(matcher.group(2));
486 details.heightDp = Integer.parseInt(matcher.group(3));
487 details.displayWidth = Integer.parseInt(matcher.group(4));
488 details.displayHeight = Integer.parseInt(matcher.group(5));
489 details.metricsWidth = Integer.parseInt(matcher.group(6));
490 details.metricsHeight = Integer.parseInt(matcher.group(7));
491 return details;
  /external/autotest/server/cros/ap_configurators/basic_auth_extension/
background.js 22 function handleAuthRequest(details, callback) {
  /external/autotest/server/site_tests/android_ACTS/
android_ACTS.py 104 details = result['Details']
105 self.job.record(verdict, None, test_case, status=(details or ''))

Completed in 896 milliseconds

1 2 3 45 6 7 8 91011>>