Searched defs:modify (Results 1 - 25 of 32) sorted by relevance

12

/external/lldb/test/functionalities/watchpoint/watchpoint_commands/condition/
H A Dmain.cpp14 static void modify(int32_t &var) { function
25 modify(global);
/external/lldb/test/python_api/watchpoint/condition/
H A Dmain.cpp14 static void modify(int32_t &var) { function
25 modify(global);
/external/guava/guava/src/com/google/common/collect/
H A DBstModifier.java48 BstModificationResult<N> modify(K key, @Nullable N originalEntry); method in interface:BstModifier
H A DBstOperations.java84 return modify(tree, key, mutationRule);
100 BstMutationResult<K, N> result = modify(target, key, mutationRule);
112 private static <K, N extends BstNode<K, N>> BstMutationResult<K, N> modify( method in class:BstOperations
121 BstModificationResult<N> modResult = modifier.modify(key, originalTarget);
H A DTreeMultiset.java462 public BstModificationResult<Node<E>> modify(E key, @Nullable Node<E> originalEntry) { method in class:TreeMultiset.MultisetModifier
/external/lldb/test/functionalities/watchpoint/watchpoint_commands/command/
H A Dmain.cpp15 static void modify(int32_t &var) { function
24 modify(global);
/external/chromium_org/base/prefs/
H A Doverlay_user_pref_store_unittest.cc122 Value* modify = NULL; local
123 EXPECT_TRUE(overlay_->GetMutableValue(overlay_key, &modify));
124 ASSERT_TRUE(modify);
125 ASSERT_TRUE(modify->IsType(Value::TYPE_DICTIONARY));
126 static_cast<DictionaryValue*>(modify)->SetInteger(overlay_key, 42);
138 EXPECT_TRUE(Value::Equals(modify, static_cast<DictionaryValue*>(modified)));
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dwritable_expectations.py9 Expectations on local disk that we can modify.
34 """Expectations on local disk that we can modify."""
68 def modify(self, modifications): member in class:WritableExpectations
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DGridLayoutFactory.java39 public static GridLayoutFactory modify(Composite composite) { method in class:GridLayoutFactory
H A DGridDataFactory.java132 public static GridDataFactory modify(Control control) { method in class:GridDataFactory
/external/deqp/framework/common/
H A DtcuThreadUtil.cpp96 void Object::modify (SharedPtr<Event> event, std::vector<SharedPtr<Event> >& deps) function in class:tcu::ThreadUtil::Object
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDOMSelection.cpp286 void DOMSelection::modify(const String& alterString, const String& directionString, const String& granularityString) function in class:blink::DOMSelection
333 m_frame->selection().modify(alter, direction, granularity);
H A DFrameSelection.cpp938 bool FrameSelection::modify(EAlteration alter, SelectionDirection direction, TextGranularity granularity, EUserTriggered userTriggered) function in class:blink::FrameSelection
943 trialFrameSelection->modify(alter, direction, granularity, NotUserTriggered);
1049 bool FrameSelection::modify(EAlteration alter, unsigned verticalDistance, VerticalDirection direction, EUserTriggered userTriggered, CursorAlignOnScroll align) function in class:blink::FrameSelection
1057 trialFrameSelection->modify(alter, verticalDistance, direction, NotUserTriggered);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultiset.java458 public BstModificationResult<Node<E>> modify(E key, @Nullable Node<E> originalEntry) { method in class:TreeMultiset.MultisetModifier
/external/javassist/src/main/javassist/
H A DCtBehavior.java640 * @param converter specifies how to modify.
653 * @param editor specifies how to modify.
1085 * <code>modify</code> set to <code>false</code>.
1090 * @param modify if false, this method does not insert the bytecode.
1095 * If modify is false, the value of src can be null.
1098 public int insertAt(int lineNum, boolean modify, String src) argument
1113 if (!modify)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_visitor.cpp7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
202 fs_inst *modify = get_instruction_generating_reg(pre_inst, last_inst, src); local
203 if (!modify || modify->regs_written() != 1) {
208 modify->saturate = true;
688 fs_inst *modify = get_instruction_generating_reg(pre_rhs_inst,
691 if (!modify)
697 if (ir->lhs->type->vector_elements != modify->regs_written())
701 modify->dst = dst;
/external/deqp/modules/glshared/
H A DglsTextureBufferCase.cpp552 void modify (TestLog& log, function in namespace:deqp::gls::__anon20412
908 modify(log, resultCollector, renderContext, modifyType, rng, texture);
929 ModifyBits modify,
941 , m_modify (modify)
922 TextureBufferCase(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, deUint32 format, size_t bufferSize, size_t offset, size_t size, RenderBits preRender, ModifyBits modify, RenderBits postRender, const char* name, const char* description) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_visitor.cpp7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
202 fs_inst *modify = get_instruction_generating_reg(pre_inst, last_inst, src); local
203 if (!modify || modify->regs_written() != 1) {
208 modify->saturate = true;
688 fs_inst *modify = get_instruction_generating_reg(pre_rhs_inst,
691 if (!modify)
697 if (ir->lhs->type->vector_elements != modify->regs_written())
701 modify->dst = dst;
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp134 const_cast<int&>(a) = b; // expected-note 3{{constant expression cannot modify an object that is visible outside that expression}}
226 // expected-note@-1 {{cannot modify an object that is visible outside}}
253 constexpr int modify(int &n) { return n = 1; } // expected-note 2 {{modification of object of const-qualified type 'const int'}} function in namespace:const_modify
254 constexpr int test1() { int k = 0; return modify(k); }
255 constexpr int test2() { const int k = 0; return modify(const_cast<int&>(k)); } // expected-note 2 {{in call}}
/external/deqp/modules/egl/
H A DteglImageFormatTests.cpp206 virtual void modify (int operationNdx, EGLImageKHR img, tcu::Texture2D& reference) = 0;
309 void modify (int operationNdx, EGLImageKHR img, tcu::Texture2D& reference);
1242 void GLES2ImageApi::modify (int operationNdx, EGLImageKHR img, tcu::Texture2D& reference) function in class:deqp::egl::Image::GLES2ImageApi
1781 m_apiContexts[m_spec.operations[m_curIter].apiIndex]->modify(m_spec.operations[m_curIter].operationIndex, m_img, m_refImg);
2041 : TestCaseGroup (eglTestCtx, "modify", "EGLImage modifying tests")
H A DteglGLES2SharingThreadedTests.cpp467 object->modify(m_event, m_deps);
2949 int modify; member in struct:deqp::egl::GLES2ThreadedSharingTest::TestConfig
3158 if (m_config.modify || m_config.render)
3164 if (m_config.modify)
3186 if (m_config.modify || m_config.render)
3246 if (m_config.modify || m_config.render)
3254 if (m_config.modify || m_config.render)
3260 if (m_config.modify == 1)
3268 if (m_config.modify == 2)
3290 if (m_config.modify || m_confi
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4654 milliseconds

12