HomeSort by relevance Sort by last modified time
    Searched full:candidates (Results 1 - 25 of 702) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
RandomScheduler.java 43 Vector<Filter> candidates = new Vector<Filter>(); local
46 candidates.add(filter);
48 if (candidates.size() > 0) {
49 int r = mRand.nextInt(candidates.size());
50 return candidates.elementAt(r);
  /external/objenesis/tck/src/org/objenesis/tck/candidates/
candidates.properties 55 org.objenesis.tck.candidates.NoConstructor = No constructor
56 org.objenesis.tck.candidates.SerializableNoConstructor = No constructor (serializable)
57 org.objenesis.tck.candidates.DefaultPublicConstructor = Default public constructor
58 org.objenesis.tck.candidates.SerializableDefaultPublicConstructor = Default public constructor (serializable)
59 org.objenesis.tck.candidates.DefaultProtectedConstructor = Default protected constructor
60 org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor = Default protected constructor (serializable)
61 org.objenesis.tck.candidates.DefaultPackageConstructor = Default package constructor
62 org.objenesis.tck.candidates.SerializableDefaultPackageConstructor = Default package constructor (serializable)
63 org.objenesis.tck.candidates.DefaultPrivateConstructor = Default private constructor
64 org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor = Default private constructor (serializable
    [all...]
serializable-candidates.properties 55 org.objenesis.tck.candidates.SerializableNoConstructor = No constructor (serializable)
56 org.objenesis.tck.candidates.SerializableDefaultPublicConstructor = Default public constructor (serializable)
57 org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor = Default protected constructor (serializable)
58 org.objenesis.tck.candidates.SerializableDefaultPackageConstructor = Default package constructor (serializable)
59 org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor = Default private constructor (serializable)
60 org.objenesis.tck.candidates.SerializableReplacer = Serializable replacing with another class
61 org.objenesis.tck.candidates.SerializableResolver = Serializable resolving to another class
64 org.objenesis.tck.candidates.SerializableConstructorThrowingException = Constructor throwing exception (serializable)
65 org.objenesis.tck.candidates.SerializableConstructorWithArguments = Constructor with arguments (serializable)
66 org.objenesis.tck.candidates.SerializableConstructorWithMandatoryArguments = Constructor with mandatory arguments (seriali (…)
    [all...]
  /external/chromium_org/chrome/installer/util/
language_selector.h 6 // set of candidates.
18 // A helper class for selecting a supported language from a set of candidates.
19 // By default, the candidates are retrieved from the operating system.
27 explicit LanguageSelector(const std::vector<std::wstring>& candidates);
46 static bool SelectIf(const std::vector<std::wstring>& candidates,
49 void DoSelect(const std::vector<std::wstring>& candidates);
language_selector.cc 6 // set of candidates.
70 // that it will win if it precedes another valid tag in a list of candidates.
188 // Adds to |candidates| the eligible languages on the system. Any language
191 void GetCandidatesFromSystem(std::vector<std::wstring>* candidates) {
192 DCHECK(candidates);
198 candidates->push_back(language);
203 base::win::i18n::GetThreadPreferredUILanguageList(candidates);
215 std::vector<std::wstring> candidates; local
217 GetCandidatesFromSystem(&candidates);
218 DoSelect(candidates);
    [all...]
language_selector_unittest.cc 43 std::wstring candidates[] = { local
47 std::vector<std::wstring>(&candidates[0],
48 &candidates[arraysize(candidates)]));
53 std::wstring candidates[] = { local
57 std::vector<std::wstring>(&candidates[0],
58 &candidates[arraysize(candidates)]));
63 std::wstring candidates[] = { local
67 std::vector<std::wstring>(&candidates[0]
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 34 * The interface of candidates view manager used by {@link OpenWnn}.
39 /** Size of candidates view (normal) */
41 /** Size of candidates view (full) */
43 /** Size of candidates view (close/non-display) */
70 /** Whether candidates long click enable */
77 * Initialize the candidates view.
83 * @return The candidates view created in the initialize process; {@code null} if cannot create a candidates view.
88 * Get the candidates view being used currently.
90 * @return The candidates view; {@code null} if no candidates view is used currently
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportdescription.h 78 typedef std::vector<Candidate> Candidates;
89 const Candidates& candidates)
96 candidates(candidates) {}
98 const Candidates& candidates)
101 candidates(candidates) {}
109 candidates(from.candidates) {
152 Candidates candidates; member in struct:cricket::TransportDescription
    [all...]
rawtransport.cc 58 Candidates* candidates,
77 candidates->push_back(candidate);
84 const Candidates& candidates,
89 cand = candidates.begin();
90 cand != candidates.end();
stunport_unittest.cc 110 EXPECT_EQ(0U, port()->Candidates().size());
118 ASSERT_EQ(1U, port()->Candidates().size());
119 EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
131 EXPECT_EQ(0U, port()->Candidates().size());
139 ASSERT_EQ(1U, port()->Candidates().size());
140 EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
149 EXPECT_EQ(0U, port()->Candidates().size());
159 ASSERT_EQ(1U, port()->Candidates().size());
160 EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
164 ASSERT_EQ(1U, port()->Candidates().size())
    [all...]
rawtransport.h 51 Candidates* candidates,
54 const Candidates& candidates,
rawtransportchannel.cc 176 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
178 ASSERT(candidates.size() >= 1);
181 Candidate c = candidates[candidates.size() - 1];
188 if (stun_port_->candidates().size() < 2)
193 if (stun_port_->candidates()[0].address() ==
194 stun_port_->candidates()[1].address()) {
204 if (relay_port_->candidates().size() > 0)
230 ASSERT(port_->Candidates().size() >= 1);
231 ASSERT(port_->Candidates()[0].protocol() == "udp")
    [all...]
  /external/chromium_org/chromeos/dbus/ibus/
ibus_lookup_table.cc 38 const std::vector<IBusLookupTable::Entry>& candidates = table.candidates(); local
42 for (size_t i = 0; i < candidates.size(); ++i) {
45 text.set_text(candidates[i].value);
46 text.set_annotation(candidates[i].annotation);
47 text.set_description_title(candidates[i].description_title);
48 text.set_description_body(candidates[i].description_body);
50 if (!candidates[i].label.empty())
60 for (size_t i = 0; i < candidates.size(); ++i) {
62 AppendStringAsIBusText(candidates[i].label, &label_writer)
135 std::vector<IBusLookupTable::Entry>* candidates = table->mutable_candidates(); local
    [all...]
ibus_lookup_table_unittest.cc 38 std::vector<IBusLookupTable::Entry>* candidates = local
43 candidates->push_back(entry1);
48 candidates->push_back(entry2);
65 ASSERT_EQ(2UL, target_lookup_table.candidates().size());
66 EXPECT_EQ(kSampleText1, target_lookup_table.candidates().at(0).value);
67 EXPECT_EQ(kSampleText2, target_lookup_table.candidates().at(1).value);
68 EXPECT_EQ(kSampleLabel1, target_lookup_table.candidates().at(0).label);
69 EXPECT_EQ(kSampleLabel2, target_lookup_table.candidates().at(1).label);
87 std::vector<IBusLookupTable::Entry>* candidates = local
91 candidates->push_back(entry1)
    [all...]
  /external/objenesis/tck/src/org/objenesis/tck/
Main.java 69 runTest(new ObjenesisStd(), reporter, "Objenesis std", "candidates/candidates.properties");
71 "candidates/serializable-candidates.properties");
92 String candidates) throws IOException {
99 candidateLoader.loadFromResource(Main.class, candidates);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compare.py 34 candidates = set1 + set2 variable in class:ComparisonTest
37 for a in self.candidates:
38 for b in self.candidates:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compare.py 34 candidates = set1 + set2 variable in class:ComparisonTest
37 for a in self.candidates:
38 for b in self.candidates:
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
rawtransport.cc 56 Candidates* candidates,
70 candidates->push_back(candidate);
77 const Candidates& candidates,
81 cand = candidates.begin();
82 cand != candidates.end();
p2ptransport.cc 81 Candidates* candidates,
84 // candidates according to XEP-176.
94 candidates->push_back(candidate);
157 const Candidates& candidates,
161 // candidates according to XEP-176.
162 for (std::vector<Candidate>::const_iterator iter = candidates.begin();
163 iter != candidates.end(); ++iter) {
p2ptransport.h 62 Candidates* candidates,
65 const Candidates& candidates,
rawtransport.h 49 Candidates* candidates,
52 const Candidates& candidates,
rawtransportchannel.cc 175 PortAllocatorSession *session, const std::vector<Candidate>& candidates) {
177 ASSERT(candidates.size() >= 1);
180 Candidate c = candidates[candidates.size() - 1];
187 if (stun_port_->candidates().size() < 2)
192 if (stun_port_->candidates()[0].address() ==
193 stun_port_->candidates()[1].address()) {
209 if (relay_port_->candidates().size() > 0)
235 ASSERT(port_->candidates().size() >= 1);
236 ASSERT(port_->candidates()[0].protocol() == "udp")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.cpp 135 Vector<HTMLStackItem*, 10> candidates;
145 // Quickly reject obviously non-matching candidates.
152 candidates.append(candidate);
155 if (candidates.size() < kNoahsArkCapacity)
158 remainingCandidates.append(candidates);
163 Vector<HTMLStackItem*> candidates; local
164 tryToEnsureNoahsArkConditionQuickly(newItem, candidates);
165 if (candidates.isEmpty())
171 remainingCandidates.reserveInitialCapacity(candidates.size());
177 for (size_t j = 0; j < candidates.size(); ++j)
    [all...]
  /external/chromium_org/media/video/capture/win/
capability_list_win.cc 62 // Loop through the candidates to create a list of differentials between the
78 // Sort the best height candidates.
84 // Remove all candidates but the best.
90 // Sort the best width candidates.
96 // Remove all candidates but the best.
102 // Sort the best frame rate candidates.
  /external/chromium_org/tools/
gyp-explain.py 39 candidates = []
42 candidates.append(target)
44 if not candidates:
47 if len(candidates) > 1:
49 substring, ' '.join(candidates))
51 return candidates[0]

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 91011>>