HomeSort by relevance Sort by last modified time
    Searched refs:ic (Results 1 - 25 of 487) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p7.cpp 13 void test_capture_constness(int i, const int ic) {
14 (void)[i,ic] ()->void {
16 float &fr2 = check_const_int(ic);
21 float &fr2 = check_const_int(ic);
24 (void)[i,ic] () mutable ->void {
26 float &fr = check_const_int(ic);
31 float &fr = check_const_int(ic);
34 (void)[&i,&ic] ()->void {
36 float &fr = check_const_int(ic);
41 float &fr = check_const_int(ic);
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 27 int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3}; local
32 return (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia))) == FI(ic+1))
33 && (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib))) == FI(std::end(ic)))
34 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia))) == BI(ic+1)
53 int ic[] = {7}; local
    [all...]
find_first_of_pred.pass.cpp 29 int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3}; local
34 return (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia)), eq) == FI(ic+1))
35 && (std::find_first_of(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib)), eq) == FI(std::end(ic)))
36 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia)), eq) == BI(ic+1)
56 int ic[] = {7}; local
    [all...]
  /external/clang/test/CodeGen/
2002-02-13-UnnamedLocal.c 14 int foo(foostruct ic);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
find_first_of.pass.cpp 33 int ic[] = {7}; local
36 forward_iterator<const int*>(ic),
37 forward_iterator<const int*>(ic + 1)) ==
41 forward_iterator<const int*>(ic),
42 forward_iterator<const int*>(ic)) ==
46 forward_iterator<const int*>(ic),
47 forward_iterator<const int*>(ic+1)) ==
find_first_of_pred.pass.cpp 36 int ic[] = {7}; local
39 forward_iterator<const int*>(ic),
40 forward_iterator<const int*>(ic + 1),
45 forward_iterator<const int*>(ic),
46 forward_iterator<const int*>(ic),
51 forward_iterator<const int*>(ic),
52 forward_iterator<const int*>(ic+1),
  /external/ltp/tools/pounder21/test_scripts/
mem_alloc 25 OLD_ERRORS=`egrep -ic "(USER|LINUX) ERROR:" $LOGFILE`
36 NEW_ERRORS=`egrep -ic "(USER|LINUX) ERROR:" $LOGFILE`
memtest 35 OLD_ERRORS=`egrep -ic "(err|fail|invalid|cannot|denied|diff)" $LOGFILE`
47 NEW_ERRORS=`egrep -ic "(err|fail|invalid|denied|cannot|diff)" $LOGFILE`
  /frameworks/base/libs/usb/tests/accessorytest/
accessory.h 20 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od);
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 39 int ic[] = {0, 1, 2}; local
40 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
41 std::reverse(Iter(ic), Iter(ic+sc));
42 assert(ic[0] == 2);
43 assert(ic[1] == 1);
44 assert(ic[2] == 0);
  /packages/services/Car/car-support-lib/src/android/support/car/navigation/
CarNavigationStatusManagerEmbedded.java 97 android.car.navigation.CarNavigationInstrumentCluster ic) {
98 if (ic == null) {
101 return new CarNavigationInstrumentCluster(ic.getMinIntervalMillis(), ic.getType(),
102 ic.getImageWidth(), ic.getImageHeight(), ic.getImageColorDepthBits(),
103 ic.getExtra());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.modifying.operations/alg.reverse/
reverse.pass.cpp 39 int ic[] = {0, 1, 2}; local
40 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
41 std::reverse(Iter(ic), Iter(ic+sc));
42 assert(ic[0] == 2);
43 assert(ic[1] == 1);
44 assert(ic[2] == 0);
  /test/vts/drivers/shell/
ShellDriverMain.cpp 60 int ic = getopt_long(argc, argv, "", longOptions, &optionIndex); local
61 if (ic == -1) {
65 switch (ic) {
73 if (ic != '?') {
74 fprintf(stderr, "getopt_long returned unexpected value 0x%x\n", ic);
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/
find_end.pass.cpp 27 int ic[] = {0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 0, 1, 2, 3, 0, 1, 2, 0, 1, 0}; local
32 return (std::find_end(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ia)), FI(std::end(ia))) == FI(ic+15))
33 && (std::find_end(FI(std::begin(ic)), FI(std::end(ic)), FI(std::begin(ib)), FI(std::end(ib))) == FI(std::end(ic)))
34 && (std::find_end(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia))) == BI(ic+15)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 240 InputConnection ic = getInputConnection(); local
241 if (ic == null || !isActive()) {
246 callback.setTextAfterCursor(ic.getTextAfterCursor(
260 InputConnection ic = getInputConnection(); local
261 if (ic == null || !isActive()) {
266 callback.setTextBeforeCursor(ic.getTextBeforeCursor(
280 InputConnection ic = getInputConnection(); local
281 if (ic == null || !isActive()) {
286 callback.setSelectedText(ic.getSelectedText(
300 InputConnection ic = getInputConnection() local
320 InputConnection ic = getInputConnection(); local
336 InputConnection ic = getInputConnection(); local
346 InputConnection ic = getInputConnection(); local
355 InputConnection ic = getInputConnection(); local
364 InputConnection ic = getInputConnection(); local
373 InputConnection ic = getInputConnection(); local
382 InputConnection ic = getInputConnection(); local
391 InputConnection ic = getInputConnection(); local
401 InputConnection ic = getInputConnection(); local
418 InputConnection ic = getInputConnection(); local
431 InputConnection ic = getInputConnection(); local
441 InputConnection ic = getInputConnection(); local
450 InputConnection ic = getInputConnection(); local
459 InputConnection ic = getInputConnection(); local
468 InputConnection ic = getInputConnection(); local
477 InputConnection ic = getInputConnection(); local
490 InputConnection ic = getInputConnection(); local
506 InputConnection ic = getInputConnection(); local
530 InputConnection ic = getInputConnection(); local
557 InputConnection ic = getInputConnection(); local
    [all...]
  /art/test/536-checker-needs-access-check/src/
Main.java 50 return ic instanceof InaccessibleClass;
78 return ic instanceof InaccessibleClass;
81 public static InaccessibleClass ic; field in class:Main
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
AppCompatHintHelper.java 26 static InputConnection onCreateInputConnection(InputConnection ic, EditorInfo outAttrs,
28 if (ic != null && outAttrs.hintText == null) {
40 return ic;
  /external/valgrind/none/tests/s390x/
insert.stdout.exp 0 ic 0000000000000000 <- 0000000000000000 = 0000000000000000
2 ic 0000000000000001 <- 0000000000000000 = 0000000000000000
3 ic 000000000000FFFF <- 0000000000000000 = 000000000000FF00
4 ic 0000000000007FFF <- 0000000000000000 = 0000000000007F00
5 ic 0000000000008000 <- 0000000000000000 = 0000000000008000
6 ic 00000000FFFFFFFF <- 0000000000000000 = 00000000FFFFFF00
7 ic 0000000080000000 <- 0000000000000000 = 0000000080000000
8 ic 000000007FFFFFFF <- 0000000000000000 = 000000007FFFFF00
9 ic AAAAAAAAAAAAAAAA <- 0000000000000000 = AAAAAAAAAAAAAA00
10 ic 8000000000000000 <- 0000000000000000 = 800000000000000
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/
mismatch.pass.cpp 31 int ic[] = {1, 3, 5, 7}; local
35 auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic));
36 if (p1.first != ia+2 || p1.second != ic+2)
39 auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic));
40 if (p2.first != ia+2 || p2.second != ic+2)
43 auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic));
44 if (p3.first != ib+2 || p3.second != ic+2)
47 auto p4 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic));
    [all...]
  /external/skia/experimental/sksg/
SkSGEffectNode.cpp 25 SkRect EffectNode::onRevalidate(InvalidationController* ic, const SkMatrix& ctm) {
28 return fChild->revalidate(ic, ctm);
  /external/skqp/experimental/sksg/
SkSGEffectNode.cpp 25 SkRect EffectNode::onRevalidate(InvalidationController* ic, const SkMatrix& ctm) {
28 return fChild->revalidate(ic, ctm);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/mmc/
ioctl.h 43 #define mmc_ioc_cmd_set_data(ic, ptr) ic.data_ptr = (__u64)(unsigned long) ptr
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
RichInputConnectionAndTextRangeTests.java 239 final RichInputConnection ic = new RichInputConnection(mockInputMethodService); local
245 ic.beginBatchEdit();
247 r = ic.getWordRangeAtCursor(SPACE, ScriptUtils.SCRIPT_LATIN);
252 ic.beginBatchEdit();
253 r = ic.getWordRangeAtCursor(TAB, ScriptUtils.SCRIPT_LATIN);
254 ic.endBatchEdit();
260 ic.beginBatchEdit();
261 r = ic.getWordRangeAtCursor(SUPPLEMENTARY_CHAR, ScriptUtils.SCRIPT_LATIN);
262 ic.endBatchEdit();
268 ic.beginBatchEdit()
296 final RichInputConnection ic = new RichInputConnection(mockInputMethodService); local
377 final RichInputConnection ic = new RichInputConnection(ims); local
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/
equal.pass.cpp 32 int ic[] = {1, 3, 5, 7}; local
36 return !std::equal(std::begin(ia), std::end(ia), std::begin(ic))
37 && !std::equal(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic))
38 && std::equal(std::begin(ib), std::end(ib), std::begin(ic))
39 && !std::equal(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic))
41 && std::equal(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)))
42 && !std::equal(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)))
    [all...]
  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 71 int ic[] = {0, 0, 0}; local
72 const unsigned sc = sizeof(ic)/sizeof(ic[0]);
73 assert(std::search_n(Iter(ic), Iter(ic+sc), 0, 0) == Iter(ic));
74 assert(std::search_n(Iter(ic), Iter(ic+sc), 1, 0) == Iter(ic));
75 assert(std::search_n(Iter(ic), Iter(ic+sc), 2, 0) == Iter(ic))
    [all...]

Completed in 584 milliseconds

1 2 3 4 5 6 7 8 91011>>