HomeSort by relevance Sort by last modified time
    Searched refs:candidate (Results 151 - 175 of 996) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/v8/src/x64/
code-stubs-x64.h 299 Register candidate = Register::from_code(i); local
300 if (candidate.is(rcx)) continue;
301 if (candidate.is(r1)) continue;
302 if (candidate.is(r2)) continue;
303 if (candidate.is(r3)) continue;
304 return candidate;
  /external/v8/src/x87/
code-stubs-x87.h 302 Register candidate = Register::from_code(i); local
303 if (candidate.is(ecx)) continue;
304 if (candidate.is(r1)) continue;
305 if (candidate.is(r2)) continue;
306 if (candidate.is(r3)) continue;
307 return candidate;
  /frameworks/support/core-ui/java/android/support/v4/widget/
FocusStrategy.java 143 // Initialize the best candidate to something impossible so that
187 * Is candidate a better candidate than currentBest for a focus search
193 * @param candidate the candidate rectangle
195 * @return {@code true} if the candidate rectangle is a better than the
200 @NonNull Rect candidate, @NonNull Rect currentBest) {
201 // To be a better candidate, need to at least be a candidate in the
203 if (!isCandidate(source, candidate, direction))
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 1046 View candidate = getChildAt(i); local
    [all...]
  /external/chromium-trace/catapult/systrace/systrace/
output_generator.py 143 for candidate in merge_candidates[1:]:
144 json_data = candidate.raw_data
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BurmeseBreakEngine.java 113 //Look for candidate words at the current position
131 // Followed by another dictionary word; mark first word as a good candidate
182 int candidate = words[(wordsFound + 1) %BURMESE_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
184 if (candidate > 0) {
KhmerBreakEngine.java 113 //Look for candidate words at the current position
131 // Followed by another dictionary word; mark first word as a good candidate
182 int candidate = words[(wordsFound + 1) %KHMER_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
184 if (candidate > 0) {
LaoBreakEngine.java 112 //Look for candidate words at the current position
130 // Followed by another dictionary word; mark first word as a good candidate
181 int candidate = words[(wordsFound + 1) %LAO_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
183 if (candidate > 0) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BurmeseBreakEngine.java 112 //Look for candidate words at the current position
130 // Followed by another dictionary word; mark first word as a good candidate
181 int candidate = words[(wordsFound + 1) %BURMESE_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
183 if (candidate > 0) {
KhmerBreakEngine.java 112 //Look for candidate words at the current position
130 // Followed by another dictionary word; mark first word as a good candidate
181 int candidate = words[(wordsFound + 1) %KHMER_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
183 if (candidate > 0) {
LaoBreakEngine.java 111 //Look for candidate words at the current position
129 // Followed by another dictionary word; mark first word as a good candidate
180 int candidate = words[(wordsFound + 1) %LAO_LOOKAHEAD].candidates(fIter, fDictionary, rangeEnd); local
182 if (candidate > 0) {
  /external/webrtc/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 187 // It's possible to only have 1 ICE candidate for the answerer, since we use
234 for (RTCICECandidate* candidate in offeringExpectations
236 [pcAnswer addICECandidate:candidate];
238 for (RTCICECandidate* candidate in answeringExpectations
240 [pcOffer addICECandidate:candidate];
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 111 RedEyeCandidate candidate = (RedEyeCandidate) point; local
112 RectF rect = candidate.getRect();
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultHomePicker.java 73 final DefaultAppInfo candidate = local
75 candidates.add(candidate);
  /external/autotest/server/cros/dynamic_suite/
job_status.py 352 def is_worse_than(self, candidate):
354 Return whether |self| represents a "worse" failure than |candidate|.
360 @param candidate: a Status instance to compare to this one.
361 @return True if |self| is "worse" than |candidate|.
363 if self._status != candidate._status:
365 log.job_statuses.index(candidate._status))
367 if self._reason and not candidate._reason:
  /external/webrtc/talk/app/webrtc/
statscollector.h 47 // Conversion function to convert candidate type string to the corresponding one
116 // whether this candidate is local or remote.
117 StatsReport* AddCandidateReport(const cricket::Candidate& candidate,
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.h 74 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
  /frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
healing.rs 149 float3 candidate = rsGetElementAt_float3(border, i).xyz;
150 sum += distance(orig, candidate);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 52 * Attribute of a word (a candidate in the history list)
57 * Attribute of a word (the best candidate)
97 * @param type The candidate view type,
141 * Get candidate is focused now.
143 * @return the Candidate is focused of a flag.
148 * Select candidate that has focus.
169 text.setText(word.candidate);
OpenWnnDictionaryImplJni.java 253 * Retrieve the candidate string from the current word information.
257 * @return The candidate string
363 * Set the candidate string to the current word information.
366 * @param candidate The candidate string
370 public static final native int setCandidate( long work, String candidate );
  /prebuilts/go/darwin-x86/src/compress/flate/
deflatefast.go 104 var candidate tableEntry
113 candidate = e.table[nextHash&tableMask]
118 offset := s - (candidate.offset - e.cur)
119 if offset > maxMatchOffset || cv != candidate.val {
147 t := candidate.offset - e.cur + 4
169 candidate = e.table[currHash&tableMask]
172 offset := s - (candidate.offset - e.cur)
173 if offset > maxMatchOffset || uint32(x) != candidate.val {
  /prebuilts/go/linux-x86/src/compress/flate/
deflatefast.go 104 var candidate tableEntry
113 candidate = e.table[nextHash&tableMask]
118 offset := s - (candidate.offset - e.cur)
119 if offset > maxMatchOffset || cv != candidate.val {
147 t := candidate.offset - e.cur + 4
169 candidate = e.table[currHash&tableMask]
172 offset := s - (candidate.offset - e.cur)
173 if offset > maxMatchOffset || uint32(x) != candidate.val {
  /external/autotest/client/bin/
setup_job.py 182 for candidate in candidates:
183 if candidate.__class__.__name__ in requested_tests:
184 need_to_setup.append(candidate)
  /external/clang/utils/
CmpDriver 56 candidate = cost(a_0, b)
57 if best is None or candidate < best[0]:
58 best = (candidate, a_0, j)
  /external/libchrome/base/process/
process_metrics_linux.cc 805 bool IsValidDiskName(const std::string& candidate) {
806 if (candidate.length() < 3)
808 if (candidate[1] == 'd' &&
809 (candidate[0] == 'h' || candidate[0] == 's' || candidate[0] == 'v')) {
811 for (size_t i = 2; i < candidate.length(); ++i) {
812 if (!islower(candidate[i]))
820 if (candidate.length() < kMMCNameLen + 1)
822 if (candidate.compare(0, kMMCNameLen, kMMCName) != 0
    [all...]

Completed in 3208 milliseconds

1 2 3 4 5 67 8 91011>>