Home
last modified time | relevance | path

Searched refs:modify (Results 1 – 25 of 963) sorted by relevance

12345678910>>...39

/external/qemu/distrib/sdl-1.2.15/src/hermes/
DHeadMMX.h81 #pragma aux ConvertMMX "_*" modify [EAX EBX ECX EDX ESI EDI]
83 #pragma aux ClearMMX_32 "_*" modify [EAX EBX ECX EDX ESI EDI]
84 #pragma aux ClearMMX_24 "_*" modify [EAX EBX ECX EDX ESI EDI]
85 #pragma aux ClearMMX_16 "_*" modify [EAX EBX ECX EDX ESI EDI]
86 #pragma aux ClearMMX_8 "_*" modify [EAX EBX ECX EDX ESI EDI]
DHeadX86.h138 #pragma aux ConvertX86 "_*" modify [EAX EBX ECX EDX ESI EDI]
139 #pragma aux ClearX86_32 "_*" modify [EAX EBX ECX EDX ESI EDI]
140 #pragma aux ClearX86_24 "_*" modify [EAX EBX ECX EDX ESI EDI]
141 #pragma aux ClearX86_16 "_*" modify [EAX EBX ECX EDX ESI EDI]
142 #pragma aux ClearX86_8 "_*" modify [EAX EBX ECX EDX ESI EDI]
/external/chromium/chrome/browser/prefs/
Doverlay_persistent_pref_store_unittest.cc125 Value* modify = NULL; in TEST_F() local
126 EXPECT_EQ(PrefStore::READ_OK, overlay_->GetMutableValue(key, &modify)); in TEST_F()
127 ASSERT_TRUE(modify); in TEST_F()
128 ASSERT_TRUE(modify->GetType() == Value::TYPE_DICTIONARY); in TEST_F()
129 static_cast<DictionaryValue*>(modify)->SetInteger(key, 42); in TEST_F()
142 EXPECT_TRUE(Value::Equals(modify, static_cast<DictionaryValue*>(modified))); in TEST_F()
/external/webkit/Source/WebCore/editing/
DEditorCommand.cpp609 …frame->selection()->modify(SelectionController::AlterationMove, DirectionBackward, CharacterGranul… in executeMoveBackward()
615 …frame->selection()->modify(SelectionController::AlterationExtend, DirectionBackward, CharacterGran… in executeMoveBackwardAndModifySelection()
621 …return frame->selection()->modify(SelectionController::AlterationMove, DirectionForward, LineGranu… in executeMoveDown()
626 …frame->selection()->modify(SelectionController::AlterationExtend, DirectionForward, LineGranularit… in executeMoveDownAndModifySelection()
632 …frame->selection()->modify(SelectionController::AlterationMove, DirectionForward, CharacterGranula… in executeMoveForward()
638 …frame->selection()->modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranu… in executeMoveForwardAndModifySelection()
644 …return frame->selection()->modify(SelectionController::AlterationMove, DirectionLeft, CharacterGra… in executeMoveLeft()
649 …frame->selection()->modify(SelectionController::AlterationExtend, DirectionLeft, CharacterGranular… in executeMoveLeftAndModifySelection()
658 …return frame->selection()->modify(SelectionController::AlterationMove, distance, true, SelectionCo… in executeMovePageDown()
666 …return frame->selection()->modify(SelectionController::AlterationExtend, distance, true, Selection… in executeMovePageDownAndModifySelection()
[all …]
DTypingCommand.cpp490 selection.modify(SelectionController::AlterationExtend, DirectionBackward, granularity); in deleteKeyPressed()
492 … selection.modify(SelectionController::AlterationExtend, DirectionBackward, CharacterGranularity); in deleteKeyPressed()
518 selection.modify(SelectionController::AlterationExtend, DirectionBackward, granularity); in deleteKeyPressed()
586 selection.modify(SelectionController::AlterationExtend, DirectionForward, granularity); in forwardDeleteKeyPressed()
588 … selection.modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranularity); in forwardDeleteKeyPressed()
603 … selection.modify(SelectionController::AlterationExtend, DirectionForward, CharacterGranularity); in forwardDeleteKeyPressed()
/external/javassist/src/main/javassist/tools/rmi/
DStubGenerator.java130 int modify = orgclass.getModifiers(); in produceProxyClass() local
131 if (Modifier.isAbstract(modify) || Modifier.isNative(modify) in produceProxyClass()
132 || !Modifier.isPublic(modify)) in produceProxyClass()
/external/valgrind/main/gdbserver_tests/
Dnlcontrolc.vgtest4 # and modify some variables
6 # and modify some variables
/external/stlport/
DNOTICE10 …ee, provided the above notices are retained on all copies. Permission to modify the code and to di…
23 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
25 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
27 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
DLICENSE10 …ee, provided the above notices are retained on all copies. Permission to modify the code and to di…
23 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
25 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
27 Permission to use, copy, modify, distribute and sell this software and its documentation for any pu…
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
DEditorClientHaiku.cpp270 …frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionC… in handleKeyboardEvent()
276 …frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionC… in handleKeyboardEvent()
282 …frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionC… in handleKeyboardEvent()
288 …frame->selection()->modify(kevent->shiftKey() ? SelectionController::AlterationExtend : SelectionC… in handleKeyboardEvent()
/external/webkit/Source/WebKit/efl/WebCoreSupport/
DEditorClientEfl.cpp349 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
355 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
361 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
367 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
/external/guava/guava/src/com/google/common/collect/
DBstOperations.java84 return modify(tree, key, mutationRule); in mutate()
100 BstMutationResult<K, N> result = modify(target, key, mutationRule); in mutate()
112 private static <K, N extends BstNode<K, N>> BstMutationResult<K, N> modify( in modify() method in BstOperations
121 BstModificationResult<N> modResult = modifier.modify(key, originalTarget); in modify()
DBstModifier.java48 BstModificationResult<N> modify(K key, @Nullable N originalEntry); in modify() method
/external/llvm/test/Transforms/ScalarRepl/
D2011-09-22-PHISpeculateInvoke.ll5 ; modify the loaded value.
7 ; edge, but scalarrepl doesn't modify the CFG, at least at the moment.)
/external/webkit/Source/WebKit/wince/WebCoreSupport/
DEditorClientWinCE.cpp359 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
365 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
371 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
377 …frame->selection()->modify(keyEvent->shiftKey() ? SelectionController::AlterationExtend : Selectio… in handleEditingKeyboardEvent()
/external/ppp/pppd/plugins/radius/
DCOPYRIGHT6 Permission to use, copy, modify, and distribute this software for any
22 Permission to use, copy, modify, and distribute this software for any
38 Permission to use, copy, modify, and distribute this software for any
53 Permission to use, copy, modify, and distribute this software and its
/external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/beancontext/mock/
Dmockdata.txt2 (don't modify)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/about_files/
Dpixman-licenses.txt5 Permission to use, copy, modify, distribute, and sell this software and its
30 Permission to use, copy, modify, and distribute this software and its
51 Permission to use, copy, modify, distribute, and sell this software and its
74 Permission to use, copy, modify, distribute, and sell this software
/external/e2fsprogs/tests/progs/
Dtest_rel_cmds.ct17 request do_brel_put, "Add or modify a block relocation entry",
48 request do_irel_put, "Add or modify an inode relocation entry",
/external/libpng/contrib/gregbook/
DLICENSE10 The contents of this file are DUAL-LICENSED. You may modify and/or
36 This program is free software; you can redistribute it and/or modify
/external/fdlibm/
DNOTICE4 Permission to use, copy, modify, and distribute this
/external/icu4c/
DNOTICE9 …thout restriction, including without limitation the rights to use, copy, modify, merge, publish, d…
44 rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
83 author grants irrevocable permission to anyone to use, modify,
85 of anyone else to use, modify, and distribute it, provided that
/external/icu4c/i18n/
DNOTICE9 …thout restriction, including without limitation the rights to use, copy, modify, merge, publish, d…
44 rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
83 author grants irrevocable permission to anyone to use, modify,
85 of anyone else to use, modify, and distribute it, provided that
/external/icu4c/common/
DNOTICE9 …thout restriction, including without limitation the rights to use, copy, modify, merge, publish, d…
44 rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
83 author grants irrevocable permission to anyone to use, modify,
85 of anyone else to use, modify, and distribute it, provided that
/external/icu4c/stubdata/
DNOTICE9 …thout restriction, including without limitation the rights to use, copy, modify, merge, publish, d…
44 rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
83 author grants irrevocable permission to anyone to use, modify,
85 of anyone else to use, modify, and distribute it, provided that

12345678910>>...39