Searched refs:description (Results 251 - 275 of 1667) sorted by relevance

<<11121314151617181920>>

/external/junit/src/org/junit/experimental/max/
H A DMaxHistory.java96 void putTestDuration(Description description, long duration) { argument
97 fDurations.put(description.toString(), duration);
106 public void testStarted(Description description) throws Exception { argument
107 starts.put(description, System.nanoTime()); // Get most accurate
112 public void testFinished(Description description) throws Exception { argument
114 long start= starts.get(description);
115 putTestDuration(description, end - start);
H A DMaxCore.java129 throw new RuntimeException("Can't build a runner from description [" + each + "]");
159 private void findLeaves(Description parent, Description description, List<Description> results) { argument
160 if (description.getChildren().isEmpty())
161 if (description.toString().equals("warning(junit.framework.TestSuite$1)"))
164 results.add(description);
166 for (Description each : description.getChildren())
167 findLeaves(description, each, results);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/
H A Djsref.js50 function AddTestCase( description, expect, actual ) {
51 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
55 this.description = d;
84 testcases[tc].description +" = "+
175 print(testcases[tc].description);
188 print( testcases[i].description +" = " +testcases[i].actual +" expected: "+ testcases[i].expect );
197 testcases[tc].description +" = "+ testcases[tc].actual +
/external/webkit/Source/WebCore/inspector/front-end/
H A DRemoteObject.js31 WebInspector.RemoteObject = function(objectId, type, description, hasChildren)
35 this._description = description;
67 return new WebInspector.RemoteObject(payload.objectId, payload.type, payload.description, payload.hasChildren);
95 get description()
185 get description()
196 return property.value.description;
203 return property.name + ":" + property.value.description;
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/slider/
H A Dslider.edc90 description {
100 description {
104 description {
115 description {
133 description {
157 description {
166 description {
325 description {
335 description {
339 description {
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_api.cc30 " description text";
33 const char kSuggestionDescription[] = "description";
125 kSuggestionDescription, &suggestion.description));
152 kSuggestionDescription, &suggestion.description));
186 // Step 1: Build a vector of styles, 1 per character of description text.
188 styles.resize(description.length()); // sets all styles to 0
202 length = description.length();
205 offset = std::max(0, static_cast<int>(description.length()) + offset);
246 string16 description = suggestion->description; local
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3rewritestreams.c187 antlr3RewriteRuleElementStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
245 // Install the description
247 stream->elementDescription = description;
257 antlr3RewriteRuleElementStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
263 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
280 antlr3RewriteRuleElementStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
286 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
309 antlr3RewriteRuleTOKENStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
315 stream = antlr3RewriteRuleElementStreamNewAE(adaptor, rec, description);
333 antlr3RewriteRuleTOKENStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, voi argument
352 antlr3RewriteRuleTOKENStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
373 antlr3RewriteRuleSubtreeStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
395 antlr3RewriteRuleSubtreeStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
418 antlr3RewriteRuleSubtreeStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
442 antlr3RewriteRuleNODEStreamNewAE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description) argument
466 antlr3RewriteRuleNODEStreamNewAEE(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, void * oneElement) argument
485 antlr3RewriteRuleNODEStreamNewAEV(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 description, pANTLR3_VECTOR vector) argument
[all...]
/external/webkit/LayoutTests/http/tests/cookies/resources/
H A Dcookies-test-pre.js4 function description(msg)
9 var description = document.getElementById("description"); variable
10 if (description.firstChild)
11 description.replaceChild(span, description.firstChild);
13 description.appendChild(span);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
H A Djsref.js38 testcases[tc].description +" = "+
49 this.description = d;
59 writeLineToLog( "added " + this.description );
164 print(testcases[tc].description);
178 print( testcases[i].description +" = " +testcases[i].actual +" expected: "+ testcases[i].expect );
187 testcases[tc].description +" = "+ testcases[tc].actual +
/external/chromium/chrome/browser/
H A Dbrowsing_data_indexed_db_helper.h96 const string16& description);
113 PendingIndexedDBInfo(const GURL& origin, const string16& description);
117 string16 description; member in struct:CannedBrowsingDataIndexedDBHelper::PendingIndexedDBInfo
H A Dbrowsing_data_database_helper.cc28 const std::string& description,
35 description(description),
150 const std::string& description)
153 description(description) {
178 const std::string& description) {
181 origin, name, description));
235 info->description,
24 DatabaseInfo( const std::string& host, const std::string& database_name, const std::string& origin_identifier, const std::string& description, const std::string& origin, int64 size, base::Time last_modified) argument
147 PendingDatabaseInfo( const GURL& origin, const std::string& name, const std::string& description) argument
175 AddDatabase( const GURL& origin, const std::string& name, const std::string& description) argument
/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.h236 #define ANNOTATE_BENIGN_RACE(pointer, description) \
238 pointer, sizeof(*(pointer)), description)
240 /* Same as ANNOTATE_BENIGN_RACE(address, description), but applies to
242 #define ANNOTATE_BENIGN_RACE_SIZED(address, size, description) \
244 address, size, description)
364 #define ANNOTATE_EXPECT_RACE(address, description) \
366 description)
405 #define ANNOTATE_EXPECT_RACE(address, description) /* empty */
406 #define ANNOTATE_FLUSH_EXPECTED_RACES(address, description) /* empty */
407 #define ANNOTATE_BENIGN_RACE(address, description) /* empt
[all...]
/external/chromium/chrome/browser/resources/net_internals/
H A Dsourceentry.js204 * Returns a description for this source log stream, which will be displayed
222 var description = '';
227 description = e.params.url;
230 description = e.params.group_name;
234 description = e.params.host;
238 description = e.params.key;
242 description = e.params.host + ' (' + e.params.proxy + ')';
249 description = connectJobSourceEntry.getDescription();
254 if (description == undefined)
256 return description;
[all...]
/external/valgrind/dynamic_annotations/
H A Ddynamic_annotations.h235 #define ANNOTATE_BENIGN_RACE(pointer, description) \
237 pointer, sizeof(*(pointer)), description)
239 /* Same as ANNOTATE_BENIGN_RACE(address, description), but applies to
241 #define ANNOTATE_BENIGN_RACE_SIZED(address, size, description) \
243 address, size, description)
363 #define ANNOTATE_EXPECT_RACE(address, description) \
365 description)
404 #define ANNOTATE_EXPECT_RACE(address, description) /* empty */
405 #define ANNOTATE_FLUSH_EXPECTED_RACES(address, description) /* empty */
406 #define ANNOTATE_BENIGN_RACE(address, description) /* empt
[all...]
/external/webkit/LayoutTests/fast/dom/Attr/script-tests/
H A Daccess-after-element-destruction.js0 description("Tests that accessing Attr after its Element has been destroyed works without crashing.");
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
H A Dadd-listener-from-callback.js0 description('Tests that adding a new event listener from a callback works as expected.');
H A Dupdates.js0 description('Tests that updates to the orientation causes new events to fire.');
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Ddelayed-permission-allowed-for-multiple-requests.js0 description("Tests that when multiple requests are waiting for permission, no callbacks are invoked until permission is allowed.");
H A Ddelayed-permission-denied-for-multiple-requests.js0 description("Tests that when multiple requests are waiting for permission, no callbacks are invoked until permission is denied.");
H A Ddisconnected-frame-already.js0 description("Tests that when a request is made on a Geolocation object after its frame has been disconnected, no callbacks are made and no crash occurs.");
H A Ddisconnected-frame-permission-denied.js0 description("Tests that when a request is made on a Geolocation object, permission is denied and its Frame is disconnected before a callback is made, the error callback is invoked with PERMISSION_DENIED.");
H A Dmultiple-requests.js0 description("Tests that Geolocation correctly handles multiple concurrent requests.");
H A Dpage-reload-cancel-permission-requests.js0 description("Tests that when a page is reloaded, the frame is properly detached from the Geolocation object " +
H A Dpermission-denied-already-clear-watch.js0 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
H A Dpermission-denied-already-error.js0 description("Tests that when Geolocation permission has been denied prior to a call to a Geolocation method, the error callback is invoked with code PERMISSION_DENIED, when the Geolocation service encounters an error.");

Completed in 216 milliseconds

<<11121314151617181920>>