/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
patchlevel.h | 17 #define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
patchlevel.h | 17 #define PY_RELEASE_LEVEL_GAMMA 0xC /* For release candidates */
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
transport.h | 81 typedef std::vector<Candidate> Candidates; 83 // Used to parse and serialize (write) transport candidates. For 90 // ParseCandidates should return false if there are candidates to 92 // and there are no candidates to parse, then return true, 93 // indicating a successful parse of 0 candidates. 109 // candidates, since there is no enclosing transport description. 112 Candidate* candidates, 294 // Handles sending of ready candidates and receiving of remote candidates. 299 void OnRemoteCandidates(const std::vector<Candidate>& candidates); [all...] |
sessionmessages.cc | 284 // Fortunately, for the cases where translation is needed, candidates are 312 Candidates* candidates, 327 candidates->push_back(candidate); 335 Candidates* candidates, 342 content_name, candidates, error)) { 359 // If we don't have media, no need to separate the candidates. 362 TransportDescription(NS_GINGLE_P2P, Candidates())); 364 CN_OTHER, &tinfo.description.candidates, [all...] |
p2ptransport.h | 59 // return false if there are candidates to parse. We can't not call 61 // there are candidates or not.
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
KanaConverter.java | 475 /** List of the generated candidates */ 525 /* Create pseudo candidates for all keyboard type */ 536 /* Create pseudo candidates for Qwerty keyboard */ 539 /* Create pseudo candidates for 12key */ 541 /* Create pseudo candidates for half width numeric */ 551 /* Create pseudo candidates for full width numeric */ 556 /* Create pseudo candidates for half width alphabet */ 565 /* Create pseudo candidates for full width alphabet */ 586 /* Create pseudo candidates for half width alphabet */ 593 /* Create pseudo candidates for the full width alphabet * [all...] |
OpenWnnEngineJAJP.java | 79 /** Limitation of predicted candidates */ 82 /** Limitation of candidates one-line */ 100 /** Number of output candidates */ 104 * Where to get the next candidates from.<br> 121 /** Whether displaying single clause candidates or not */ 232 /* get candidates by single clause conversion */ 240 /* end of candidates by single clause conversion */ 244 /* get candidates from Kana converter */ 287 * Clear work area that hold candidates information.
|
OpenWnnClauseConverterJAJP.java | 49 /** candidates of conversion */ 123 * @return The candidates of conversion; {@code null} if an error occurs. 135 /* clear the candidates list */ 253 * @param all Get all candidates or not 281 /* get candidates of stem in a clause */ 311 * Add valid clause to the candidates list. 318 * @param all Get all candidates or not 524 * @param all Get all candidates or not
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/gdi/ |
native_gdi.c | 271 enum pipe_format candidates[] = { local 282 assert(Elements(candidates) <= 8); 284 for (i = 0; i < Elements(candidates); i++) { 285 if (screen->is_format_supported(screen, candidates[i], 287 formats[count++] = candidates[i];
|
/external/mesa3d/src/gallium/state_trackers/egl/gdi/ |
native_gdi.c | 271 enum pipe_format candidates[] = { local 282 assert(Elements(candidates) <= 8); 284 for (i = 0; i < Elements(candidates); i++) { 285 if (screen->is_format_supported(screen, candidates[i], 287 formats[count++] = candidates[i];
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_engine_ibus_browserttests.cc | 579 " candidates: [{" 621 ASSERT_EQ(4U, table.candidates().size()); 623 EXPECT_EQ("CANDIDATE_1", table.candidates().at(0).value); 625 EXPECT_EQ("CANDIDATE_2", table.candidates().at(1).value); 626 EXPECT_EQ("LABEL_2", table.candidates().at(1).label); 628 EXPECT_EQ("CANDIDATE_3", table.candidates().at(2).value); 629 EXPECT_EQ("LABEL_3", table.candidates().at(2).label); 630 EXPECT_EQ("ANNOTACTION_3", table.candidates().at(2).annotation); 632 EXPECT_EQ("CANDIDATE_4", table.candidates().at(3).value); 633 EXPECT_EQ("LABEL_4", table.candidates().at(3).label) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
basicportallocator.cc | 131 // in any candidates. Using this signal BasicPortAllocatorSession can send 353 // If any of the allocated ports have not completed the candidates allocation, 354 // mark those as error. Since session doesn't need any new candidates 355 // at this stage of the allocation, it's safe to discard any new candidates. 360 // Updating port state to error, which didn't finish allocating candidates 536 // Send candidates whose protocol is enabled. 537 std::vector<Candidate> candidates; 541 candidates.push_back(c); 544 if (!candidates.empty()) { 545 SignalCandidatesReady(this, candidates); 589 std::vector<Candidate> candidates; local [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
preauth.c | 163 * address. This is usually called for PMKSA candidates found from scan results 277 * rsn_preauth_candidate_process - Process PMKSA candidates 280 * Go through the PMKSA candidates and start pre-authentication if a candidate 281 * without an existing PMKSA cache entry is found. Processed candidates will be 334 "candidates"); 345 * This function is used to add PMKSA candidates for RSN pre-authentication. It 347 * candidates, i.e., EVENT_PMKID_CANDIDATE events to wpa_supplicant_event(). 423 * TODO: is it ok to free all candidates? What about the entries 460 /* Give less priority to candidates found from normal scan results. */
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SuggestedWords.java | 243 public static void removeDups(ArrayList<SuggestedWordInfo> candidates) { 244 if (candidates.size() <= 1) { 248 while (i < candidates.size()) { 249 final SuggestedWordInfo cur = candidates.get(i); 251 final SuggestedWordInfo previous = candidates.get(j); 253 candidates.remove(cur.mScore < previous.mScore ? i : j);
|
/external/clang/include/clang/Sema/ |
Overload.h | 42 OR_Ambiguous, ///< Ambiguous candidates found. 47 /// Requests that all candidates be shown. Viable candidates will 51 /// Requests that only viable candidates be shown. 695 /// OverloadCandidateSet - A set of overload candidates, used in C++ 698 SmallVector<OverloadCandidate, 16> Candidates; 727 /// \brief Clear out all of the candidates. 731 iterator begin() { return Candidates.begin(); } 732 iterator end() { return Candidates.end(); } 734 size_t size() const { return Candidates.size(); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsdp.cc | 53 using cricket::Candidates; 251 static void BuildCandidate(const std::vector<Candidate>& candidates, 273 std::vector<JsepIceCandidate*>* candidates, 284 std::vector<JsepIceCandidate*>* candidates, 530 // candidates present, whole string will be discared. 646 // It is RECOMMENDED that default candidates be chosen based on the 647 // likelihood of those candidates to work with the peer that is being 668 // Get ip and port of the default destination from the |candidates| with 674 static bool GetDefaultDestination(const std::vector<Candidate>& candidates, 679 for (std::vector<Candidate>::const_iterator it = candidates.begin() 785 std::vector<Candidate> candidates; local 894 std::vector<cricket::Candidate> candidates; local 908 std::vector<JsepIceCandidate*> candidates; local [all...] |
/external/chromium/chrome/common/ |
autofill_messages.h | 68 // Notification that forms have been seen that are candidates for 73 // Notification that password forms have been seen that are candidates for
|
/external/chromium_org/chrome/browser/ui/ash/launcher/ |
launcher_favicon_loader_browsertest.cc | 50 const std::vector<content::FaviconURL>& candidates) OVERRIDE { 51 if (!candidates.empty())
|
/external/chromium_org/chromeos/dbus/ibus/ |
ibus_lookup_table.h | 109 // Returns the number of candidates in one page. 131 const std::vector<Entry>& candidates() const { return candidates_; } function in class:chromeos::IBusLookupTable
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/ |
RTCPeerConnection.h | 91 // Restarts or updates the ICE Agent process of gathering local candidates 92 // and pinging remote candidates.
|
/external/llvm/utils/release/ |
export.sh | 2 #===-- tag.sh - Tag the LLVM release candidates ----------------------------===# 11 # Create branches and release candidates for the LLVM release.
|
tag.sh | 2 #===-- tag.sh - Tag the LLVM release candidates ----------------------------===# 11 # Create branches and release candidates for the LLVM release.
|
/external/objenesis/tck/src/org/objenesis/tck/ |
CandidateLoader.java | 70 * @param tck TCK that will use the candidates 71 * @param classloader ClassLoader from which candidates classes are loaded
|
/external/chromium_org/courgette/ |
adjustment_method_2.cc | 38 (symbol) U,V,... in A2 has a set of candidates from A1, each candidate with a 175 AssignmentCandidates* candidates(); 352 AssignmentCandidates* LabelInfo::candidates() { function in class:courgette::adjustment_method_2::LabelInfo 755 AssignmentCandidates* candidates = p->second->candidates(); local 756 candidates->Print(std::numeric_limits<int>::max()); 762 AssignmentCandidates* candidates = program_info->candidates(); local 763 if (!candidates->HasPendingUpdates()) { 764 pending_update_candidates_.push_back(candidates); 771 AssignmentCandidates* candidates = pending_update_candidates_[i]; local [all...] |
/external/apache-http/src/org/apache/commons/codec/ |
Decoder.java | 48 * candidates are that the parameter passed to this
|