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

1 2 3 4 5 6 7 8 9

  /external/bison/doc/
common.x 2 .BR lex (1),
3 .BR flex (1),
4 .BR yacc (1).
  /external/libcxx/test/std/re/re.regex/re.regex.const/
constants.pass.cpp 38 typedef std::basic_regex<CharT> BR;
39 static_assert((BR::icase == std::regex_constants::icase), "");
40 static_assert((BR::nosubs == std::regex_constants::nosubs), "");
41 static_assert((BR::optimize == std::regex_constants::optimize), "");
42 static_assert((BR::collate == std::regex_constants::collate), "");
43 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), "");
44 static_assert((BR::basic == std::regex_constants::basic), "");
45 static_assert((BR::extended == std::regex_constants::extended), "");
46 static_assert((BR::awk == std::regex_constants::awk), "");
47 static_assert((BR::grep == std::regex_constants::grep), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 38 typedef std::basic_regex<CharT> BR;
39 static_assert((BR::icase == std::regex_constants::icase), "");
40 static_assert((BR::nosubs == std::regex_constants::nosubs), "");
41 static_assert((BR::optimize == std::regex_constants::optimize), "");
42 static_assert((BR::collate == std::regex_constants::collate), "");
43 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), "");
44 static_assert((BR::basic == std::regex_constants::basic), "");
45 static_assert((BR::extended == std::regex_constants::extended), "");
46 static_assert((BR::awk == std::regex_constants::awk), "");
47 static_assert((BR::grep == std::regex_constants::grep), "")
    [all...]
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
EventIdsTest.java 28 import android.databinding.multimoduletestapp.BR;
35 ec.assertProperty(BR.libField1, 0);
36 ec.assertProperty(BR.libField2, 0);
37 ec.assertProperty(BR.sharedField, 0);
40 ec.assertProperty(BR.libField1, 1);
41 ec.assertProperty(BR.libField2, 0);
42 ec.assertProperty(BR.sharedField, 0);
45 ec.assertProperty(BR.libField1, 1);
46 ec.assertProperty(BR.libField2, 1);
47 ec.assertProperty(BR.sharedField, 0)
    [all...]
  /prebuilts/go/darwin-x86/src/math/
stubs_ppc64x.s 10 BR ·asin(SB)
13 BR ·acos(SB)
16 BR ·atan2(SB)
19 BR ·atan(SB)
22 BR ·dim(SB)
25 BR ·min(SB)
28 BR ·max(SB)
31 BR ·exp2(SB)
34 BR ·expm1(SB)
37 BR ·exp(SB
    [all...]
  /prebuilts/go/linux-x86/src/math/
stubs_ppc64x.s 10 BR ·asin(SB)
13 BR ·acos(SB)
16 BR ·atan2(SB)
19 BR ·atan(SB)
22 BR ·dim(SB)
25 BR ·min(SB)
28 BR ·max(SB)
31 BR ·exp2(SB)
34 BR ·expm1(SB)
37 BR ·exp(SB
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
arith_ppc64x.s 13 BR ·mulWW_g(SB)
16 BR ·divWW_g(SB)
19 BR ·addVV_g(SB)
22 BR ·subVV_g(SB)
25 BR ·addVW_g(SB)
28 BR ·subVW_g(SB)
31 BR ·shlVU_g(SB)
34 BR ·shrVU_g(SB)
37 BR ·mulAddVWW_g(SB)
40 BR ·addMulVVW_g(SB
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
arith_ppc64x.s 13 BR ·mulWW_g(SB)
16 BR ·divWW_g(SB)
19 BR ·addVV_g(SB)
22 BR ·subVV_g(SB)
25 BR ·addVW_g(SB)
28 BR ·subVW_g(SB)
31 BR ·shlVU_g(SB)
34 BR ·shrVU_g(SB)
37 BR ·mulAddVWW_g(SB)
40 BR ·addMulVVW_g(SB
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-opc-b.c 80 #define BR(a,b) \
82 {"br.few", BR (0, 0)},
83 {"br", BR (0, 0)},
84 {"br.few.clr", BR (0, 1)},
85 {"br.clr", BR (0, 1)},
86 {"br.many", BR (1, 0)}
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DataBindingMapperTest.java 18 import android.databinding.testapp.BR;
25 for (Field field : BR.class.getDeclaredFields()) {
27 DataBindingUtil.convertBrIdToString((int) field.get(BR.class)));
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/main/java/android/databinding/multimoduletestapp/
ObservableInMainApp.java 22 import android.databinding.multimoduletestapp.BR;
38 notifyPropertyChanged(BR.appField1);
47 notifyPropertyChanged(BR.appField2);
56 notifyPropertyChanged(BR.sharedField);
ObservableExtendingLib.java 22 import android.databinding.multimoduletestapp.BR;
34 notifyPropertyChanged(BR.childClassField);
  /frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/src/main/java/android/databinding/testlibrary/
ObservableInLibrary.java 21 import android.databinding.testlibrary.BR;
42 notifyPropertyChanged(BR.libField1);
51 notifyPropertyChanged(BR.libField2);
60 notifyPropertyChanged(BR.sharedField);
  /frameworks/data-binding/integration-tests/IndependentLibrary/app/src/main/java/android/databinding/test/independentlibrary/vo/
MyBindableObject.java 20 import android.databinding.test.independentlibrary.BR;
34 notifyPropertyChanged(BR.field);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ppc/
xcoff-branch-1-32.d 17 10: R_(RBR_26|BR) .*
22 18: R_(RBR_26|BR) .*
25 20: R_(RBR_26|BR) .*
29 24: R_(RBR_26|BR) .*
30 28: 4e 80 00 20 br
34 2c: R_(RBR_26|BR) .*
36 30: R_(RBR_26|BR) .*
38 34: R_(RBR_26|BR) .*
40 38: R_(RBR_26|BR) .*
42 3c: R_(RBR_26|BR) .
    [all...]
xcoff-branch-1-64.d 17 10: R_(RBR_26|BR) .*
22 18: R_(RBR_26|BR) .*
25 20: R_(RBR_26|BR) .*
29 24: R_(RBR_26|BR) .*
34 2c: R_(RBR_26|BR) .*
36 30: R_(RBR_26|BR) .*
38 34: R_(RBR_26|BR) .*
40 38: R_(RBR_26|BR) .*
42 3c: R_(RBR_26|BR) .*
45 44: R_(RBR_26|BR) .
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
BasicObject.java 20 import android.databinding.testapp.BR;
34 notifyPropertyChanged(BR.field1);
43 notifyPropertyChanged(BR.field1);
User.java 5 import android.databinding.testapp.BR;
21 notifyPropertyChanged(BR.friend);
30 notifyPropertyChanged(BR.name);
39 notifyPropertyChanged(BR.fullName);
ConditionalVo.java 20 import android.databinding.testapp.BR;
35 notifyPropertyChanged(BR.useHello);
  /prebuilts/go/darwin-x86/src/runtime/
rt0_linux_ppc64le.s 4 BR _main<>(SB)
29 BR main(SB)
34 BR (CTR)
rt0_linux_ppc64.s 18 BR main(SB)
23 BR (CTR)
  /prebuilts/go/linux-x86/src/runtime/
rt0_linux_ppc64le.s 4 BR _main<>(SB)
29 BR main(SB)
34 BR (CTR)
rt0_linux_ppc64.s 18 BR main(SB)
23 BR (CTR)
  /prebuilts/go/darwin-x86/src/os/signal/
sig.s 15 #define JMP BR
18 #define JMP BR
  /prebuilts/go/linux-x86/src/os/signal/
sig.s 15 #define JMP BR
18 #define JMP BR

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 9