HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 851 - 875 of 3150) sorted by null

<<31323334353637383940>>

  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-mips64.c 137 dlog(1, "set pc to %p\n", C2v (newpc));
139 dlog(1, "set pc not changed %p\n", C2v (newpc));
256 int set = abs_regno / num_regs; local
260 VexGuestMIPS64State* mips1 = (VexGuestMIPS64State*) get_arch (set, tst);
301 /* If a breakpoint is set on the instruction in a branch delay slot,
  /external/valgrind/drd/tests/
monitor_example.cpp 189 void set(const int state) function in class:StateVariable
214 s_sv.set(2);
216 s_sv.set(4);
224 s_sv.set(1);
226 s_sv.set(3);
  /external/valgrind/none/tests/ppc32/
power5+_round.c 57 /* This set is disabled until fprf is implemented. */
59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan }; local
64 : "f"(set[i]), "f"(set[j])
77 printf("fcmpu\t%.1f\t%.1f\t%x\t%s\n", set[i], set[j],
84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan }; local
110 DO_TEST(frin, set, frin, fprf);
112 DO_TEST(friz, set, friz, fprf);
114 DO_TEST(frip, set, frip, fprf)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyFocusStateMapper.java 159 // Only set move callback if we can call autofocus.
296 result.set(CaptureResult.CONTROL_AF_STATE, newAfState);
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 94 Array.set(array, i, elem);
  /frameworks/base/core/java/android/os/
Looper.java 58 * This class contains the code required to set up and manage an event loop
90 sThreadLocal.set(new Looper(quitAllowed));
  /frameworks/base/core/java/android/provider/
SyncStateContract.java 98 * @param account the {@link Account} whose sync state should be set
103 public static void set(ContentProviderClient provider, Uri uri, method in class:SyncStateContract.Helpers
153 * @param account the {@link Account} whose sync state should be set
173 * @param uri the uri of the specific sync state to set
  /frameworks/base/core/java/android/util/
MonthDisplayHelper.java 54 mCalendar.set(Calendar.YEAR, year);
55 mCalendar.set(Calendar.MONTH, month);
56 mCalendar.set(Calendar.DAY_OF_MONTH, 1);
57 mCalendar.set(Calendar.HOUR_OF_DAY, 0);
58 mCalendar.set(Calendar.MINUTE, 0);
59 mCalendar.set(Calendar.SECOND, 0);
102 * box. For example, if the calendar is set to display the first day of
StateSet.java 33 * In theory we could encapsulate the state set and state spec arrays
100 final int[] set = new int[numBits]; typedefs
104 set[pos++] = orderedIds[j];
107 VIEW_STATE_SETS[i] = set;
114 throw new IllegalArgumentException("Invalid state set mask");
128 * A state set that does not contain any valid states.
135 * @param stateSetOrSpec a state set or state spec.
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
  /frameworks/base/core/java/com/android/server/
NetworkManagementSocketTagger.java 50 SocketTagger.set(new NetworkManagementSocketTagger());
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 129 uint32_t idx, cur_uid, set; local
136 &idx, iface, &tag, &cur_uid, &set, &rxBytes, &rxPackets,
android_view_TextureView.cpp 43 jmethodID set; member in struct:android::__anon22586
152 rect.set(Rect(0x3FFF, 0x3FFF));
175 INVOKEV(dirtyRect, gRectClassInfo.set,
214 gRectClassInfo.set = GetMethodIDOrDie(env, clazz, "set", "(IIII)V");
com_android_internal_net_NetworkStatsFactory.cpp 44 jfieldID set; member in struct:android::__anon22589
56 int32_t set; member in struct:android::stats_line
209 &s.uid, &s.set, &s.rxBytes, &s.rxPackets,
235 ScopedIntArrayRW set(env, get_int_array(env, stats,
236 gNetworkStatsClassInfo.set, size, grow));
237 if (set.get() == NULL) return -1;
262 set[i] = lines[i].set;
275 env->SetObjectField(stats, gNetworkStatsClassInfo.set, set.getJavaArray())
    [all...]
  /frameworks/base/graphics/java/android/graphics/
ColorMatrix.java 92 * Set this colormatrix to identity:
109 public void set(ColorMatrix src) { method in class:ColorMatrix
116 public void set(float[] src) { method in class:ColorMatrix
121 * Set this colormatrix to scale by the specified values.
137 * Set the rotation on a color axis by the specified values.
174 * Set this colormatrix to the concatenation of the two specified
230 * Set the matrix to affect the saturation of colors.
249 * Set the matrix to convert RGB to YUV
261 * Set the matrix to convert from YUV to RGB
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleBackground.java 97 final AnimatorSet set = new AnimatorSet(); local
105 final AnimatorSet.Builder builder = set.play(exit);
118 return set;
123 final RenderNodeAnimatorSet set = new RenderNodeAnimatorSet(); local
141 set.add(enter);
150 set.add(exit);
152 return set;
  /frameworks/base/libs/hwui/
Rect.h 104 inline void set(float left, float top, float right, float bottom) { function in class:android::uirenderer::Rect
111 inline void set(const Rect& r) { function in class:android::uirenderer::Rect
112 set(r.left, r.top, r.right, r.bottom);
115 inline void set(const SkIRect& r) { function in class:android::uirenderer::Rect
116 set(r.left(), r.top(), r.right(), r.bottom());
139 set(tmp);
  /frameworks/base/media/java/android/media/
FaceDetector.java 60 point.set(mMidPointX, mMidPointY);
132 * to the <var>maxFaces</var> value set at initialization
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AndroidAppAsset.java 48 private static final String MISSING_FIELD_FORMAT_STRING = "Expected %s to be set.";
152 throw new AssertionError("Expected packageName to be set.");
155 throw new AssertionError("Expected certFingerprints to be set.");
185 HashSet<String> set = new HashSet<>(certs); local
186 List<String> result = new ArrayList<>(set);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DataUsageGraph.java 79 r.set(usageRight + mMarkerWidth, 0, w, h);
84 r.set(0, 0, w, h);
90 r.set(0, 0, usageRight, h);
97 r.set(warningLeft, 0, warningLeft + mMarkerWidth, h);
  /frameworks/base/rs/java/android/renderscript/
Matrix2f.java 38 * @param dataArray values to set the matrix to, must be 4
71 * @param x column of the value to set
72 * @param y row of the value to set
74 public void set(int x, int y, float v) { method in class:Matrix2f
142 set(i,0, ri0); method
143 set(i,1, ri1); method
  /frameworks/base/services/core/java/com/android/server/notification/
ScheduleCalendar.java 73 mCalendar.set(Calendar.HOUR_OF_DAY, hour);
74 mCalendar.set(Calendar.MINUTE, min);
75 mCalendar.set(Calendar.SECOND, 0);
76 mCalendar.set(Calendar.MILLISECOND, 0);
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeUpCall.java 36 * The receiver for the alarm we set
81 // set alarm, which will be delivered in form of the wakeupIntent
82 am.set(AlarmManager.ELAPSED_REALTIME_WAKEUP, atTime, pi);
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceInfo.java 101 txtRecord.set(key, txtMap.get(key));
  /frameworks/data-binding/library/src/main/java/android/databinding/
ObservableArrayList.java 102 public T set(int index, T object) { method in class:ObservableArrayList
103 T val = super.set(index, object);

Completed in 169 milliseconds

<<31323334353637383940>>