OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstResult
(Results
1 - 20
of
20
) sorted by null
/external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java
126
boolean
firstResult
,
130
String operator =
firstResult
? "=" : "+=";
139
genCode((MessagePatternUtil.ArgNode)contents, depth,
firstResult
);
145
firstResult
= false;
151
boolean
firstResult
) {
153
String operator =
firstResult
? "=" : "+=";
167
genCodeForPlural(arg.getComplexStyle(), depth,
firstResult
, argName);
170
genCodeForSelect(arg.getComplexStyle(), depth,
firstResult
, argName);
177
boolean
firstResult
,
189
genCodeForNumericVariants(numericVariants, depth++,
firstResult
, argName, pluralNumber)
[
all
...]
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp24/src/com/android/cts/usepermission/
UsePermissionTest24.java
42
BasePermissionActivity.Result
firstResult
= requestPermissions(firstPermissions,
55
assertPermissionRequestResult(
firstResult
, REQUEST_CODE_PERMISSIONS,
/frameworks/base/core/tests/coretests/src/android/os/
LocaleListTest.java
74
final LocaleList
firstResult
= LocaleList.getDefault();
78
assertSame(
firstResult
, LocaleList.getDefault());
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
TimeZoneFragment.java
135
final int
firstResult
= zone1.offset.compareTo(zone2.offset);
136
if (
firstResult
!= 0) {
137
return
firstResult
;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
CharsTrieTest.java
687
BytesTrie.Result
firstResult
=trie.first(c);
688
int firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
690
if(
firstResult
!=trie.reset().next(c) ||
691
firstResult
!=trie.current() ||
692
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) ||
701
firstResult
=trie.firstForCodePoint(c);
702
firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
704
if(
firstResult
!=trie.reset().nextForCodePoint(c) ||
705
firstResult
!=trie.current() ||
706
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) |
[
all
...]
BytesTrieTest.java
561
BytesTrie.Result
firstResult
=trie.first(c);
562
int firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
565
if(
firstResult
!=trie.reset().next(c) ||
566
firstResult
!=trie.current() ||
567
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) ||
/external/icu/icu4c/source/test/intltest/
ucharstrietest.cpp
826
UStringTrieResult
firstResult
=trie.first(c);
827
int32_t firstValue=USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1;
829
if(
firstResult
!=trie.reset().next(c) ||
830
firstResult
!=trie.current() ||
831
firstValue!=(USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1) ||
840
firstResult
=trie.firstForCodePoint(c);
841
firstValue=USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1;
843
if(
firstResult
!=trie.reset().nextForCodePoint(c) ||
844
firstResult
!=trie.current() ||
845
firstValue!=(USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1) |
[
all
...]
bytestrietest.cpp
662
UStringTrieResult
firstResult
=trie.first(c);
663
int32_t firstValue=USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1;
665
if(
firstResult
!=trie.reset().next(c) ||
666
firstResult
!=trie.current() ||
667
firstValue!=(USTRINGTRIE_HAS_VALUE(
firstResult
) ? trie.getValue() : -1) ||
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
CharsTrieTest.java
683
BytesTrie.Result
firstResult
=trie.first(c);
684
int firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
686
if(
firstResult
!=trie.reset().next(c) ||
687
firstResult
!=trie.current() ||
688
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) ||
697
firstResult
=trie.firstForCodePoint(c);
698
firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
700
if(
firstResult
!=trie.reset().nextForCodePoint(c) ||
701
firstResult
!=trie.current() ||
702
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) |
[
all
...]
BytesTrieTest.java
557
BytesTrie.Result
firstResult
=trie.first(c);
558
int firstValue=
firstResult
.hasValue() ? trie.getValue() : -1;
561
if(
firstResult
!=trie.reset().next(c) ||
562
firstResult
!=trie.current() ||
563
firstValue!=(
firstResult
.hasValue() ? trie.getValue() : -1) ||
/cts/hostsidetests/appsecurity/test-apps/UsePermissionApp23/src/com/android/cts/usepermission/
UsePermissionTest23.java
225
BasePermissionActivity.Result
firstResult
= requestPermissions(permissions,
237
assertPermissionRequestResult(
firstResult
, REQUEST_CODE_PERMISSIONS,
259
BasePermissionActivity.Result
firstResult
= requestPermissions(
271
assertPermissionRequestResult(
firstResult
, REQUEST_CODE_PERMISSIONS,
335
BasePermissionActivity.Result
firstResult
= requestPermissions(
347
assertPermissionRequestResult(
firstResult
, REQUEST_CODE_PERMISSIONS,
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
BrokenKeyDerivationActivity.java
150
String
firstResult
= retrieveData(password);
153
mEditor.setText("First result: " +
firstResult
+ "\nSecond result: " + secondResult);
/external/testng/src/main/java/org/testng/reporters/
EmailableReporter2.java
279
ITestResult
firstResult
= results.iterator().next();
280
String methodName = Utils.escapeHtml(
firstResult
282
long start =
firstResult
.getStartMillis();
283
long duration =
firstResult
.getEndMillis() - start;
/external/opencv3/modules/ml/test/
test_emknearestkmeans.cpp
553
Mat
firstResult
(samples.rows, 1, CV_32SC1);
555
firstResult
.at<int>(i) = static_cast<int>(em->predict2(samples.row(i), noArray())[1]);
591
errCaseCount = std::abs(em->predict2(samples.row(i), noArray())[1] -
firstResult
.at<int>(i)) < FLT_EPSILON ? 0 : 1;
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java
[
all
...]
/external/guice/extensions/persist/lib/
hibernate-search.jar
hibernate-entitymanager.jar
hibernate3.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar
/prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar
Completed in 2375 milliseconds