/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
ArrayTestListAdapter.java | 26 * where items can be added by calling {@link #add(TestListItem)} repeatedly. 36 public void add(TestListItem item) { method in class:ArrayTestListAdapter 37 mRows.add(item);
|
/development/ndk/samples/two-libs/src/com/example/twolibs/ |
TwoLibs.java | 39 int z = add(x, y); 45 public native int add(int x, int y); method in class:TwoLibs
|
/development/samples/SimpleJNI/src/com/example/android/simplejni/ |
SimpleJNI.java | 29 int sum = Native.add(2, 3); 37 // The runtime will add "lib" on the front and ".o" on the end of 42 static native int add(int a, int b); method in class:Native
|
/external/antlr/antlr-3.4/runtime/Perl5/tools/ |
port.pl | 23 'add' => \&add, 108 $help->{add} = << 'EOH'; 109 add: Adds the file to the list of ported files. label 110 Usage: add PATH... 113 sub add { subroutine 196 database (C<port add>). This database can then be queried to check what
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
parameter.rb | 20 new.add( :values ) do | p | 32 def add( name, default = nil ) method in class:ANTLR3.Template.ParameterList
|
/external/chromium_org/chrome/third_party/mock4js/examples/ |
Publisher.js | 26 add: function(subscriber) {
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimationStack.h | 46 void add(Animation* animation) { m_activeAnimations.append(animation); } function in class:WebCore::AnimationStack
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DataTransferItemList.cpp | 81 PassRefPtr<DataTransferItem> DataTransferItemList::add(const String& data, const String& type, ExceptionState& exceptionState) function in class:WebCore::DataTransferItemList 85 RefPtr<ChromiumDataObjectItem> item = m_dataObject->add(data, type); 93 PassRefPtr<DataTransferItem> DataTransferItemList::add(PassRefPtr<File> file) function in class:WebCore::DataTransferItemList 97 RefPtr<ChromiumDataObjectItem> item = m_dataObject->add(file);
|
DocumentOrderedList.cpp | 35 void DocumentOrderedList::add(Node* node) function in class:WebCore::DocumentOrderedList 38 m_nodes.add(node); 64 m_nodes.add(node);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
HTMLInterchange.cpp | 60 unsigned add = count % 3; local 61 switch (add) { 66 add = 3; 89 count -= add;
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
ResourceLoaderSet.h | 43 void add(const RefPtr<ResourceLoader>& loader) { m_set.add(loader); } function in class:WebCore::ResourceLoaderSet
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTRegionList.cpp | 61 void VTTRegionList::add(PassRefPtr<VTTRegion> region) function in class:WebCore::VTTRegionList
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleCustomFilterProgramCache.cpp | 68 void StyleCustomFilterProgramCache::add(StyleCustomFilterProgram* program) function in class:WebCore::StyleCustomFilterProgramCache
|
/external/chromium_org/third_party/skia/src/animator/ |
SkPostParts.cpp | 25 bool SkDataInput::add() { function in class:SkDataInput 55 add();
|
/external/chromium_org/third_party/skia/src/core/ |
SkPtrRecorder.cpp | 41 uint32_t SkPtrSet::add(void* ptr) { function in class:SkPtrSet
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkPathOpsBounds.h | 22 // Note that add(), unlike SkRect::join() or SkRect::growToInclude() 25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { function in struct:SkPathOpsBounds 32 void add(const SkPathOpsBounds& toAdd) { function in struct:SkPathOpsBounds 33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom); 36 void add(const SkPoint& pt) { function in struct:SkPathOpsBounds
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/ |
sce2.asm | 26 add rsp, sampleFrame_size label
|
/external/chromium_org/tools/traceline/traceline/scripts/ |
heap.js | 30 TopN.prototype.add = 61 topper.add(e['heapsize'], e);
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_filter_animation_curve_impl.cc | 27 void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe, function in class:webkit::WebFilterAnimationCurveImpl 36 void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe, function in class:webkit::WebFilterAnimationCurveImpl
|
web_float_animation_curve_impl.cc | 26 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe) { function in class:webkit::WebFloatAnimationCurveImpl 27 add(keyframe, TimingFunctionTypeEase); 30 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe, function in class:webkit::WebFloatAnimationCurveImpl 36 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe, function in class:webkit::WebFloatAnimationCurveImpl
|
web_transform_animation_curve_impl.cc | 27 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe) { function in class:webkit::WebTransformAnimationCurveImpl 28 add(keyframe, TimingFunctionTypeEase); 31 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe, function in class:webkit::WebTransformAnimationCurveImpl 40 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe, function in class:webkit::WebTransformAnimationCurveImpl
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
IElementList.java | 20 IElementList add (IContent content); method in interface:IElementList 21 IElementList add (int index, IContent content); method in interface:IElementList
|
/external/guava/guava/src/com/google/common/collect/ |
UnmodifiableListIterator.java | 24 * A list iterator that does not support {@link #remove}, {@link #add}, or 41 @Override public final void add(E e) { method in class:UnmodifiableListIterator
|
/external/javassist/src/main/javassist/bytecode/ |
ExceptionTable.java | 64 list.add(new ExceptionTableEntry(start, end, handle, type)); 182 public void add(int index, ExceptionTable table, int offset) { method in class:ExceptionTable 187 add(index, e.startPc + offset, e.endPc + offset, method 201 public void add(int index, int start, int end, int handler, int type) { method in class:ExceptionTable 203 entries.add(index, 215 public void add(int start, int end, int handler, int type) { method in class:ExceptionTable 217 entries.add(new ExceptionTableEntry(start, end, handler, type)); 245 et.add(e.startPc, e.endPc, e.handlerPc, type);
|
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
MovingAverage.java | 46 public void add(long sample){ method in class:MovingAverage
|