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

1 23 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java 98 public static boolean extendsFrom(@Nonnull TypeProto candidate, @Nonnull String possibleSuper) {
99 if (candidate.getType().equals(possibleSuper)) {
102 for (TypeProto superProto: getSuperclassChain(candidate)) {
  /external/webrtc/talk/app/webrtc/
jsep.h 41 class Candidate;
54 // Class representation of an ICE candidate.
61 // identification" as defined in [RFC 3388] for m-line this candidate is
65 // candidate is assocated with.
67 virtual const cricket::Candidate& candidate() const = 0;
68 // Creates a SDP-ized form of this candidate.
87 // Returns true if an equivalent |candidate| exist in the collection.
88 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0;
110 // Adds the specified candidate to the description
    [all...]
jsepsessiondescription.h 76 virtual bool AddCandidate(const IceCandidateInterface* candidate);
98 bool GetMediasectionIndex(const IceCandidateInterface* candidate,
  /external/bison/lib/
hash.c 440 /* Return true if CANDIDATE is a prime number. CANDIDATE should be an odd
444 is_prime (size_t candidate)
449 while (square < candidate && (candidate % divisor))
456 return (candidate % divisor ? true : false);
459 /* Round a given CANDIDATE number up to the nearest prime, and return that
463 next_prime (size_t candidate)
466 if (candidate < 10)
467 candidate = 10
1073 float candidate = local
1175 size_t candidate = local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsList.java 409 wnnWordSearch.candidate = focusString.toString();
412 wnnWordSearch.candidate = focusPairString.toString();
579 int len = getword.candidate.length();
583 if (searchword.candidate.equals(getword.candidate)) {
586 delword.candidate = searchword.candidate;
697 UserDictionaryToolsListFocus candidate = new UserDictionaryToolsListFocus(this); local
698 candidate.setId(i+MAX_WORD_COUNT);
699 candidate.setWidth(system_width/2)
    [all...]
UserDictionaryToolsEdit.java 77 /** The constant for notifying dialog (The length of specified stroke or candidate exceeds the limit) */
150 mBeforeEditWnnWord.candidate = ((TextView)sFocusingPairView).getText().toString();
197 /* Text changed listener for the candidate text */
250 String candidate = mCandidateEditText.getText().toString(); local
251 if (addDictionary(stroke, candidate)) {
262 String candidate = mCandidateEditText.getText().toString(); local
263 if (addDictionary(stroke, candidate)) {
266 addDictionary(mBeforeEditWnnWord.stroke, mBeforeEditWnnWord.candidate);
334 * @param candidate The string of the word
337 private boolean addDictionary(String stroke, String candidate) {
    [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;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
MoveAppStepFragment.java 111 for (final VolumeInfo candidate : mCandidateVolumes) {
112 if (!candidate.isMountedWritable()) {
115 final File path = candidate.getPath();
118 .title(mStorageManager.getBestVolumeDescription(candidate))
121 .checked(TextUtils.equals(mCurrentVolume.getId(), candidate.getId()))
123 .id(mCandidateVolumes.indexOf(candidate))
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationPositionTracker.java 90 final Conversation candidate = conversationAtPosition(pos); local
91 if (!Conversation.contains(victims, candidate)) {
92 return candidate;
112 final Conversation candidate = conversationAtPosition(pos); local
113 if (!Conversation.contains(victims, candidate)) {
114 return candidate;
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TCK.java 29 * This TCK accepts a set of candidate classes (class it attempts to instantiate) and a set of
30 * Objenesis implementations. It then tries instantiating every candidate with every Objenesis
37 * // register candidate classes.
61 * Register a candidate class to attempt to instantiate.
107 private void runTest(Reporter reporter, Class<?> candidate, Objenesis objenesis) {
109 Object instance = objenesis.newInstance(candidate);
110 boolean success = instance != null && instance.getClass() == candidate;
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/
codegen.h 149 bool IsYoung(byte* candidate) const {
150 return memcmp(candidate,
159 bool IsOld(byte* candidate) const;
version.h 47 bool candidate, const char* soname);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImagePoint.java 72 for (FilterPoint candidate : mRedEyeRep.getCandidates()) {
73 drawPoint(candidate, canvas, originalToScreen, originalRotateToScreen, paint);
79 FilterPoint candidate, Canvas canvas, Matrix originalToScreen,
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeDelaySlotFiller.cpp 67 static bool hasImmInstruction(MachineBasicBlock::iterator &candidate) {
70 unsigned numOper = candidate->getNumOperands();
72 MachineOperand &mop = candidate->getOperand(op);
107 static bool delayHasHazard(MachineBasicBlock::iterator &candidate,
110 MachineBasicBlock::iterator a = candidate;
112 MCInstrDesc desc = candidate->getDesc();
115 // candidate := a0 = operation(a1, a2)
129 // candidate instruction.
182 MachineBasicBlock::iterator candidate) {
183 if (candidate == MBB.begin()
    [all...]
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnectionObserver.h 68 // New Ice candidate have been found.
69 void OnIceCandidate(const IceCandidateInterface* candidate) override;
  /external/webrtc/webrtc/api/objctests/
RTCIceCandidateTest.mm 27 NSString *sdp = @"candidate:4025901590 1 udp 2122265343 "
31 RTCIceCandidate *candidate = [[RTCIceCandidate alloc] initWithSdp:sdp
36 candidate.nativeCandidate;
46 std::string sdp("candidate:4025901590 1 udp 2122265343 "
  /prebuilts/checkstyle/gitlint/
utils.py 53 candidate = os.path.join(location, program)
54 if os.path.isfile(candidate) and os.access(candidate, os.X_OK):
55 candidates.append(candidate)
  /hardware/qcom/audio/hal/audio_extn/
usb.c 558 unsigned int candidate = 0; local
563 "%s: USB bw(%d), stream bw(%d), candidate(%d)",
565 stream_bit_width, candidate);
571 } else if (candidate == 0) {
572 candidate = dev_info->bit_width;
579 ABS_SUB(stream_bit_width, candidate)) {
580 candidate = dev_info->bit_width;
583 ABS_SUB(stream_bit_width, candidate)) &&
584 (dev_info->bit_width > candidate)) {
585 candidate = dev_info->bit_width
603 unsigned int candidate = 0; local
694 unsigned int candidate = 48000; local
    [all...]
  /external/clang/test/SemaCXX/
using-directive.cpp 4 short i; // expected-note 2{{candidate found by name lookup is 'A::i'}}
6 long i; // expected-note{{candidate found by name lookup is 'A::B::i'}}
7 void f() {} // expected-note{{candidate function}}
10 expected-note{{candidate found by name lookup is 'A::B::E'}}
13 namespace E {} // expected-note{{candidate found by name lookup is 'A::E'}}
18 expected-note{{candidate found by name lookup is 'A::C::E'}}
21 void f() {} // expected-note{{candidate function}}
48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}}
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}}
61 class X { // expected-note{{candidate found by name lookup is 'X'}
    [all...]
  /external/deqp/framework/egl/
egluConfigFilter.hpp 88 typedef bool (*ConfigFilter) (const CandidateConfig& candidate);
101 bool match (const CandidateConfig& candidate) const;
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsDelaySlotFiller.cpp 64 MachineBasicBlock::iterator candidate);
77 bool delayHasHazard(MachineBasicBlock::iterator candidate,
169 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate,
174 if (candidate->isImplicitDef() || candidate->isKill())
177 MCInstrDesc MCID = candidate->getDesc();
197 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) {
198 const MachineOperand &MO = candidate->getOperand(i);
  /external/webrtc/talk/app/webrtc/objc/public/
RTCPeerConnectionDelegate.h 64 // New Ice candidate have been found.
66 gotICECandidate:(RTCICECandidate *)candidate;
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
AppRTCClient.java 57 * Send Ice candidate to the other participant.
59 public void sendLocalIceCandidate(final IceCandidate candidate);
111 * Callback fired once remote Ice candidate is received.
113 public void onRemoteIceCandidate(final IceCandidate candidate);
  /external/webrtc/webrtc/tools/loopback_test/
loopback_test.js 41 pc.addIceCandidate = function (candidate, successCallback,
43 if (forceTurn && candidate.candidate.indexOf("typ relay ") == -1) {
44 trace("Dropping non-turn candidate: " + candidate.candidate);
48 origAddIceCandidate.call(this, candidate, successCallback,
158 if (e.candidate) {
159 this.addIceCandidate(new RTCIceCandidate(e.candidate),
167 trace("Failed to add Ice Candidate: " + error.toString())
    [all...]

Completed in 2167 milliseconds

1 23 4 5 6 7 8 91011>>