Searched refs:add (Results 276 - 300 of 3273) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/JavaScriptCore/heap/
H A DConservativeRoots.cpp47 void ConservativeRoots::add(void* begin, void* end) function in class:JSC::ConservativeRoots
55 add(*it);
/external/webkit/Source/WebCore/platform/network/
H A DHTTPHeaderMap.h54 pair<iterator, bool> add(const AtomicString& name, const String& value);
59 pair<iterator, bool> add(const char* name, const String& value);
/external/webkit/Tools/RebaselineQueueServer/model/
H A Dqueueentry.py37 def add(builder_name, test): member in class:QueueEntry
62 builder_names.add(entry.builder)
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java53 * @param segment the segment to add
55 public void add(XMPPathSegment segment) method in class:XMPPath
57 segments.add(segment);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp120 googleDomains.add("biz");
121 googleDomains.add("com");
122 googleDomains.add("net");
123 googleDomains.add("org");
124 googleDomains.add("ae");
125 googleDomains.add("ag");
126 googleDomains.add("am");
127 googleDomains.add("at");
128 googleDomains.add("az");
129 googleDomains.add("b
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DMultiMap.java42 elementsForKey.add(value);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyPermissionCollection.java35 public void add(Permission permission) {} method in class:MyPermissionCollection
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java45 myCollection.add(new Integer(101));
46 myCollection.add(new Integer(102));
47 myCollection.add(new Integer(103));
49 // add
50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer(
52 assertTrue("CollectionTest - b) add did not work", col
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DKeyStoreBuilderParametersTest.java87 result.add(new EmptyBuilder());
95 ksbuilders.add(builder);
96 ksbuilders.add(new EmptyBuilder());
100 result.add(new Object());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertStoreCollectionSpi.java49 col.add(obj);
61 col.add(obj);
85 col.add(obj);
97 col.add(obj);
/external/chromium/build/
H A Dbuild_config.h41 #error Please add support for your platform in build/build_config.h
100 #error Please add support for your compiler in build/build_config.h
126 #error Please add support for your architecture in build/build_config.h
145 #error Please add support for your compiler in build/build_config.h
/external/chromium/chrome/browser/resources/ntp4/tools/
H A Dexterns.js13 Element.prototype.classList.add = function(c) {};
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_splitter.js37 this.classList.add('table-header-splitter');
47 this.ownerDocument.documentElement.classList.add('col-resize');
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js13 Element.prototype.classList.add = function(c) {};
/external/clang/test/PCH/
H A Dblocks.h7 int add(int a, int b) { function
/external/easymock/src/org/easymock/internal/
H A DUnorderedBehavior.java38 entry.getResults().add(result, count);
43 list.add(result, count);
44 results.add(new ExpectedInvocationAndResults(expected, list));
94 messages.add(message);
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java57 add (row);
65 add (row);
74 add (0, m_caption);
111 add (cell);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DFieldCollection.java47 result.add (f);
74 _clone.m_fields.add (((Field_info) m_fields.get (f)).clone ());
108 public int add (final Field_info field) method in class:FieldCollection
111 m_fields.add (field);
H A DIFieldCollection.java77 int add (Field_info field); method in interface:IFieldCollection
H A DIMethodCollection.java74 int add (Method_info method); method in interface:IMethodCollection
H A DMethodCollection.java47 result.add (m);
74 _clone.m_methods.add (((Method_info) m_methods.get (m)).clone ());
108 public int add (final Method_info method) method in class:MethodCollection
111 m_methods.add (method);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DNavigableMapTestSuiteBuilder.java48 testers.add(MapNavigationTester.class);
57 derivedSuites.add(createDescendingSuite(parentBuilder));
61 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.EXCLUSIVE));
62 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
63 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
64 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.EXCLUSIVE));
65 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.INCLUSIVE));
66 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.NO_BOUND));
67 derivedSuites.add(createSubmapSuite(parentBuilder, Bound.INCLUSIVE, Bound.EXCLUSIVE));
68 derivedSuites.add(createSubmapSuit
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListAddTester.java31 * A generic JUnit test which tests {@code add(Object)} operations on a list.
44 assertTrue("add(present) should return true", getList().add(samples.e0));
51 * absent = ZERO isn't required, since unmodList.add() must
56 getList().add(samples.e0);
57 fail("add(present) should throw");
67 assertTrue("add(nullPresent) should return true", getList().add(null));
70 expected.add(null);
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DStringCatcher.java36 events.add(string);
/external/iproute2/examples/
H A DSYN-DoS.rate.limit25 $TC qdisc add dev $INDEV handle ffff: ingress
35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \

Completed in 512 milliseconds

<<11121314151617181920>>