HomeSort by relevance Sort by last modified time
    Searched refs:change (Results 151 - 175 of 1234) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 27 import org.eclipse.ltk.core.refactoring.Change;
147 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor());
163 for (Change change : changes) {
164 if (change instanceof TextFileChange) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arm-it-auto.s 81 @ite eq - testing condition change (eq -> gt)
85 @ite gt (group shall finish due to another condition change)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/msp430/
bad.s 37 ;; with another that starts with an interrupt change.
  /compatibility/cdd/3_software/
3_5_api-behavioral-compatibility.md 8 * [C-0-1] Devices MUST NOT change the behavior or semantics of a
12 * [C-0-3] Devices MUST NOT change the semantics of a standard permission.
  /external/ltp/include/lapi/syscalls/
regen.sh 30 * change your arch specific .in file instead *
  /external/walt/docs/
ChromeOS.md 32 The first reading `G` is the accelerometer, it should change when WALT is rotated.
33 `PD_screen` and `PD_laser` are the light sensors (photodiodes), shading them or exposing to light should change their readings.
  /packages/apps/Camera2/src/com/android/camera/ui/
RotateLayout.java 54 boolean change, int left, int top, int right, int bottom) {
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateLayout.java 49 boolean change, int left, int top, int right, int bottom) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoring.java 39 import org.eclipse.ltk.core.refactoring.Change;
148 return "Change Widget Type";
156 protected @NonNull List<Change> computeChanges(IProgressMonitor monitor) {
160 List<Change> changes = new ArrayList<Change>();
164 TextFileChange change = new TextFileChange(file.getName(), file); local
166 change.setEdit(rootEdit);
167 change.setTextType(EXT_XML);
168 changes.add(change);
191 // Change tag typ
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
labels.s 41 * Section change clears all definitions; it's a CODE section if we see insns
  /external/libchrome/base/process/
process_posix.cc 105 struct kevent change = {0}; local
106 EV_SET(&change, handle, EVFILT_PROC, EV_ADD, NOTE_EXIT, 0, NULL);
107 int result = HANDLE_EINTR(kevent(kq.get(), &change, 1, NULL, 0, NULL));
  /external/libpng/projects/owatcom/
pngconfig.mak 69 # the required change to the calling convention.
95 change the configuration please consult the instructions in
111 $# 2) If you want to change libpng to a non-standard configuration also
112 $# change the definition of 'awk' in the before rule to the name of your
133 $# If build issues errors after a change to pngconfig.dfa you have entered
140 $# You need to rebuild everything after a change to pnglibconf.dfa - i.e. you
  /frameworks/base/services/core/java/com/android/server/audio/
PlaybackActivityMonitor.java 171 final boolean change;
176 change = apc.handleAudioAttributesEvent(attr);
179 change = false;
182 if (change) {
225 final boolean change;
249 change = apc.handleStateEvent(event);
252 change = false;
254 if (change && event == AudioPlaybackConfiguration.PLAYER_STATE_STARTED) {
258 if (change) {
270 boolean change = false
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
Chmod.java 57 * may be used to change a set of file permissions. This method is
250 public Set<PosixFilePermission> change(Set<PosixFilePermission> perms) {
266 * The set of permissions to change
270 Set<PosixFilePermission> change(Set<PosixFilePermission> perms);
279 Files.setPosixFilePermissions(file, changer.change(perms));
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
Chmod.java 57 * may be used to change a set of file permissions. This method is
250 public Set<PosixFilePermission> change(Set<PosixFilePermission> perms) {
266 * The set of permissions to change
270 Set<PosixFilePermission> change(Set<PosixFilePermission> perms);
279 Files.setPosixFilePermissions(file, changer.change(perms));
  /external/aac/libSBRenc/src/
sbrenc_freq_sca.cpp 56 that you changed the software and the date of any change. For modified versions
591 INT change = max_band_previous - diff[0]; local
593 /* Limit the change so that the last band cannot get narrower than the first
595 if (change > (diff[length - 1] - diff[0]) / 2)
596 change = (diff[length - 1] - diff[0]) / 2;
598 diff[0] += change;
599 diff[length - 1] -= change;
  /external/libevent/
epoll.c 226 change_to_string(int change)
228 change &= (EV_CHANGE_ADD|EV_CHANGE_DEL);
229 if (change == EV_CHANGE_ADD) {
231 } else if (change == EV_CHANGE_DEL) {
233 } else if (change == 0) {
252 "read change was %d (%s); " \
253 "write change was %d (%s); " \
254 "close change was %d (%s)", \
  /external/jdiff/src/jdiff/
Diff.java 19 * change.
49 DiffMyers.change script = diff.diff_2(false);
118 static DiffMyers.change mergeDiffs(String[] oldDocWords, String[] newDocWords,
119 DiffMyers.change script) {
121 return script; // Only one change
122 DiffMyers.change hunk = script;
123 DiffMyers.change lasthunk = null; // Set to the last potential hunk
142 // Merge this change into the last change
164 DiffMyers.change script, String text)
    [all...]
  /prebuilts/go/darwin-x86/src/os/
os_unix_test.go 51 // Can't change uid unless root, but can try
73 // change back to gid to test fd.Chown
94 // Can't change uid unless root, but can try
116 // change back to gid to test fd.Chown
146 // Can't change uid unless root, but can try
  /prebuilts/go/linux-x86/src/os/
os_unix_test.go 51 // Can't change uid unless root, but can try
73 // change back to gid to test fd.Chown
94 // Can't change uid unless root, but can try
116 // change back to gid to test fd.Chown
146 // Can't change uid unless root, but can try
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 76 import org.eclipse.ltk.core.refactoring.Change;
237 private List<Change> mMergeChanges;
238 private List<Change> mTextChanges;
239 private List<Change> mOtherChanges;
305 public List<Change> render(IProject project, Map<String, Object> args) {
309 mMergeChanges = new ArrayList<Change>();
310 mTextChanges = new ArrayList<Change>();
311 mOtherChanges = new ArrayList<Change>();
323 List<Change> changes = new ArrayList<Change>();
796 TextFileChange change = new TextFileChange("Merge " + fileName, to); local
978 TextFileChange change = createNewFileChange(targetFile); local
1039 TextFileChange change = new TextFileChange(message, targetFile) { local
1126 NullChange change = new NullChange(label); local
    [all...]
  /system/media/camera/docs/
ndk_camera_metadata_tags.mako 30 * Do not change method signatures.
31 * Do not change the value of constants.
32 * Do not change the size of any of the classes defined in here.
  /cts/tests/tests/media/src/android/media/cts/
AudioFocusTest.java 286 // verify there was no focus change because focus user 0 was kicked out of stack
287 assertEquals("Focus change was dispatched", AudioManager.AUDIOFOCUS_NONE,
311 final int change; local
313 change = mFocusChange;
316 return change;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/
viddec_mp4_videoobjectplane.c 342 int32_t change=0; local
343 if(mp4_brightness_change(parent, &change) == MP4_STATUS_PARSE_ERROR)
347 vidObjPlane->brightness_change_factor = change;
  /build/make/core/
cleanspec.mk 47 # the command and add it to the bottom of the list. E.g., if a change
48 # that you made last week required touching a file and a change you

Completed in 1494 milliseconds

1 2 3 4 5 67 8 91011>>