/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
__init__.py | 17 #--start constants--
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
__init__.py | 17 #--start constants--
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraTestThread.java | 38 * Create and start a looper thread, return the Handler 40 public synchronized Handler start() throws Exception { method in class:CameraTestThread 50 if (VERBOSE) Log.v(TAG, "start loopRun"); 60 }.start(); method 62 if (VERBOSE) Log.v(TAG, "start waiting for looper"); 64 throw new TimeoutException("createLooperThread: start timeout"); 74 Log.w(TAG, "Looper thread doesn't start yet");
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
ByteArray.java | 33 /** {@code >= 0}; start index of the slice (inclusive) */ 34 private final int start; field in class:ByteArray 37 * {@code end - start} (in the constructor) */ 44 * @param start {@code >= 0;} start index of the slice (inclusive) 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 53 if (start < 0) { 54 throw new IllegalArgumentException("start < 0"); 57 if (end < start) { [all...] |
/dalvik/dx/src/com/android/dx/util/ |
ByteArray.java | 33 /** {@code >= 0}; start index of the slice (inclusive) */ 34 private final int start; field in class:ByteArray 37 * {@code end - start} (in the constructor) */ 44 * @param start {@code >= 0;} start index of the slice (inclusive) 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 53 if (start < 0) { 54 throw new IllegalArgumentException("start < 0"); 57 if (end < start) { [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/ |
properties.rb | 24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop] 35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ] 42 start.should == 0 45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ] 52 start.should == 7 56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ] 63 start.should == 15
|
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/ |
gesture_parser_test.js | 15 'log: start: TimerLogOutputs', 19 'log: start: LogTimerCallback', 23 'HandleTimer: start: LoggingFilterInterpreter', 25 'HandleTimer: start: AppleTrackpadFilterInterpreter', 27 'HandleTimer: start: Cr48ProfileSensorFilterInterpreter', 29 'HandleTimer: start: T5R2CorrectingFilterInterpreter', 31 'HandleTimer: start: StuckButtonInhibitorFilterInterpreter', 33 'HandleTimer: start: IntegralGestureFilterInterpreter', 35 'HandleTimer: start: ScalingFilterInterpreter', 37 'HandleTimer: start: SplitCorrectingFilterInterpreter' [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGZoomAndPan.cpp | 43 static bool parseZoomAndPanInternal(const CharType*& start, const CharType* end, SVGZoomAndPanType& zoomAndPan) 45 if (skipString(start, end, disable, WTF_ARRAY_LENGTH(disable))) { 49 if (skipString(start, end, magnify, WTF_ARRAY_LENGTH(magnify))) { 56 bool SVGZoomAndPan::parseZoomAndPan(const LChar*& start, const LChar* end, SVGZoomAndPanType& zoomAndPan) 58 return parseZoomAndPanInternal(start, end, zoomAndPan); 61 bool SVGZoomAndPan::parseZoomAndPan(const UChar*& start, const UChar* end, SVGZoomAndPanType& zoomAndPan) 63 return parseZoomAndPanInternal(start, end, zoomAndPan);
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
phonenumbermatch.cc | 31 PhoneNumberMatch::PhoneNumberMatch(int start, 34 : start_(start), raw_string_(raw_string), number_(number) { 45 int PhoneNumberMatch::start() const { function in class:i18n::phonenumbers::PhoneNumberMatch 61 void PhoneNumberMatch::set_start(int start) { 62 start_ = start; 74 return StrCat("PhoneNumberMatch [", start(), ",", end(), ") ", 86 start_ = match.start();
|
/external/chromium_org/third_party/opus/src/celt/ |
quant_bands.h | 47 void log2Amp(const CELTMode *m, int start, int end, 50 void quant_coarse_energy(const CELTMode *m, int start, int end, int effEnd, 56 void quant_fine_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, opus_val16 *error, int *fine_quant, ec_enc *enc, int C); 58 void quant_energy_finalise(const CELTMode *m, int start, int end, opus_val16 *oldEBands, opus_val16 *error, int *fine_quant, int *fine_priority, int bits_left, ec_enc *enc, int C); 60 void unquant_coarse_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int intra, ec_dec *dec, int C, int LM); 62 void unquant_fine_energy(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int *fine_quant, ec_dec *dec, int C); 64 void unquant_energy_finalise(const CELTMode *m, int start, int end, opus_val16 *oldEBands, int *fine_quant, int *fine_priority, int bits_left, ec_dec *dec, int C);
|
/external/chromium_org/ui/gfx/animation/ |
animation.cc | 31 void Animation::Start() { 40 container_->Start(this); 64 double Animation::CurrentValueBetween(double start, double target) const { 65 return Tween::DoubleValueBetween(GetCurrentValue(), start, target); 68 int Animation::CurrentValueBetween(int start, int target) const { 69 return Tween::IntValueBetween(GetCurrentValue(), start, target); 91 container_->Start(this);
|
/external/chromium_org/ui/gfx/range/ |
range.cc | 21 Range::Range(size_t start, size_t end) 22 : start_(start), 41 return std::min(start(), end()); 45 return std::max(start(), end()); 49 return start() == other.start() && end() == other.end(); 81 return base::StringPrintf("{%" PRIuS ",%" PRIuS "}", start(), end());
|
/external/clang/test/CodeGenCXX/ |
init-invariant.cpp | 4 // Check that we add an llvm.invariant.start to mark when a global becomes 9 // CHECK-O0-NOT: llvm.invariant.start 45 // CHECK: call {{.*}}@llvm.invariant.start(i64 4, i8* bitcast ({{.*}} @a to i8*)) 48 // CHECK-NOT: call {{.*}}@llvm.invariant.start(i64 4, i8* bitcast ({{.*}} @b to i8*)) 51 // CHECK-NOT: call {{.*}}@llvm.invariant.start(i64 4, i8* bitcast ({{.*}} @c to i8*)) 55 // CHECK: call {{.*}}@llvm.invariant.start(i64 4, i8* bitcast ({{.*}} @d to i8*)) 59 // CHECK: call {{.*}}@llvm.invariant.start(i64 4, i8* bitcast ({{.*}} @_ZZ1evE1a to i8*))
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteArray.java | 33 /** {@code >= 0}; start index of the slice (inclusive) */ 34 private final int start; field in class:ByteArray 37 * {@code end - start} (in the constructor) */ 44 * @param start {@code >= 0;} start index of the slice (inclusive) 45 * @param end {@code >= start, <= bytes.length;} end index of 48 public ByteArray(byte[] bytes, int start, int end) { 53 if (start < 0) { 54 throw new IllegalArgumentException("start < 0"); 57 if (end < start) { [all...] |
/external/kernel-headers/original/asm-arm/ |
cacheflush.h | 106 * Start addresses are inclusive and end addresses are exclusive; 107 * start addresses should be rounded down, end addresses up. 122 * flush_cache_user_range(start, end, flags) 126 * - start - user start address (inclusive, page aligned) 130 * coherent_kern_range(start, end) 133 * region described by start, end. If you have non-snooping 135 * - start - virtual start address 141 * dma_inv_range(start, end [all...] |
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
SyncEvent.h | 48 ** Function: start 50 ** Description: Start a synchronization operation. 55 void start () function in class:SyncEvent 136 ** Description: Automatically start and end a synchronization event. 146 ** Description: Start a synchronization operation. 154 event.start (); //automatically start operation
|
/external/llvm/test/Transforms/SimplifyCFG/ |
2003-08-17-FoldSwitch.ll | 47 br i1 %C, label %Start, label %TheDest 48 Start: ; preds = %0 55 TheDest: ; preds = %Start, %Start, %Start, %Start, %Start, %0
|
/external/oprofile/daemon/liblegacy/ |
opd_mapping.h | 30 /** mapping start vma */ 31 unsigned long start; member in struct:opd_map 64 * @param start start of mapping 72 unsigned long start, unsigned long offset, unsigned long end); 92 return (eip >= map->start && eip < map->end); 108 return (eip - map->start) + map->offset;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
CameraTestThread.java | 38 * Create and start a looper thread, return the Handler 40 public synchronized Handler start() throws Exception { method in class:CameraTestThread 50 if (VERBOSE) Log.v(TAG, "start loopRun"); 60 }.start(); method 62 if (VERBOSE) Log.v(TAG, "start waiting for looper"); 64 throw new TimeoutException("createLooperThread: start timeout"); 74 Log.w(TAG, "Looper thread doesn't start yet");
|
/frameworks/rs/tests/latency/ |
latency.cpp | 75 struct timeval start, stop; local 77 gettimeofday(&start, NULL); 87 long long elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec); 91 gettimeofday(&start, NULL); 102 elapsed = (stop.tv_sec * 1000000) - (start.tv_sec * 1000000) + (stop.tv_usec - start.tv_usec);
|
/libcore/luni/src/main/java/java/lang/ |
CharSequence.java | 48 * Returns a {@code CharSequence} from the {@code start} index (inclusive) 51 * @param start 52 * the start offset of the sub-sequence. It is inclusive, that 61 * if {@code start < 0}, {@code end < 0}, {@code start > end}, 62 * or if {@code start} or {@code end} are greater than the 65 public CharSequence subSequence(int start, int end);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboAlbum.java | 42 public ArrayList<MediaItem> getMediaItem(int start, int count) { 47 if (start < size) { 48 int fetchCount = (start + count <= size) ? count : size - start; 49 ArrayList<MediaItem> fetchItems = set.getMediaItem(start, fetchCount); 52 start = 0; 54 start -= size;
|
/packages/apps/Nfc/nci/jni/ |
SyncEvent.h | 44 ** Function: start 46 ** Description: Start a synchronization operation. 51 void start () function in class:SyncEvent 132 ** Description: Automatically start and end a synchronization event. 142 ** Description: Start a synchronization operation. 150 event.start (); //automatically start operation
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
CommonToken.js | 20 this.start = oldToken.start; 32 this.start = arguments[3]; 55 this.text = this.input.substring(this.start,this.stop); 61 * that start/stop indexes are not valid. It means that that input 93 return this.start; 96 setStartIndex: function(start) { 97 this.start = start; 138 return "[@"+this.getTokenIndex()+","+this.start+":"+this.stop+"='"+txt+"',<"+this.type+">"+channelStr+","+this.line+":"+this.getCharPositionInLine (…) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCParser.h | 25 #pragma mark Cyclic DFA interface start DFA2 58 #pragma mark Rule Return Scopes start 62 /* ObjC start of ruleAttributeScopeMemVar */ 66 /* ObjC start of globalAttributeScopeMemVar */ 70 /* ObjC start of actions.(actionScope).memVars */ 72 /* ObjC start of memVars */ 78 /* ObjC start of actions.(actionScope).properties */ 80 /* ObjC start of properties */ 85 /* ObjC start of actions.(actionScope).methodsDecl */ 88 /* ObjC start of methodsDecl * [all...] |