HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 626 - 650 of 11920) sorted by null

<<21222324252627282930>>

  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivity2.java 31 int result = (allocateCodecs(1 /* max */) == 1) ? RESULT_OK : RESULT_CANCELED; local
32 finishWithResult(result);
  /cts/tests/tests/permission2/src/android/permission2/cts/
PermissionMaxSdkVersionTest.java 39 int result = mContext.checkPermission(UNGRANTABLE_PERMISSION, local
42 result,
52 int result = mContext.checkPermission(GRANTABLE_PERMISSION, local
55 result,
  /cts/tools/dasm/src/java_cup/
lalr_transition.java 83 String result; local
85 result = "transition on " + on_symbol().name() + " to state [";
86 result += _to_state.index();
87 result += "]";
89 return result;
parse_reduce_table.java 58 String result; local
62 result = "-------- REDUCE_TABLE --------\n";
65 result += "From state #" + row + "\n";
75 result += col + ":";
76 result += goto_st.index();
82 result += "\n";
88 if (cnt != 0) result += "\n";
90 result += "-----------------------------";
92 return result;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ITestResultRepo.java 16 package com.android.cts.tradefed.result;
36 * @return the {@link TestResults} or <code>null</null> if the result with that session id
42 * Get the report directory for given result
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/
T_monitor_enter_2.java 22 public boolean result = true; field in class:T_monitor_enter_2
31 result = false;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/d/
T_monitor_exit_1.java 21 public boolean result = false; field in class:T_monitor_exit_1
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 35 * Merges two locals arrays. If the merged result is the same as the first
40 * @return {@code non-null;} the result of merging the two locals arrays
50 OneLocalsArray result = null; local
62 * We only need to do anything when the result differs
64 * result gets initialized to.
66 if (result == null) {
67 result = locals1.copy();
71 result.invalidate(i);
73 result.set(i, resultType);
78 if (result == null)
102 ExecutionStack result = null; local
    [all...]
  /dalvik/dx/src/com/android/multidex/
FolderPathElement.java 48 ArrayList<String> result = new ArrayList<String>(); local
49 collect(baseFolder, "", result);
50 return result;
53 private void collect(File folder, String prefix, ArrayList<String> result) {
56 collect(file, prefix + SEPARATOR_CHAR + file.getName(), result);
58 result.add(prefix + SEPARATOR_CHAR + file.getName());
  /dalvik/libdex/
Leb128.h 33 int result = *(ptr++); local
35 if (result > 0x7f) {
37 result = (result & 0x7f) | ((cur & 0x7f) << 7);
40 result |= (cur & 0x7f) << 14;
43 result |= (cur & 0x7f) << 21;
51 result |= cur << 28;
58 return result;
68 int result = *(ptr++); local
70 if (result <= 0x7f)
    [all...]
  /external/aac/libFDK/include/arm/
scale.h 97 INT result; local
101 : "=&r"(result)
105 return result;
112 INT result; local
116 : "=&r"(result)
120 return result;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
AllTests.java 24 junit.framework.TestResult result = junit.textui.TestRunner.run(suite()); local
25 if (!result.wasSuccessful()) {
  /external/avahi/avahi-compat-howl/samples/
publish.c 65 sw_result result; local
98 if ((result = sw_discovery_publish(discovery, 0, argv[1], argv[2], NULL, NULL, atoi(argv[3]), sw_text_record_bytes(text_record), sw_text_record_len(text_record), my_service_reply, NULL, &id)) != SW_OKAY)
100 fprintf(stderr, "publish failed: %d\n", result);
  /external/bison/examples/calc++/
calc++-driver.hh 26 int result; member in class:calcxx_driver
  /external/bison/lib/
dup2.c 46 int result; local
71 result = dup2 (fd, desired_fd);
76 result = -1;
80 if (result == 0)
81 result = desired_fd;
83 return result;
93 int result; local
103 result = dup2 (fd, desired_fd);
106 if (result == -1 && errno == EMFILE)
109 if (fd != desired_fd && result != -1
140 int result = fcntl (fd, F_GETFL) < 0 ? -1 : fd; local
    [all...]
fstat.c 57 int result; local
61 result = orig_fstat (fd, buf);
65 result = -1;
70 return result;
obstack_printf.c 39 int result; local
42 result = obstack_vprintf (obs, format, args);
44 return result;
stat.c 82 int result = orig_stat (name, st); local
86 if (result == 0 && !S_ISDIR (st->st_mode))
98 if (result == -1 && errno == ENOENT)
128 result = orig_stat (fixed_name, st);
129 if (result == 0 && check_dir && !S_ISDIR (st->st_mode))
131 result = -1;
137 return result;
  /external/bison/src/
InadequacyList.c 33 InadequacyList *result = xmalloc (sizeof *result); local
34 result->id = (*node_count)++;
36 result->next = NULL;
37 result->manifestingState = manifesting_state;
38 result->contributionCount = bitset_count (actions);
39 result->inadequacy.conflict.token = token;
40 result->inadequacy.conflict.actions = actions;
41 return result;
  /external/boringssl/src/crypto/asn1/
a_type.c 116 int result = -1; local
123 result = OBJ_cmp(a->value.object, b->value.object);
126 result = 0; /* They do not have content. */
129 result = a->value.boolean - b->value.boolean;
154 result = ASN1_STRING_cmp((ASN1_STRING *) a->value.ptr,
159 return result;
  /external/boringssl/src/crypto/ec/
example_mul.c 79 EC_POINT *p = NULL, *result = NULL; local
86 result = EC_POINT_new(group);
90 result == NULL ||
99 if (!EC_POINT_mul(group, result, NULL, p, n, NULL) ||
100 !EC_POINT_is_at_infinity(group, result)) {
107 if (!EC_POINT_mul(group, result, BN_value_one(), p, n, NULL) ||
108 EC_POINT_cmp(group, result, generator, NULL) != 0) {
116 EC_POINT_free(result);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
AbstractECMultiplier.java 16 ECPoint result = sign > 0 ? positive : positive.negate(); local
22 return ECAlgorithms.validatePoint(result);
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectVisitor.java 23 * @param <T> the type of the result that this visitor returns
24 * (can be defined as {@code Void} to denote no result}.
49 T result(); method in interface:ObjectVisitor
  /external/ceres-solver/internal/ceres/
residual_block_utils.cc 74 string result = ""; local
76 StringAppendF(&result,
79 result +=
88 result += space;
89 AppendArrayToString(num_residuals, residuals, &result);
90 StringAppendF(&result, "\n\n");
95 &result, "Parameter Block %d, size: %d\n", i, parameter_block_size);
96 StringAppendF(&result, "\n");
98 AppendArrayToString(1, parameters[i] + j, &result);
99 StringAppendF(&result, "| ");
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
shadow-handler.js 24 var result = scope.consumeToken(/^inset/i, string);
25 if (result) {
27 return result;
29 var result = scope.consumeLengthOrPercent(string);
30 if (result) {
31 shadow.lengths.push(result[0]);
32 return result;
34 var result = scope.consumeColor(string);
35 if (result) {
36 shadow.color = result[0]
40 var result = scope.consumeRepeated(consumePart, \/^\/, string); variable
    [all...]

Completed in 2222 milliseconds

<<21222324252627282930>>