/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
ArrayAccessExpr.java | 39 * In <br/><code>getNames()[15*15]</code> the name expression is getNames() and the index expression is 15*15. 47 private Expression index; field in class:ArrayAccessExpr 54 public ArrayAccessExpr(Expression name, Expression index) { 55 this(null, name, index); 62 public ArrayAccessExpr(TokenRange tokenRange, Expression name, Expression index) { 65 setIndex(index); 83 return index; 92 public ArrayAccessExpr setIndex(final Expression index) { 93 assertNotNull(index); 94 if (index == this.index) [all...] |
/system/core/libcutils/arch-x86_64/ |
android_memset16.S | 57 relative offsets. INDEX is a register contains the index into the 58 jump table. SCALE is the scale of INDEX. */ 59 #define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 61 movslq (%r11, INDEX, SCALE), INDEX; \ 62 lea (%r11, INDEX), INDEX; \ 63 jmp *INDEX
|
/external/boringssl/src/crypto/fipsmodule/ec/asm/ |
p256-x86_64-asm.pl | 946 my ($val,$in_t,$index)=$win64?("%rcx","%rdx","%r8d"):("%rdi","%rsi","%edx"); 947 my ($ONE,$INDEX,$Ra,$Rb,$Rc,$Rd,$Re,$Rf)=map("%xmm$_",(0..7)); 953 # void ecp_nistz256_select_w5(uint64_t *val, uint64_t *in_t, int index); 982 movd $index, $INDEX 992 pshufd \$0, $INDEX, $INDEX 999 pcmpeqd $INDEX, $TMP0 1051 # void ecp_nistz256_select_w7(uint64_t *val, uint64_t *in_t, int index); 1080 movd $index, $INDE [all...] |
/external/webp/src/mux/ |
muxread.c | 23 #define SWITCH_ID_LIST(INDEX, LIST) \ 24 if (idx == (INDEX)) { \ 26 kChunks[(INDEX)].tag); \ 500 // Get chunk index from chunk id. Returns IDX_NIL if not found.
|
muxedit.c | 68 #define SWITCH_ID_LIST(INDEX, LIST) \ 69 if (idx == (INDEX)) { \
|
/frameworks/base/core/java/android/view/textclassifier/logging/ |
SmartSelectionEventTracker.java | 50 private static final int INDEX = MetricsEvent.FIELD_SELECTION_SESSION_INDEX; 166 .addTaggedData(INDEX, mIndex) 329 final int index = Integer.parseInt(Objects.toString(log.getTaggedData(INDEX), ZERO)); local 349 index, type, entity, eventStart, eventEnd, smartStart, smartEnd, widget, model)); 354 * Specify index parameters as word token indices. 359 * Use this to specify an indeterminate positive index. 364 * Use this to specify an indeterminate negative index. 441 * @param start the word index of the selected word 453 * @param start the start word (inclusive) index of the selectio [all...] |
/external/one-true-awk/ |
lex.c | 68 { "index", INDEX, INDEX },
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pyopers.swg | 147 %ignoreoperator(INDEX) *::operator[];
|
/external/dhcpcd-6.8.2/ |
dhcp-common.c | 59 if (opt->type & INDEX) 60 printf(" index"); 817 if (opt->type & INDEX) { 818 if (opt->index > 999) { 825 (opt->type & INDEX ? 3 : 0); 831 if (opt->type & INDEX) 833 opt->var, ++opt->index); 873 * recursive as the index order could break. */ 882 oopt->index = 0; 924 opt->index = 0 [all...] |
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/ |
avx512fintrin.h | [all...] |
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/ |
avx512fintrin.h | [all...] |
/external/jemalloc/src/ |
ctl.c | 27 ctl_named_children(const ctl_named_node_t *node, size_t index) 31 return (children ? &children[index] : NULL); 227 #define INDEX(i) {false}, i##_index 316 {INDEX(arena_i)} 329 {INDEX(arenas_bin_i)} 340 {INDEX(arenas_lrun_i)} 351 {INDEX(arenas_hchunk_i)} 424 {INDEX(stats_arenas_i_bins_j)} 438 {INDEX(stats_arenas_i_lruns_j)} 452 {INDEX(stats_arenas_i_hchunks_j) 860 uintmax_t index; local [all...] |
/external/mesa3d/src/mesa/main/ |
api_loopback.c | 58 #define INDEX(c) CALL_Indexf(GET_DISPATCH(), (c)) 71 #define ATTRIB1NV(index,x) CALL_VertexAttrib1fNV(GET_DISPATCH(), (index,x)) 72 #define ATTRIB2NV(index,x,y) CALL_VertexAttrib2fNV(GET_DISPATCH(), (index,x,y)) 73 #define ATTRIB3NV(index,x,y,z) CALL_VertexAttrib3fNV(GET_DISPATCH(), (index,x,y,z)) 74 #define ATTRIB4NV(index,x,y,z,w) CALL_VertexAttrib4fNV(GET_DISPATCH(), (index,x,y,z,w)) 76 #define ATTRIB1ARB(index,x) CALL_VertexAttrib1fARB(GET_DISPATCH(), (index,x) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
construction.rb | 23 INDEX; 218 -> ^(INDEX $r39 $ie) 498 ast_test :input => "gnurz[1]", :rule => :r39, :ast => "(INDEX gnurz 1)"
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
C.stg | 231 #undef INDEX 259 #define INDEX() ISTREAM->index(ISTREAM) 362 #undef INDEX 376 #define INDEX() ISTREAM->index(INPUT->istream) 445 #undef INDEX 480 #define INDEX() ISTREAM->index(ISTREAM) [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/ |
ObservableProperty.java | 68 INDEX(Type.SINGLE_REFERENCE),
|
/bionic/libc/arch-x86/silvermont/string/ |
sse4-memcmp-slm.S | 104 jump table with relative offsets. INDEX is a register contains the 105 index into the jump table. SCALE is the scale of INDEX. */ 107 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 114 addl (%ebx,INDEX,SCALE), %ebx; \ 121 jump table with relative offsets. INDEX is a register contains the 122 index into the jump table. SCALE is the scale of INDEX. */ 123 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 124 jmp *TABLE(,INDEX,SCALE [all...] |
sse2-strcpy-slm.S | 109 jump table with relative offsets. INDEX is a register contains the 110 index into the jump table. SCALE is the scale of INDEX. */ 112 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 119 addl (%ecx,INDEX,SCALE), %ecx; \ 126 absolute offsets. INDEX is a register contains the index into the 127 jump table. SCALE is the scale of INDEX. */ 129 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 130 jmp *TABLE(,INDEX,SCALE [all...] |
/external/autotest/client/bin/input/ |
linux_input.py | 68 # @index: index in the keymap, may be used instead of scancode 71 # should perform lookup in keymap by @index instead of @scancode 75 # option of performing lookup either by @scancode itself or by @index 76 # in keymap entry. EVIOCGKEYCODE will also return scancode or index 82 # __u16 index; 1110 def INDEX(x): 1114 return ((a[INDEX(b)] >> OFFSET(b)) & 1) [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
pointertest.cpp | 48 EXPECT_EQ(kPointerInvalidIndex, p.GetTokens()[0].index); 57 EXPECT_EQ(kPointerInvalidIndex, p.GetTokens()[0].index); 67 EXPECT_EQ(kPointerInvalidIndex, p.GetTokens()[0].index); 77 EXPECT_EQ(kPointerInvalidIndex, p.GetTokens()[0].index); 80 EXPECT_EQ(0u, p.GetTokens()[1].index); 133 // Valid index 138 EXPECT_EQ(123u, p.GetTokens()[0].index); 142 // Invalid index (with leading zero) 147 EXPECT_EQ(kPointerInvalidIndex, p.GetTokens()[0].index); 151 // Invalid index (overflow [all...] |
/art/runtime/arch/x86_64/ |
memcmp16_x86_64.S | 38 #define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 40 movslq (%r11, INDEX, SCALE), %rcx; \
|
/external/annotation-tools/scene-lib/src/annotations/io/ |
ASTPath.java | 93 public static final String INDEX = "index"; 393 public ASTEntry get(int index) { 396 if (index >= n) { 397 throw new NoSuchElementException(Integer.toString(index)); 399 if (index < 0) { 400 index += n; 401 if (index < 0) { 402 throw new IllegalArgumentException("negative index " + index); [all...] |
/external/syslinux/gpxe/src/drivers/net/ |
r8169.c | 1834 int index; member in struct:__anon37938 [all...] |
/bionic/libc/arch-x86/atom/string/ |
ssse3-memcpy-atom.S | 101 jump table with relative offsets. INDEX is a register contains the 102 index into the jump table. SCALE is the scale of INDEX. */ 104 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 111 addl (%ebx, INDEX, SCALE), %ebx; \ 123 absolute offsets. INDEX is a register contains the index into the 124 jump table. SCALE is the scale of INDEX. */ 126 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \ 127 jmp *TABLE(, INDEX, SCALE [all...] |
/external/chromium-trace/catapult/devil/devil/android/ |
device_utils_test.py | [all...] |