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

1 2 3 4 5 67 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /prebuilts/go/darwin-x86/misc/cgo/test/
sigaltstack.go 7 // Test that the Go runtime still works if C code changes the signal stack.
  /prebuilts/go/darwin-x86/src/cmd/fix/
gotypes.go 36 // This one is harder because the import name changes.
  /prebuilts/go/darwin-x86/src/math/big/
ratmarsh.go 15 // Gob codec version. Permits backward-compatible changes to the encoding.
  /prebuilts/go/darwin-x86/src/runtime/
example_test.go 32 // even if there are changes in the testing package,
  /prebuilts/go/darwin-x86/test/
closure2.go 8 // because changes are made to the value during the closure.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10958.go 41 // contains an irreducible loop containing changes to memory
  /prebuilts/go/linux-x86/misc/cgo/test/
sigaltstack.go 7 // Test that the Go runtime still works if C code changes the signal stack.
  /prebuilts/go/linux-x86/src/cmd/fix/
gotypes.go 36 // This one is harder because the import name changes.
  /prebuilts/go/linux-x86/src/math/big/
ratmarsh.go 15 // Gob codec version. Permits backward-compatible changes to the encoding.
  /prebuilts/go/linux-x86/src/runtime/
example_test.go 32 // even if there are changes in the testing package,
  /prebuilts/go/linux-x86/test/
closure2.go 8 // because changes are made to the value during the closure.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10958.go 41 // contains an irreducible loop containing changes to memory
  /prebuilts/jdk/jdk9/darwin-x86/legal/java.desktop/
jpeg.md 23 notice unaltered; and any additions, deletions, or changes to the original
  /prebuilts/jdk/jdk9/linux-x86/legal/java.desktop/
jpeg.md 23 notice unaltered; and any additions, deletions, or changes to the original
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d30v/
opt.s 19 # one uses and one changes C flag
92 # parallel even though ld2w uses r6 and adds changes it
112 # parallel even though st2w uses r6 and adds changes it
  /prebuilts/go/darwin-x86/src/os/
file_plan9.go 172 // Truncate changes the size of the file.
293 // Truncate changes the size of the named file.
294 // If the file is a symbolic link, it changes the size of the link's target.
396 // Chtimes changes the access and modification times of the named
452 // Chown changes the numeric uid and gid of the named file.
453 // If the file is a symbolic link, it changes the uid and gid of the link's target.
459 // Lchown changes the numeric uid and gid of the named file.
460 // If the file is a symbolic link, it changes the uid and gid of the link itself.
466 // Chown changes the numeric uid and gid of the named file.
479 // Chdir changes the current working directory to the file
    [all...]
  /prebuilts/go/linux-x86/src/os/
file_plan9.go 172 // Truncate changes the size of the file.
293 // Truncate changes the size of the named file.
294 // If the file is a symbolic link, it changes the size of the link's target.
396 // Chtimes changes the access and modification times of the named
452 // Chown changes the numeric uid and gid of the named file.
453 // If the file is a symbolic link, it changes the uid and gid of the link's target.
459 // Lchown changes the numeric uid and gid of the named file.
460 // If the file is a symbolic link, it changes the uid and gid of the link itself.
466 // Chown changes the numeric uid and gid of the named file.
479 // Chdir changes the current working directory to the file
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 206 List<Change> changes = new ArrayList<Change>(); local
208 return changes;
248 return changes;
372 changes.add(change);
373 return changes;
  /external/vulkan-validation-layers/
CONTRIBUTING.md 57 * Run **clang-format** on your changes to maintain consistent formatting
65 > # Make changes to the source.
68 > # Check to see if clang-format made any changes and if they are OK.
84 that to be accepted into the repository, the pull request must [pass all tests](#testing your changes) on all supported platforms
87 #### **Testing Your Changes**
109 The idea here is that your changes should not change the test results, unless that was the intent of your changes.
110 * Run tests that explicitly exercise your changes.
111 * Feel free to subject your code changes to other tests as well!
  /frameworks/native/services/inputflinger/
InputReader.cpp 368 uint32_t changes = mConfigurationChangesToRefresh; local
369 if (changes) {
372 refreshConfigurationLocked(changes);
628 void InputReader::refreshConfigurationLocked(uint32_t changes) {
632 if (changes) {
633 ALOGI("Reconfiguring input devices. changes=0x%08x", changes);
636 if (changes & InputReaderConfiguration::CHANGE_MUST_REOPEN) {
641 device->configure(now, &mConfig, changes);
833 void InputReader::requestRefreshConfiguration(uint32_t changes) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 227 private void scheduleUpdate(int changes) {
232 mPendingChanges |= changes;
243 private void update(int changes) {
247 if ((changes & CHANGE_SETTINGS) != 0) {
260 if ((changes & CHANGE_WIFI_DISPLAY_STATUS) != 0) {
610 final int changes = mPendingChanges;
612 update(changes);

Completed in 1841 milliseconds

1 2 3 4 5 67 8 91011>>