/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
port.cc | 153 // then the foundation will be different. Two candidate pairs with 257 Candidate c; 331 size_t Port::AddPrflxCandidate(const Candidate& local) { 769 // Since we are trying aggressive nomination, sending USE-CANDIDATE 831 const Candidate& remote_candidate) 849 const Candidate& Connection::local_candidate() const { 857 // Let G be the priority for the candidate provided by the controlling 858 // agent. Let D be the priority for the candidate provided by the [all...] |
stunport.cc | 191 // prepare STUN candidate. 195 // Processing host candidate address. 200 Connection* UDPPort::CreateConnection(const Candidate& address, 333 // Setting related address before STUN candidate is added. For STUN 346 // If socket is shared, we should process local udp candidate.
|
transport_unittest.cc | 40 using cricket::Candidate; 218 Candidate test_candidate( 222 Candidate test_candidate2( 228 Candidate test_candidate3( 234 cricket::Candidate parsed_candidate;
|
p2ptransportchannel_unittest.cc | 251 CandidateData(cricket::TransportChannel* ch, const cricket::Candidate& c) 252 : channel(ch), candidate(c) { 255 cricket::Candidate candidate; member in struct:P2PTransportChannelTestBase::CandidateData 456 // only for the RFC 5245 as controlled agent will use USE-CANDIDATE 473 // candidate. This is done to handle remote type discrepancy from 536 const cricket::Candidate* old_local_candidate1 = LocalCandidate(ep1_ch1()); 537 const cricket::Candidate* old_local_candidate2 = LocalCandidate(ep2_ch1()); 538 const cricket::Candidate* old_remote_candidate1 = 540 const cricket::Candidate* old_remote_candidate2 [all...] |
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
p5-0x.cpp | 20 operator T(); // expected-note 2{{candidate function}} 115 operator B(); // expected-note{{candidate function}} 116 operator int&(); // expected-note{{candidate function}} 135 void int_rvalue_ref(int&&); // expected-note{{candidate function not viable: no known conversion from 'ConvertsTo<int &>' to 'int &&' for 1st argument}} \ 136 // expected-note{{candidate function not viable: no known conversion from 'ConvertsTo<float &>' to 'int &&' for 1st argument}}
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-constructor.cpp | 58 D(std::initializer_list<int>) { static_assert(N == 0, ""); } // expected-note 1 {{candidate}} 59 D(std::initializer_list<double>) { static_assert(N == 1, ""); } // expected-note 1 {{candidate}} 124 struct B { // expected-note 2 {{candidate constructor}} 125 B(C, int, C); // expected-note {{candidate constructor not viable: cannot convert initializer list argument to 'objects::C'}} 266 struct B { explicit B(short); B(long); }; // expected-note 2 {{candidate}}
|
/external/llvm/lib/Transforms/Scalar/ |
Sink.cpp | 183 assert(SuccToSinkTo && "Candidate sink target is null"); 213 // dominated by the candidate 243 BasicBlock *Candidate = (*I)->getBlock(); 245 IsAcceptableTarget(Inst, Candidate)) 246 SuccToSinkTo = Candidate;
|
/external/chromium_org/remoting/protocol/ |
jingle_session.cc | 21 #include "third_party/libjingle/source/talk/p2p/base/candidate.h" 30 // Delay after candidate creation before sending transport-info 235 channel->AddRemoteCandidate(it->candidate); 282 const cricket::Candidate& candidate) { 284 transport->name(), candidate)); 509 channel->second->AddRemoteCandidate(it->candidate);
|
/frameworks/base/core/java/android/app/ |
ApplicationErrorReport.java | 171 String candidate = pm.getInstallerPackageName(packageName); local 172 ComponentName result = getErrorReportReceiver(pm, packageName, candidate); 180 candidate = SystemProperties.get(SYSTEM_APPS_ERROR_RECEIVER_PROPERTY); 181 result = getErrorReportReceiver(pm, packageName, candidate); 188 candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY); 189 return getErrorReportReceiver(pm, packageName, candidate); 197 * @param receiverPackage candidate package to receive the error
|
/frameworks/base/docs/html/training/displaying-bitmaps/ |
manage-memory.jd | 271 <p>Finally, this method determines whether a candidate bitmap 276 Bitmap candidate, BitmapFactory.Options targetOptions) { 280 // the new bitmap is smaller than the reusable bitmap candidate 284 int byteCount = width * height * getBytesPerPixel(candidate.getConfig()); 285 return byteCount <= candidate.getAllocationByteCount(); 289 return candidate.getWidth() == targetOptions.outWidth 290 && candidate.getHeight() == targetOptions.outHeight
|
/packages/apps/Camera/src/com/android/camera/ |
CameraSettings.java | 113 for (String candidate : context.getResources().getStringArray( 115 if (setCameraPictureSize(candidate, supported, parameters)) { 118 editor.putString(KEY_PICTURE_SIZE, candidate); 132 String candidate, List<Size> supported, Parameters parameters) { 133 int index = candidate.indexOf('x'); 135 int width = Integer.parseInt(candidate.substring(0, index)); 136 int height = Integer.parseInt(candidate.substring(index + 1));
|
/packages/apps/Camera2/src/com/android/camera/ |
CameraSettings.java | 117 for (String candidate : context.getResources().getStringArray( 119 if (setCameraPictureSize(candidate, supported, parameters)) { 122 editor.putString(KEY_PICTURE_SIZE, candidate); 136 String candidate, List<Size> supported, Parameters parameters) { 137 int index = candidate.indexOf('x'); 139 int width = Integer.parseInt(candidate.substring(0, index)); 140 int height = Integer.parseInt(candidate.substring(index + 1));
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraSettings.java | 102 for (String candidate : context.getResources().getStringArray( 104 if (setCameraPictureSize(candidate, supported, parameters)) { 107 editor.putString(KEY_PICTURE_SIZE, candidate); 121 String candidate, List<Size> supported, Parameters parameters) { 122 int index = candidate.indexOf('x'); 124 int width = Integer.parseInt(candidate.substring(0, index)); 125 int height = Integer.parseInt(candidate.substring(index + 1));
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
OnePaneController.java | 93 * Returns true if the candidate URI is the URI for the default inbox for the given account. 94 * @param candidate the URI to check 95 * @param account the account whose default Inbox the candidate might be 96 * @return true if the candidate is indeed the default inbox for the given account. 98 private static boolean isDefaultInbox(FolderUri candidate, Account account) { 99 return (candidate != null && account != null) 100 && candidate.equals(account.settings.defaultInbox);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
basicportallocator.cc | 132 // its candidate discovery conclusion signal. Without this signal, 524 // Send candidate allocation complete signal if we have no sequences. 529 Port* port, const Candidate& c) { 533 // Discarding any candidate signal if port allocation status is 539 std::vector<Candidate> candidates; 550 // Moving to READY state as we have atleast one candidate from the port. 551 // Since this port has atleast one candidate we should forward this port 570 // Send candidate allocation complete signal if this was the last port. 585 // Send candidate allocation complete signal if this was the last port. 591 std::vector<Candidate> candidates [all...] |
/external/chromium_org/v8/src/ |
mark-compact.cc | 735 class Candidate { 737 Candidate() : fragmentation_(0), page_(NULL) { } 738 Candidate(int f, Page* p) : fragmentation_(f), page_(p) { } 778 "evacuation candidate limit: %d\n", 787 Candidate candidates[kMaxMaxEvacuationCandidates]; 794 Candidate* least = NULL; 846 candidates[count++] = Candidate(fragmentation, p); 857 *least = Candidate(fragmentation, p); 992 JSFunction* candidate = jsfunction_candidates_head_; local 994 while (candidate != NULL) 1036 SharedFunctionInfo* candidate = shared_function_info_candidates_head_; local 1139 SharedFunctionInfo* candidate = shared_function_info_candidates_head_; local 1176 JSFunction* candidate = jsfunction_candidates_head_; local 1236 JSFunction* candidate = jsfunction_candidates_head_; local 1248 SharedFunctionInfo* candidate = shared_function_info_candidates_head_; local 1275 JSFunction* candidate = jsfunction_candidates_head_; local [all...] |
/external/chromium_org/base/process/ |
process_metrics_linux.cc | 733 bool IsValidDiskName(const std::string& candidate) { 734 if (candidate.length() < 3) 736 if (candidate.substr(0,2) == "sd" || candidate.substr(0,2) == "hd") { 738 for (size_t i = 2; i < candidate.length(); i++) { 739 if (!islower(candidate[i])) 743 if (candidate.length() < 7) { 746 if (candidate.substr(0,6) == "mmcblk") { 748 for (size_t i = 6; i < candidate.length(); i++) { 749 if (!isdigit(candidate[i]) [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
password_form_manager.cc | 504 // Check to see if this form is a candidate for password generation. 595 int PasswordFormManager::ScoreResult(const PasswordForm& candidate) const { 597 // For scoring of candidate login data: 610 if (candidate.origin == observed_form_.origin) { 620 base::SplitString(candidate.origin.path(), '/', &candidate_path_tokens); 633 if (!candidate.IsPublicSuffixMatch()) 635 if (candidate.action == observed_form_.action) 637 if (candidate.password_element == observed_form_.password_element) 639 if (candidate.submit_element == observed_form_.submit_element) 641 if (candidate.username_element == observed_form_.username_element [all...] |
/external/chromium_org/third_party/icu/source/common/ |
dictbe.cpp | 112 // list of word candidate lengths, in increasing length order 117 int mark; // The preferred candidate's offset 118 int current; // The candidate we're currently looking at 127 // Select the currently marked candidate, point after it in the text, and invalidate self 130 // Back up from the current candidate to the next shorter one; return TRUE if that exists 134 // Return the longest prefix this candidate location shares with a dictionary word 137 // Mark the current candidate as the one we like 267 // Look for candidate words at the current position 286 // Followed by another dictionary word; mark first word as a good candidate 655 // characters is considered a candidate word with a default cos [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/ |
sunspider-compare-results.js | 273 var candidate = categoryMeans[category].toFixed(1).toString().length; 274 if (candidate > width) 275 width = candidate; 277 var candidate = testMeansByCategory[category][test].toFixed(1).toString().length; 278 if (candidate > width) 279 width = candidate;
|
/external/chromium_org/v8/src/ia32/ |
code-stubs-ia32.h | 484 Register candidate = Register::FromAllocationIndex(i); local 485 if (candidate.is(ecx)) continue; 486 if (candidate.is(r1)) continue; 487 if (candidate.is(r2)) continue; 488 if (candidate.is(r3)) continue; 489 return candidate;
|
/external/chromium_org/v8/src/x64/ |
code-stubs-x64.h | 454 Register candidate = Register::FromAllocationIndex(i); local 455 if (candidate.is(rcx)) continue; 456 if (candidate.is(r1)) continue; 457 if (candidate.is(r2)) continue; 458 if (candidate.is(r3)) continue; 459 return candidate;
|
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/ |
ImageResizer.java | 111 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap 142 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap 173 * @param cache The ImageCache used to find candidate bitmaps for use with inBitmap
|
/external/chromium/chrome/browser/ |
memory_details_linux.cc | 90 bool candidate = true; local 95 candidate = false; 100 if (!candidate)
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
xmlnsstack.cc | 171 std::string candidate(AsciiLower(ns.substr(first, last - first))); 172 if (candidate.find("xml") != 0) 173 return candidate;
|