Searched defs:add (Results 76 - 100 of 863) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/test/perf/perldriver/
H A DDataset.pm102 sub add { subroutine
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DAddressProblems.java34 void add(AddressField addressField, AddressProblemType problem) { method in class:AddressProblems
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsepicecandidate.h79 virtual void add(JsepIceCandidate* candidate) { function in class:webrtc::JsepCandidateCollection
/external/chromium_org/third_party/skia/src/animator/
H A DSkPaintPart.cpp32 bool SkDrawMaskFilter::add() { function in class:SkDrawMaskFilter
46 bool SkDrawPathEffect::add() { function in class:SkDrawPathEffect
54 fPaint->add(NULL, this);
84 bool SkDrawTypeface::add() { function in class:SkDrawTypeface
/external/chromium_org/third_party/skia/src/core/
H A DSkPtrRecorder.cpp41 uint32_t SkPtrSet::add(void* ptr) { function in class:SkPtrSet
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsRect.h15 void add(const SkDPoint& pt) { function in struct:SkDRect
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcodec.py12 def add(self, x, length): member in class:Writer
22 self.add(e, length)
25 self.add(len(seq)*length, lengthLength)
27 self.add(e, length)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
H A Dsce3.asm70 add rsp, sampleFrame_size label
/external/chromium_org/tools/export_tarball/
H A Dexport_tarball.py83 # Workaround lack of the exclude parameter in add method in python-2.4.
89 def add(self, name, arcname=None, recursive=True, exclude=None, filter=None): member in class:MyTarFile
109 tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
153 archive.add(os.path.join(GetSourceDirectory(), directory),
156 archive.add(GetSourceDirectory(), arcname=output_basename)
/external/chromium_org/ui/file_manager/image_loader/
H A Dworker.js66 Worker.prototype.add = function(request) {
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-binop-nosse2.js39 function add(a,b){return a+b;} function
40 add(1,x);
41 add(1,x);
42 %OptimizeFunctionOnNextCall(add);
43 add(1,x);
46 assertEquals(add(1,x), "12");
/external/chromium_org/v8/tools/testrunner/local/
H A Dpool.py64 # allowed to remove items from the done_queue and to add items to the
115 def add(self, args): member in class:Pool
/external/clang/test/CodeGen/
H A Dmangle.c71 int foo10(volatile int* add, int from, int to) { argument
73 return llvm_cas(add, from, to);
/external/clang/test/CodeGenCXX/
H A Dglobal-llvm-constant.cpp16 int add(int x, int y) { return x + y; } function
20 const X x2 = { &add };
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java27 * @param value int to add
29 void add(int value); method in interface:IntSet
H A DListIntSet.java38 public void add(int value) { method in class:ListIntSet
72 add(o.ints.get(j++));
83 add(o.ints.get(j++));
91 ints.add(i);
97 add(iter.next());
/external/easymock/src/org/easymock/internal/
H A DResults.java33 public void add(Result result, Range range) { method in class:Results
41 ranges.add(range);
42 results.add(result);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DElementList.java42 public IElementList add (final IContent content) method in class:ElementList
46 m_contents.add (content);
52 public IElementList add (final int index, final IContent content) method in class:ElementList
56 m_contents.add (index, content);
H A DIElementList.java20 IElementList add (IContent content); method in interface:IElementList
21 IElementList add (int index, IContent content); method in interface:IElementList
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIInterfaceCollection.java64 int add (int interface_index); method in interface:IInterfaceCollection
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DIDeclaredExceptionTable.java67 int add (int exception_index); method in interface:IDeclaredExceptionTable
H A DIExceptionHandlerTable.java65 int add (Exception_info exception); method in interface:IExceptionHandlerTable
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListIterator.java42 public void add(E element) { method in class:ForwardingListIterator
43 delegate().add(element);
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java27 * <p>Subclasses must implement {@link #handleLine}, call {@link #add}
50 protected void add(char[] cbuf, int off, int len) throws IOException { method in class:LineBuffer
53 // Last call to add ended with a CR; we can handle the line now.
108 * {@link #add}.
/external/guava/guava/src/com/google/common/util/concurrent/
H A DExecutionList.java29 * guarantees that every {@code Runnable} that is {@linkplain #add added} will
72 * listeners may run in the thread that calls {@code add}. Second, the thread
80 public void add(Runnable runnable, Executor executor) { method in class:ExecutionList
83 // that contract up into the add method as well.
91 // We only add to the list if we have not yet started execution.
94 runnables.add(new RunnableExecutorPair(runnable, executor));
122 // Lock while we update our state so the add method above will finish adding

Completed in 1653 milliseconds

1234567891011>>