/external/javassist/src/main/javassist/bytecode/ |
H A D | CodeIterator.java | 448 private int insert0(int pos, byte[] code, boolean exclusive) argument 456 pos = insertGapAt(pos, len, exclusive).position; 505 * Inserts an exclusive gap 524 * Inserts an exclusive gap in front of the instruction at the given 561 * Inserts an inclusive or exclusive gap in front of the instruction 569 * then it is included within that block. If the gap is exclusive, 588 * @param exclusive true if exclusive, otherwise false. 592 public Gap insertGapAt(int pos, int length, boolean exclusive) argument 596 * cursorPos indicates the next bytecode whichever exclusive i 796 insertGapCore0(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument 817 insertGapCore1(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca) argument 853 insertGap2(byte[] code, int where, int gapLength, int endPos, byte[] newcode, boolean exclusive) argument 973 newOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument 1014 shiftPc(int where, int gapLength, boolean exclusive) argument 1086 insertGapCore0w(byte[] code, int where, int gapLength, boolean exclusive, ExceptionTable etable, CodeAttribute ca, Gap newWhere) argument 1110 insertGap2w(byte[] code, int where, int gapLength, boolean exclusive, ArrayList jumps, Pointers ptrs) argument 1270 shift(int where, int gapLength, boolean exclusive) argument 1275 shiftOffset(int i, int offset, int where, int gapLength, boolean exclusive) argument 1347 shift(int where, int gapLength, boolean exclusive) argument 1435 shift(int where, int gapLength, boolean exclusive) argument 1458 shift(int where, int gapLength, boolean exclusive) argument [all...] |
H A D | ExceptionTable.java | 251 void shiftPc(int where, int gapLength, boolean exclusive) { argument 255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive); 256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive); 257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive); 262 boolean exclusive) { 263 if (pc > where || (exclusive && pc == where)) 261 shiftPc(int pc, int where, int gapLength, boolean exclusive) argument
|
H A D | StackMap.java | 375 void shiftPc(int where, int gapSize, boolean exclusive) argument 378 new Shifter(this, where, gapSize, exclusive).visit(); 383 private boolean exclusive; field in class:StackMap.Shifter 385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) { argument 389 this.exclusive = exclusive; 393 if (exclusive ? where <= offset : where < offset)
|
H A D | LineNumberAttribute.java | 172 void shiftPc(int where, int gapLength, boolean exclusive) { argument 177 if (pc > where || (exclusive && pc == where))
|
H A D | StackMapTable.java | 788 void shiftPc(int where, int gapSize, boolean exclusive) argument 791 new Shifter(this, where, gapSize, exclusive).doit(); 799 private boolean exclusive; field in class:StackMapTable.Shifter 801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument 808 this.exclusive = exclusive; 829 if (exclusive) 876 if (exclusive)
|
H A D | LocalVariableAttribute.java | 180 void shiftPc(int where, int gapLength, boolean exclusive) { argument 189 if (pc > where || (exclusive && pc == where && pc != 0)) 191 else if (pc + len > where || (exclusive && pc + len == where))
|
/external/autotest/client/cros/ |
H A D | kernel_config.py | 96 def is_exclusive(self, exclusive): 100 @param exclusive: hash containing "missing", "builtin", "module", 106 for name in exclusive['missing']: 108 for name in exclusive['builtin']: 111 for name in exclusive['module']: 116 regex = r'CONFIG_%s' % (exclusive['regex'])
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
H A D | FrameReader.java | 93 * @param exclusive inserts this stream ID as the sole child of 96 void priority(int streamId, int streamDependency, int weight, boolean exclusive); argument
|
H A D | Http2.java | 241 boolean exclusive = (w1 & 0x80000000) != 0; 244 handler.priority(streamId, streamDependency, weight, exclusive);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
H A D | BaseTestHandler.java | 62 boolean exclusive) { 61 priority(int streamId, int streamDependency, int weight, boolean exclusive) argument
|
H A D | MockSpdyPeer.java | 304 boolean exclusive) { 303 priority(int streamId, int streamDependency, int weight, boolean exclusive) argument
|
H A D | Http2Test.java | 97 boolean exclusive) { 100 assertFalse(exclusive);
|
/external/kernel-headers/original/uapi/linux/ |
H A D | isdn.h | 84 #define ISDN_USAGE_EXCLUSIVE 64 /* This bit is set, if channel is exclusive */ 119 int exclusive; /* Channel, if bound exclusive */ member in struct:__anon8160
|
H A D | perf_event.h | 302 exclusive : 1, /* only group on PMU */ member in struct:perf_event_attr
|
/external/pdfium/third_party/zlib_v128/ |
H A D | gzlib.c | 103 int exclusive = 0; local 151 exclusive = 1; 234 (exclusive ? O_EXCL : 0) |
|
/external/zlib/src/ |
H A D | gzlib.c | 103 int exclusive = 0; local 151 exclusive = 1; 234 (exclusive ? O_EXCL : 0) |
|
/external/libxml2/python/ |
H A D | libxml.py | 418 # exclusive: the exclusive flag (0 - non-exclusive 419 # canonicalization; otherwise - exclusive canonicalization) 422 # exclusive canonicalization, ignored otherwise) 427 exclusive=0, 435 exclusive != 0, 441 exclusive=0, 449 exclusive != 0,
|
H A D | libxml.c | 3614 int exclusive; local 3628 &exclusive, 3642 if (exclusive) { 3655 exclusive, 3690 int exclusive; local 3706 &exclusive, 3728 if (exclusive) { 3741 exclusive,
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/ |
H A D | TestMenu.java | 114 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
H A D | MenuLoaderTest.java | 128 boolean exclusive) { 127 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
H A D | output_writers.py | 339 exclusive=False): 347 exclusive: a boolean flag indicating if the pool has an exclusive 355 self._exclusive = exclusive 426 exclusive=False): 428 super(GCSRecordsPool, self).__init__(flush_size_chars, ctx, exclusive)
|
/external/neven/Embedded/common/src/b_BasicEm/ |
H A D | Basic.h | 46 #error LibConfig.h: bbs_NO_MESSAGE_HANDLING and bbs_ENABLE_MESSAGE_FPTRG are mutually exclusive
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/ |
H A D | connection.py | 166 def exclusive(*groups): function 707 @exclusive(['CreatedAfter'], ['LastUpdatedAfter']) 709 @exclusive(['LastUpdatedAfter'], ['BuyerEmail'], ['SellerOrderId']) 711 @exclusive(['CreatedAfter'], ['LastUpdatedBefore'])
|
/external/guice/extensions/struts2/lib/ |
H A D | javassist.jar | META-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ... |
/external/llvm/test/MC/AArch64/ |
H A D | arm64-memory.s | 453 ; Load/Store exclusive 483 ; Load-acquire/Store-release non-exclusive 507 ; Load-acquire/Store-release exclusive
|