Searched refs:eq (Results 76 - 100 of 578) sorted by relevance

1234567891011>>

/external/libedit/
H A Dmissing27 if test $# -eq 0; then
84 test $st -eq 0 && exit 0
94 if test $st -eq 63; then
96 elif test $st -eq 127; then
/external/libpng/
H A Dmissing27 if test $# -eq 0; then
84 test $st -eq 0 && exit 0
94 if test $st -eq 63; then
96 elif test $st -eq 127; then
/external/linux-tools-perf/perf-3.12.0/arch/hexagon/lib/
H A Dmemset.S42 p0 = cmp.eq(r2, #0)
72 p1 = cmp.eq(r2, #1)
85 p1 = cmp.eq(r2, #2)
98 p1 = cmp.eq(r2, #4)
111 p1 = cmp.eq(r3, #1)
127 p1 = cmp.eq(r2, #8)
138 p1 = cmp.eq(r2, #4)
149 p1 = cmp.eq(r2, #2)
193 p1 = cmp.eq(r2, #1)
209 p0 = cmp.eq(r
[all...]
/external/llvm/autoconf/
H A DAutoRegen.sh32 test $? -eq 0 || die "Your autoconf was not detected as being $want_autoconf_version_clean"
34 test $? -eq 0 || die "Your aclocal was not detected as being $want_aclocal_version_clean"
36 test $? -eq 0 || die "Your autoheader was not detected as being $want_autoheader_version_clean"
/external/pcre/dist/
H A Dmissing27 if test $# -eq 0; then
84 test $st -eq 0 && exit 0
94 if test $st -eq 63; then
96 elif test $st -eq 127; then
H A DRunTest92 if [ $# -eq 1 -a "$1" = "list" ]; then
144 if [ $# -eq 1 -a "$1" = "ebcdic" ]; then
324 if [ $support8 -eq 0 ] ; then
331 if [ $support16 -eq 0 ] ; then
338 if [ $support32 -eq 0 ] ; then
472 if [ $? -eq 0 ] ; then
484 if [ $? -eq 0 ] ; then
492 if [ $? -eq 0 ] ; then
539 if [ $utf -eq 0 ] ; then
559 if [ $utf -eq
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsvn-create-patch190 if ($fileStat eq "A" || $fileStat eq "R") {
192 return $additionWithHistory eq "+" ? "additionWithHistory" : "addition";
194 return "modification" if ($fileStat eq "M" || $propertyStat eq "M");
195 return "deletion" if ($fileStat eq "D");
223 if ($ignoreChangelogs && basename($file) eq "ChangeLog") {
228 if ($fileData->{modificationType} eq "additionWithHistory") {
239 if (basename($file) eq "ChangeLog") {
276 if ($modificationType eq "additionWithHistor
[all...]
H A Dsplit-file-by-class72 if (!($classname eq $basename)) {
81 if (($classname eq $basename)) {
98 if ($1 eq $classname) {
138 $shouldPrintMemberFunction = ($classname eq $3);
H A Dwebkit-tools-completion.sh67 if [ $COMP_CWORD -eq 1 ]; then
/external/chromium_org/tools/emacs/
H A Dtrybot.el89 (cond ((eq type-hint 'win) (trybot-fixup-win))
90 ((eq type-hint 'mac) (trybot-fixup-maclin))
91 ((eq type-hint 'linux) (trybot-fixup-maclin))
117 ((eq type-hint 'win)
120 ((eq type-hint 'mac)
/external/iproute2/ip/
H A Difcfg25 if [ "$1" = "" -o $class -eq 0 -o $class -ge 224 ]; then return 0
60 if [ $fwd -eq 0 ]; then RestartRDISC; fi
106 if [ $fwd -eq 0 ]; then RestartRDISC; fi
138 if [ $fwd -eq 0 ]; then
139 if [ $noarp -eq 0 ]; then
/external/stlport/stlport/stl/
H A D_ctraits_fns.h39 { return _Traits::eq(__x, __y); }
48 { return _Traits::eq(__x, __val); }
58 { return !_Traits::eq(__x, __val); }
/external/chromium_org/chrome/browser/mac/
H A Dinstall.sh27 if [ ${EUID} -eq 0 ] ; then
117 ([ ${OS_MAJOR} -eq 10 ] && [ ${OS_MINOR} -ge 6 ]) ; then
/external/chromium_org/v8/test/mjsunit/
H A Dcompare-objects.js41 function eq(a, b) { function
51 assertTrue(eq(a, a));
52 assertTrue(eq(b, b));
53 assertFalse(eq(a, b));
/external/compiler-rt/lib/builtins/arm/
H A Daeabi_dcmp.S12 // int __aeabi_dcmp{eq,lt,le,ge,gt}(double a, double b) {
13 // int result = __{eq,lt,le,ge,gt}df2(a, b);
36 DEFINE_AEABI_DCMP(eq)
H A Daeabi_fcmp.S12 // int __aeabi_fcmp{eq,lt,le,ge,gt}(float a, float b) {
13 // int result = __{eq,lt,le,ge,gt}sf2(a, b);
36 DEFINE_AEABI_FCMP(eq)
/external/mockito/src/org/mockito/
H A DMatchers.java41 * verify(mock).someMethod(anyInt(), anyString(), <b>eq("third argument")</b>);
42 * //above is correct - eq() is also an argument matcher
48 * Matcher methods like <code>anyObject()</code>, <code>eq()</code> <b>do not</b> return matchers.
51 * The consequence is that you cannot use <code>anyObject()</code>, <code>eq()</code> methods outside of verified/stubbed method.
487 public static boolean eq(boolean value) { method in class:Matchers
500 public static byte eq(byte value) { method in class:Matchers
513 public static char eq(char value) { method in class:Matchers
526 public static double eq(double value) { method in class:Matchers
539 public static float eq(float value) { method in class:Matchers
552 public static int eq(in method in class:Matchers
565 public static long eq(long value) { method in class:Matchers
578 public static short eq(short value) { method in class:Matchers
591 public static <T> T eq(T value) { method in class:Matchers
[all...]
/external/clang/tools/scan-build/
H A Dccc-analyzer105 if ($ErrorType eq $ParserRejects) {
108 elsif ($ErrorType eq $AttributeIgnored) {
111 elsif ($ErrorType eq $OtherError) {
267 if ($Result & 127 and $Cmd eq $Clang and defined $HtmlDir) {
478 elsif ($Arg eq '-c') { $Action = 'compile'; }
482 if ($Arg eq "-arch") {
551 if ($1 eq '') {
566 if ($Arg eq '-x') {
572 if ($Arg eq '-o') {
580 if ($Arg eq '
[all...]
/external/libhevc/common/arm64/
H A Dihevc_intra_pred_luma_mode_18_34.s127 csel x6, x20, x6,eq
178 csel x2, x20, x2,eq
182 csel x12, x4, x12,eq
189 csel x0, x20, x0,eq
190 csel x11, x4, x11,eq
191 csel x8, x0, x8,eq
220 csel x2, x20, x2,eq
224 csel x12, x4, x12,eq
231 csel x11, x4, x11,eq
233 csel x0, x20, x0,eq
[all...]
/external/chromium_org/build/android/
H A Dadb_android_webview_command_line18 if [ $# -eq 0 ] ; then
22 if [ $? -eq 0 ] ; then
26 elif [ $# -eq 1 ] && [ "$1" = '' ] ; then
H A Dadb_chrome_shell_command_line18 if [ $# -eq 0 ] ; then
22 if [ $? -eq 0 ] ; then
26 elif [ $# -eq 1 ] && [ "$1" = '' ] ; then
H A Dadb_content_shell_command_line18 if [ $# -eq 0 ] ; then
22 if [ $? -eq 0 ] ; then
26 elif [ $# -eq 1 ] && [ "$1" = '' ] ; then
/external/chromium_org/build/
H A Dinstall-build-deps.sh74 if [ 0 -eq "${do_unsupported-0}" ] && [ 0 -eq "${do_quick_check-0}" ] ; then
87 if [ "x$(id -u)" != x0 ] && [ 0 -eq "${do_quick_check-0}" ]; then
218 [ $1 -eq 0 ] && echo "Y" || echo "N"
228 [ $1 -eq 0 ] && echo "Y" || echo "N"
249 if test "$do_inst_syms" = "" && test 0 -eq ${do_quick_check-0}
300 if [ 1 -eq "${do_quick_check-0}" ] ; then
350 elif [ $? -eq 1 ]; then
/external/chromium_org/third_party/skia/include/gpu/
H A DGrFontScaler.h37 return fHash == rh.fHash && this->eq(rh);
43 bool eq(const GrFontDescKey& rh) const;
/external/iproute2/testsuite/tests/
H A Ddsmark.t7 if [ $? -eq 0 ]; then

Completed in 7745 milliseconds

1234567891011>>