HomeSort by relevance Sort by last modified time
    Searched defs:candidate (Results 1 - 25 of 717) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/objc/
RTCICECandidate+Internal.h 35 webrtc::IceCandidateInterface* candidate; variable
37 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate;
  /external/vogar/src/vogar/
ClassAnalyzer.java 32 Method candidate = klass.getMethod(name, parameters); local
33 int modifier = candidate.getModifiers();
34 Class<?> actualReturnType = candidate.getReturnType();
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDSignalingMessage.h 34 @property(nonatomic, readonly) RTCICECandidate *candidate; variable
36 - (instancetype)initWithCandidate:(RTCICECandidate *)candidate;
  /art/compiler/optimizing/
ssa_phi_elimination.cc 147 HInstruction* candidate = nullptr; local
160 } else if (candidate == nullptr) {
161 candidate = input;
162 } else if (candidate != input) {
163 candidate = nullptr;
168 // If we haven't found a candidate, check for a phi cycle. Note that we need to detect
171 if (candidate == nullptr) {
190 } else if (candidate == nullptr) {
191 candidate = input;
192 } else if (candidate != input)
    [all...]
  /art/test/150-loadlibrary/src/
Main.java 36 String candidate = p + libName; local
37 if (new File(candidate).exists()) {
38 fileName = candidate;
  /external/webrtc/talk/app/webrtc/
jsepicecandidate.h 36 #include "webrtc/p2p/base/candidate.h"
45 const cricket::Candidate& candidate);
49 void SetCandidate(const cricket::Candidate& candidate) {
50 candidate_ = candidate;
55 virtual const cricket::Candidate& candidate() const { function in class:webrtc::JsepIceCandidate
64 cricket::Candidate candidate_;
77 virtual bool HasCandidate(const IceCandidateInterface* candidate) const
    [all...]
  /packages/apps/ManagedProvisioning/tools/java/com/android/managedprovisioning/tools/anim/
SwiperThemeGenerator.java 44 int candidate = colorMatcher.findClosestColor(color); local
45 if (seen.add(candidate)) {
46 String colorHex = String.format("%02x%02x%02x", Color.red(candidate),
47 Color.green(candidate), Color.blue(candidate));
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 41 this.candidate = "";
52 this.candidate = headClause.candidate;
58 StringBuffer candidate = new StringBuffer(); local
62 candidate.append(clause.candidate);
67 this.candidate = candidate.toString();
84 this.candidate = clause.candidate;
    [all...]
WnnWord.java 28 public String candidate; field in class:WnnWord
35 /** The attribute of this word when it is assumed a candidate. */
48 * @param candidate The string of word
51 public WnnWord(String candidate, String stroke) {
52 this(0, candidate, stroke, new WnnPOS(), 0, 0);
58 * @param candidate The string of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
69 * @param candidate The string of word
73 public WnnWord(String candidate, String stroke, WnnPOS posTag)
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
GenericTypeHelper.java 91 Type candidate = matchTypeVariable(type, variable); local
92 if (candidate != null) {
93 return candidate;
98 candidate = matchTypeVariable(interfaceType, variable);
99 if (candidate != null) {
100 return candidate;
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSet.java 50 Object candidate = table[i & mask]; local
51 if (candidate == null) {
54 if (candidate.equals(target)) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.c 42 int candidate = -1; local
88 candidate = i;
93 candidate = RC_PAIR_PRESUB_SRC;
94 } else if (candidate < 0 || (rgb && rgb_used > 2)
99 /* candidate >= 0 */
102 pair->RGB.Src[candidate].Used = 1;
103 pair->RGB.Src[candidate].File = file;
104 pair->RGB.Src[candidate].Index = index;
105 if (candidate == RC_PAIR_PRESUB_SRC) {
115 pair->Alpha.Src[candidate].Used = 1
    [all...]
  /external/v8/src/
version.cc 16 #define CANDIDATE_STRING " (candidate)"
47 const char* candidate = IsCandidate() ? " (candidate)" : ""; local
55 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
59 GetMajor(), GetMinor(), GetBuild(), candidate,
69 const char* candidate = IsCandidate() ? "-candidate" : ""; local
72 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
75 GetMajor(), GetMinor(), GetBuild(), candidate);
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
CandidateLoader.java 24 * Loads a set of candidate classes from a properties file into the TCK.
42 * Called whenever, trying to retrieve a candidate class from its name, a
45 * @param name Candidate class name
102 * Load a candidate property file
123 Class<?> candidate = Class.forName(key, true, classloader); local
124 tck.registerCandidate(candidate, value);
  /external/v8/src/compiler/
instruction-scheduler.cc 17 // the next best candidate to schedule.
30 auto candidate = nodes_.end(); local
34 candidate = iterator;
39 if (candidate != nodes_.end()) {
40 ScheduleGraphNode *result = *candidate;
41 nodes_.erase(candidate);
53 auto candidate = nodes_.begin(); local
54 std::advance(candidate, isolate()->random_number_generator()->NextInt(
56 ScheduleGraphNode *result = *candidate;
57 nodes_.erase(candidate);
218 ScheduleGraphNode* candidate = ready_list.PopBestCandidate(cycle); local
    [all...]
  /external/v8/src/heap/
objects-visiting.cc 237 // Check whether to keep the candidate in the list.
238 T* candidate = reinterpret_cast<T*>(list); local
257 candidate = reinterpret_cast<T*>(retained);
258 tail = candidate;
264 WeakListVisitor<T>::VisitPhantomObject(heap, candidate);
268 list = WeakListVisitor<T>::WeakNext(candidate);
281 T* candidate = reinterpret_cast<T*>(list); local
282 list = WeakListVisitor<T>::WeakNext(candidate);
283 WeakListVisitor<T>::SetWeakNext(candidate, undefined);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioProfile.cpp 80 uint32_t candidate = mSamplingRates[orderOfDesiredRate]; local
81 if (candidate / AUDIO_RESAMPLER_DOWN_RATIO_MAX <= samplingRate) {
82 updatedSamplingRate = candidate;
88 uint32_t candidate = mSamplingRates[orderOfDesiredRate - 1]; local
89 if (candidate * AUDIO_RESAMPLER_UP_RATIO_MAX >= samplingRate) {
90 updatedSamplingRate = candidate;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
Bots.java 79 UiObject2 candidate = mDevice.findObject(By.res(resourceName)); local
81 candidate.findObject(By.focused(true)));
  /external/guava/guava-tests/test/com/google/common/collect/
CollectionBenchmarkSampleData.java 88 Element candidate = newElement(); local
89 if (!elementsInSet.contains(candidate)) {
90 queryList.add(candidate);
  /external/jline/src/src/main/java/jline/
CandidateListCompletionHandler.java 48 // fail if the only candidate is the same as the current buffer
162 StringBuffer candidate = new StringBuffer(); local
166 candidate.append(first.charAt(i));
172 return candidate.toString();
  /external/junit/src/main/java/org/junit/experimental/theories/
ParameterSignature.java 66 public boolean canAcceptValue(Object candidate) {
67 return (candidate == null) ? !type.isPrimitive() : canAcceptType(candidate.getClass());
70 public boolean canAcceptType(Class<?> candidate) {
71 return type.isAssignableFrom(candidate) ||
72 isAssignableViaTypeConversion(type, candidate);
75 public boolean canPotentiallyAcceptType(Class<?> candidate) {
76 return candidate.isAssignableFrom(type) ||
77 isAssignableViaTypeConversion(candidate, type) ||
78 canAcceptType(candidate);
116 Annotation candidate = findDeepAnnotation(each.annotationType() local
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationsFinder.java 180 Invocation candidate = null; local
183 candidate = candidate != null ? candidate : i;
185 candidate = null;
188 return candidate;
  /external/wpa_supplicant_8/src/rsn_supp/
preauth.c 34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
296 * Go through the PMKSA candidates and start pre-authentication if a candidate
302 struct rsn_pmksa_candidate *candidate, *n; local
307 /* TODO: drop priority for old candidate entries */
309 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
323 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
326 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
327 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
330 "candidate " MACSTR
332 MAC2STR(candidate->bssid))
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultHomePicker.java 73 final DefaultAppInfo candidate = local
75 candidates.add(candidate);
  /packages/apps/TV/tests/common/src/com/android/tv/input/
TunerHelper.java 92 Tuner candidate = null; local
98 // A tuner which is used both for the tune and recording is the candidate.
99 candidate = tuner;
108 if (candidate != null) {
109 candidate.tuning = false;
120 Tuner candidate = null; local
127 // A tuner which is used both for the tune and recording is the candidate.
128 candidate = tuner;
139 if (candidate != null) {
140 candidate.recording = false
    [all...]

Completed in 937 milliseconds

1 2 3 4 5 6 7 8 91011>>