/external/chromium_org/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/chromium_org/third_party/WebKit/Source/testing/runner/ |
MockWebMediaStreamCenter.cpp | 53 WebVector<WebSourceInfo> results(size); 54 results[0].initialize("MockAudioDevice#1", WebSourceInfo::SourceKindAudio, "Mock audio device", WebSourceInfo::VideoFacingModeNone); 55 results[1].initialize("MockVideoDevice#1", WebSourceInfo::SourceKindVideo, "Mock video device", WebSourceInfo::VideoFacingModeEnvironment); 56 request.requestSucceeded(results);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
SpeechInputClientImpl.cpp | 97 void SpeechInputClientImpl::setRecognitionResult(int requestId, const WebSpeechInputResultArray& results) 100 WebCore::SpeechInputResultArray webcoreResults(results.size()); 101 for (size_t i = 0; i < results.size(); ++i) 102 webcoreResults[i] = results[i];
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
allcoll.h | 50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
|
decoll.h | 43 static const Collator::EComparisonResult results[][2]; member in class:CollationGermanTest
|
escoll.h | 42 static const Collator::EComparisonResult results[]; member in class:CollationSpanishTest
|
ficoll.h | 41 static const Collator::EComparisonResult results[]; member in class:CollationFinnishTest
|
lcukocol.h | 33 static const Collator::EComparisonResult results[]; member in class:LotusCollationKoreanTest
|
trcoll.h | 42 static const Collator::EComparisonResult results[]; member in class:CollationTurkishTest
|
/external/chromium_org/tools/perf/measurements/ |
image_decoding.py | 29 def MeasurePage(self, page, tab, results): 48 results.Add('ImageDecoding_avg', 'ms', 'unsupported') 51 results.Add('ImageDecoding_avg', 'ms', image_decoding_avg) 52 results.Add('ImageLoading_avg', 'ms',
|
memory.py | 61 def MeasurePage(self, page, tab, results): 63 h.GetValue(page, tab, results) 77 def DidRunTest(self, tab, results): 79 self._memory_metric.AddResults(tab, results)
|
/external/chromium_org/tools/perf/metrics/ |
__init__.py | 22 def AddResults(self, tab, results): 23 """Add the data collected into the results object for a measurement. 25 Metrics may implement AddResults to provide a common way to add results 27 results should be added with results.Add(trace_name, unit, value).
|
media.py | 30 def AddResults(self, tab, results): 31 """Reports all recorded metrics as Telemetry perf results.""" 34 self._AddResultsForMediaElement(media_metric, results) 36 def _AddResultsForMediaElement(self, media_metric, results): 54 results.Add(trace + special_label, unit, str(metrics[m]), 59 logging.error('Metrics ID is missing in results.')
|
/external/easymock/src/org/easymock/internal/ |
Results.java | 23 public class Results implements Serializable {
31 private final List<Result> results = new ArrayList<Result>();
field in class:Results 42 results.add(result);
51 return results.get(i);
56 return results.get(i);
|
/external/icu4c/test/intltest/ |
allcoll.h | 50 static const Collator::EComparisonResult results[]; member in class:CollationDummyTest
|
decoll.h | 43 static const Collator::EComparisonResult results[][2]; member in class:CollationGermanTest
|
escoll.h | 42 static const Collator::EComparisonResult results[]; member in class:CollationSpanishTest
|
ficoll.h | 41 static const Collator::EComparisonResult results[]; member in class:CollationFinnishTest
|
lcukocol.h | 33 static const Collator::EComparisonResult results[]; member in class:LotusCollationKoreanTest
|
trcoll.h | 42 static const Collator::EComparisonResult results[]; member in class:CollationTurkishTest
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/ |
TerrainPicker.java | 54 public Vector3f getTerrainIntersection(final Ray worldPick, CollisionResults results);
|
/frameworks/base/core/java/android/speech/ |
RecognitionListener.java | 69 * Called when recognition results are ready. 71 * @param results the recognition results. To retrieve the results in {@code 76 void onResults(Bundle results); 79 * Called when partial recognition results are available. The callback might be called at any 81 * results are ready. This method may be called zero, one or multiple times for each call to 83 * service implementation. To request partial results, use 86 * @param partialResults the returned results. To retrieve the results i [all...] |
/frameworks/base/opengl/java/android/opengl/ |
Visibility.java | 86 * @param results an integer array containing the indices of the spheres 88 * @param resultsOffset an offset into the results array where the results 91 * results. 94 * results are written into the results array. 99 * results is null, resultsOffset < 0, resultsOffset > results.length - 104 int[] results, int resultsOffset, int resultsCapacity);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_basestring.py | 13 def transform(self, node, results):
|
fix_future.py | 19 def transform(self, node, results):
|