/external/clang/test/Sema/ |
format-strings-gnu.c | 20 // expected-warning@-4 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}} 23 // expected-warning@-6 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}} 30 printf("%Lc", 'a'); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 'c' conversion specifier}} 31 printf("%Ls", "a"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}} 43 printf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}} 53 scanf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/ |
EntropyComputeUtil.java | 37 // Prepare collision results 38 CollisionResults results = new CollisionResults(); local 58 results.clear(); 59 terrainBlock.collideWith(ray, Matrix4f.IDENTITY, bbox, results); 61 if (results.size() > 0){ 62 Vector3f contactPoint = results.getClosestCollision().getContactPoint();
|
/frameworks/base/core/java/android/widget/ |
Filter.java | 130 * filtering operation. Results computed by the filtering operation 140 * @return the results of the filtering operation 149 * <p>Invoked in the UI thread to publish the filtering results in the 151 * results computed in {@link #performFiltering}.</p> 154 * @param results the results of the filtering operation 161 FilterResults results); 165 * should override this method to convert their results. The default 177 * <p>Holds the results of a filtering operation. The results are the value 308 FilterResults results; field in class:Filter.RequestArguments [all...] |
/packages/apps/Email/src/org/apache/commons/io/ |
DirectoryWalker.java | 60 * List results = new ArrayList();
61 * walk(startDirectory, results);
62 * return results;
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
76 * protected void handleFile(File file, int depth, Collection results) {
79 * results.add(file);
206 * private void handleIsCancelled(File file, int depth, Collection results) {
210 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
234 * protected void handleFile(File file, int depth, Collection results) throws IOException { [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
json_results_generator.py | 40 # A JSON results generator for generic tests. 98 """A JSON results generator for generic tests.""" 105 # test modifiers (FAILS, FLAKY, etc) but not actual test results. 119 RESULTS = "results" 129 RESULTS_FILENAME = "results.json" 146 """Modifies the results.json file. Grabs it off the archive directory 155 results json file. 156 builder_base_url: the URL where we have the archived test results. 157 If this is None no archived results will be retrieved [all...] |
/external/chromium-trace/trace-viewer/src/ |
timeline_analysis_view.js | 116 * Adds a spacing row to spread out results. 197 * Analyzes the selection, outputting the analysis results into the provided 198 * results object. 200 * @param {AnalysisResults} results Where the analysis is placed. 203 function analyzeSelection(results, selection) { 210 var table = results.appendTable('analysis-slice-table', 2); 212 results.appendTableHeader(table, 'Selected slice:'); 213 results.appendSummaryRow(table, 'Title', slice.title); 216 results.appendSummaryRow(table, 'Category', slice.category); 218 results.appendSummaryRowTime(table, 'Start', slice.start) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/ |
test.xml | 9 <!--name that can be added to report name to identify which platform tests results come from--> 15 <!-- The directory that will contain the xml and html results from the tests that are run --> 16 <property name="results" value="${basedir}/results" /> 49 <copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" /> 72 <target name="genHtml" description="Generates HTML results with provided JUNIT.XSL provided"> 73 <style style="JUNIT.XSL" basedir="${results}/xml" destdir="${results}/html" />
|
/external/openssh/regress/ |
sftp-glob.sh | 21 grep -v "^sftp>" > ${RESULTS} 26 if fgrep "$expected" ${RESULTS} >/dev/null 2>&1 ; then 29 fail "$expected missing from $errtag results" 33 fgrep "$unexpected" ${RESULTS} >/dev/null 2>&1 ; then 34 fail "$unexpected present in $errtag results" 36 rm -f ${RESULTS} 40 RESULTS=${OBJ}/results
|
/external/webkit/LayoutTests/http/tests/appcache/ |
remove-cache-expected.txt | 1 Test that a 404 response for manifest results in cache removal. 4 Frame 2: Manifest loading results in 404 response, so the cache group becomes obsolete, and an obsolete event is dispatched (because the document in frame was associated with a cache in the group).
|
/external/webkit/Source/WebCore/svg/ |
SVGAnimateElement.cpp | 187 SVGAnimateElement* results = static_cast<SVGAnimateElement*>(resultElement); 189 if (results->m_animatedAttributeType == AnimatedString && m_animatedAttributeType != AnimatedString) 194 m_fromNumber = results->m_animatedNumber; 220 results->m_animatedNumber += number; 222 results->m_animatedNumber = number; 227 m_fromColor = results->m_animatedColor; 253 results->m_animatedColor = ColorDistance::addColorsAndClamp(results->m_animatedColor, color); 255 results->m_animatedColor = color; 260 ASSERT(results->m_animatedPathPointer) [all...] |
/external/webkit/Tools/BuildSlaveSupport/ |
run-performance-tests | 52 GetOptions('upload-results=s' => \$resultsUploadDestination); 67 die "Failed to start slave!\n" unless (system("ssh", $userAndHost, "autovicki", $slaveDirectory, "--safari", "$slaveDirectory/Safari.app", "--count", 5, "--clean-exit", "--webkit-revision", currentSVNRevision(), "--show-results", "send-completed-results.command") == 0); 77 print "Uploading results to $resultsUploadDestination\n"; 78 die "Failed to upload xml results file." unless (system("scp", "$userAndHost:/Results/PerformanceReportSummary.xml", $resultsUploadDestination) == 0); 79 die "Failed to upload svg results file." unless (system("scp", "$userAndHost:/Results/PerformanceGraph.svg", $resultsUploadDestination) == 0);
|
/frameworks/base/core/java/android/app/ |
IInstrumentationWatcher.aidl | 27 in Bundle results); 29 in Bundle results);
|
/development/samples/VoiceRecognitionService/ |
_index.html | 12 fixed set of results immediately. The results can be either a set of letters or numbers, as 21 VoiceSearch application relies on more than just simple text results, it may not work 24 work as expected - returning just the very simple list of results to the application.</p>
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
omnibox_popup_view.h | 12 // AutocompleteMatrix containing autocomplete results and (optionally) an
|
/external/chromium/net/tools/flip_server/ |
create_listener.cc | 119 struct addrinfo *results = 0; local 132 if ((err=getaddrinfo(node, service, &hints, &results))) { 139 AddrinfoGuard addrinfo_guard(results); 141 int sock = socket(results->ai_family, 142 results->ai_socktype, 143 results->ai_protocol); 176 if (bind(sock, results->ai_addr, results->ai_addrlen)) { 243 struct addrinfo *results = 0; local 255 if ((err=getaddrinfo(node, service, &hints, &results))) { [all...] |
/external/clang/test/Analysis/ |
override-werror.c | 5 // analyzer results.
|
/external/clang/test/Frontend/ |
macros.c | 7 // PR13747 - Don't warn about unused results with statement exprs in macros.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/META-INF/ |
MANIFEST.MF | 23 Export-Package: org.eclipse.test.internal.performance.results.db, 24 org.eclipse.test.internal.performance.results.model, 25 org.eclipse.test.internal.performance.results.ui, 26 org.eclipse.test.internal.performance.results.utils,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Main.java | 15 import org.eclipse.test.internal.performance.results.db.DB_Results; 18 * Main class to generate performance results of all scenarios matching a given pattern 26 * Generate the performance results for a specified build regarding to a specific reference. 30 * <li>A global php file including global scenario fingerprints and links for all concerned components results php files</li>
|
/external/webkit/LayoutTests/fast/xpath/4XPath/Borrowed/ |
namespace-nodes-expected.txt | 3 The actual results are incorrect, because XPath namespace nodes are not implemented yet.
|
/external/webkit/LayoutTests/storage/ |
multiple-transactions-on-different-handles.html | 7 This is a test to see if queueing up multiple transactions on different handles to the same database results in a deadlock.<br>
|
open-database-while-transaction-in-progress.html | 7 This is a test to see if opening a database while a transaction is running on a different handle to the same database results in a deadlock.<br>
|
/external/webkit/Source/WebCore/page/ |
SpeechInputEvent.cpp | 38 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results) 40 return adoptRef(new SpeechInputEvent(eventType, results)); 46 SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results) 48 , m_results(SpeechInputResultList::create(results))
|
SpeechInputResultList.cpp | 38 PassRefPtr<SpeechInputResultList> SpeechInputResultList::create(const SpeechInputResultArray& results) 40 return adoptRef(new SpeechInputResultList(results)); 48 SpeechInputResultList::SpeechInputResultList(const SpeechInputResultArray& results) 49 : m_results(results) // Takes a copy of the array of RefPtrs.
|
/external/webkit/Tools/QueueStatusServer/templates/includes/ |
singlequeuestatus.html | 8 <span class="status-results">[{{ status.key.id|results_link|safe }}]</span>
|