/external/chromium_org/v8/test/cctest/compiler/ |
test-machine-operator-reducer.cc | 429 Node* one = R.Constant<int32_t>(1); local 434 R.CheckBinop(x, x, one); // x * 1 => x 435 R.CheckBinop(x, one, x); // 1 * x => x 468 Node* one = R.Constant<int32_t>(1); local 471 R.CheckBinop(x, x, one); // x / 1 => x 495 Node* one = R.Constant<int32_t>(1); local 497 R.CheckBinop(x, x, one); // x / 1 => x 525 Node* one = R.Constant<int32_t>(1); local 527 R.CheckFoldBinop<int32_t>(0, x, one); // x % 1 => 0 548 Node* one = R.Constant<int32_t>(1) local 746 Node* one = R.Constant<double>(1.0); local 767 Node* one = R.Constant<double>(1.0); local [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies-with-unscopables.js | 33 // One 'x' for HasBinding and one for GetBindingValue 63 // One 'x' for HasBinding and one for GetBindingValue
|
/external/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/ |
p3.cpp | 31 enum E1 { one }; enumerator in enum:bullet3::E1
|
/external/clang/test/Modules/Inputs/ |
redecl-merge-right.h | 81 int ONE; 83 const int one = ONE; variable
|
/external/clang/test/Sema/ |
function-redecl.c | 127 enum e0 {one}; enumerator in enum:e0
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
CatchStructs.java | 202 CatchTable.Entry one = table.get(i); local 203 int start = one.getStart(); 204 int end = one.getEnd(); 215 out.writeShort(handlerOffsets.get(one.getHandlers())); 223 * Only one of {@code printTo} or {@code annotateTo} should
|
/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
Prototype.java | 210 * Constructs an instance. This is a private constructor; use one 348 Type one = parameterTypes.get(i); local 349 if (one.isIntlike()) { 351 one = Type.INT; 353 list.set(i, one);
|
/external/dhcpcd/mk/ |
prog.mk | 11 # the default one in /usr/lib 22 # the default one in /usr/libexec
|
/external/fdlibm/ |
k_rem_pio2.c | 52 * precison, one may have to do something like: 159 one = 1.0, variable 233 z = one - z; 234 if(carry!=0) z -= ieee_scalbn(one,q0); 270 fw = ieee_scalbn(one,q0);
|
/external/libcxx/test/utilities/function.objects/unord.hash/ |
enum.pass.cpp | 25 enum class Cardinals { zero, one, two, three, five=5 }; member in class:Cardinals
|
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/ |
enum.pass.cpp | 46 enum Enum {zero, one}; enumerator in enum:Enum
|
/external/libpng/scripts/ |
pnglibconf.mak | 13 AWK = one-true-awk
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/ |
sample-parsing.c | 63 COMP(read.one.value); 73 COMP(read.one.id); 196 sample.read.one.value = 0x08789faeb786aa87ULL; 197 sample.read.one.id = 99;
|
/external/llvm/test/MC/ARM/ |
eh-directive-fnstart-diagnostics.s | 24 @ CHECK: error: .fnstart starts before the end of previous one
|
elf-thumbfunc-reloc.s | 30 @@ make sure the relocation is with f. That is one way to make sure it includes
|
/external/llvm/test/MC/X86/AlignedBundling/ |
pad-align-to-bundle-end.s | 29 # The nop sequence may be implemented as one instruction or many, but if 30 # it's one instruction, that instruction cannot itself cross the boundary.
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
dxbc_assemble.cpp | 44 header->one = bswap_le32(1);
|
/external/openssl/crypto/ocsp/ |
ocsp_prn.c | 140 OCSP_ONEREQ *one = NULL; local 156 one = sk_OCSP_ONEREQ_value(inf->requestList, i); 157 cid = one->reqCert; 161 one->singleRequestExtensions, flags, 8))
|
/external/skia/experimental/webtry/poly/ |
Gruntfile.js | 32 // Uglify the one big file into one smaller file.
|
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
fldcw_check.S | 7 # performance counter counts this as one instruction. However, 143 cmp $3,%rbx # result is the expected one
|
/external/valgrind/main/exp-bbv/tests/x86/ |
fldcw_check.S | 7 # performance counter counts this as one instruction. However, 97 cmp $3,%ebx # result is the expected one
|
/external/valgrind/main/memcheck/tests/linux/ |
timerfd-syscall.stderr.exp | 15 sleeping one second ... 38 sleeping one second ...
|
/frameworks/base/core/java/android/content/ |
RestrictionEntry.java | 25 * applied to the restricted user. Each RestrictionsEntry is one configurable restriction. 66 * A type of restriction. Use this for presenting a multi-select list where more than one 105 * one or more of these, returned by {@link #getAllSelectedStrings()} and 294 * user selects one or more of these choices, the corresponding value from the possible values 364 private boolean equalArrays(String[] one, String[] other) { 365 if (one.length != other.length) return false; 366 for (int i = 0; i < one.length; i++) { 367 if (!one[i].equals(other[i])) return false;
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ConcurrentLinkedDequeTest.java | 96 q.add(one); 193 assertTrue(q.offer(one)); 195 assertSame(one, q.peekLast()); 204 assertTrue(q.offerFirst(one)); 205 assertSame(one, q.peekFirst()); 215 assertTrue(q.offerLast(one)); 217 assertSame(one, q.peekLast()); 259 assertTrue(q.add(one)); 261 assertSame(one, q.peekLast()); 270 q.addFirst(one); [all...] |
LinkedTransferQueueTest.java | 366 assertTrue(q.add(one)); 368 assertTrue(q.remove(one)); 394 q.add(one); 397 assertTrue(q.contains(one)); 506 q.add(one); 514 assertSame(it.next(), one); local 526 q.add(one); 542 q.add(one); 574 assertTrue(q.offer(one, LONG_DELAY_MS, MILLISECONDS)); 580 assertSame(one, q.take()) [all...] |