/development/vndk/tools/header-checker/src/utils/ |
D | string_utils.cpp | 31 std::string::size_type start = s.find_first_not_of(" \t\r\n"); in Trim() local 32 if (start == std::string::npos) { in Trim() 37 return s.substr(start); in Trim() 39 return s.substr(start, end - start + 1); in Trim() 78 const char *start = s.c_str(); in ParseInt() local 79 if (*start == '\0') { in ParseInt() 84 long int res = ::strtol(start, &endptr, 10); in ParseInt()
|
/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/ |
D | MultiPropertyAnimations.java | 62 anim.start(); in runValueAnimator() 78 ObjectAnimator.ofFloat(view, View.TRANSLATION_X, TX_END).start(); in runObjectAnimators() 79 ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, TY_END).start(); in runObjectAnimators() 90 ObjectAnimator.ofPropertyValuesHolder(view, pvhTX, pvhTY).start(); in runObjectAnimator()
|
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/ |
D | SimpleWebServer.java | 73 public void start() { in start() method in SimpleWebServer 75 new Thread(this).start(); in start() 130 int start = line.indexOf('/') + 1; in handle() local 131 int end = line.indexOf(' ', start); in handle() 132 route = line.substring(start, end); in handle()
|
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/ |
D | BluetoothChatService.java | 102 public synchronized void start() { in start() method in BluetoothChatService 116 mSecureAcceptThread.start(); in start() 120 mInsecureAcceptThread.start(); in start() 142 mConnectThread.start(); in connect() 173 mConnectedThread.start(); in connected() 242 BluetoothChatService.this.start(); in connectionFailed() 257 BluetoothChatService.this.start(); in connectionLost() 463 BluetoothChatService.this.start(); in run()
|
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
D | PictureDetailsActivity.java | 167 bgAnim.start(); in runEnterAnimation() 174 colorizer.start(); in runEnterAnimation() 179 shadowAnim.start(); in runEnterAnimation() 227 bgAnim.start(); in runExitAnimation() 233 shadowAnim.start(); in runExitAnimation() 241 colorizer.start(); in runExitAnimation()
|
/development/tools/idegen/ |
D | index-gen.sh | 50 start=$(($(date +%s) / 1000000)) 52 start=$(($(date +%s%N) / 1000000)) 74 elapse=$(($end - $start))
|
/development/vndk/tools/sourcedr/ninja/ |
D | list_source_file.py | 40 def collect_source_files(graph, start, out_dir_pattern, out_host_dir_pattern): argument 48 start_basename = posixpath.basename(start) 51 visited = {start} 52 stack = [start]
|
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/ |
D | BluetoothChatService.java | 107 public synchronized void start() { in start() method in BluetoothChatService 125 mSecureAcceptThread.start(); in start() 129 mInsecureAcceptThread.start(); in start() 160 mConnectThread.start(); in connect() 199 mConnectedThread.start(); in connected() 275 BluetoothChatService.this.start(); in connectionFailed() 294 BluetoothChatService.this.start(); in connectionLost()
|
/development/scripts/ |
D | stack_core.py | 230 start = int(match.group(2)) 231 end = start + int(match.group(3)) 233 offset_list.append([name, start, end]) 234 return name, start, end 243 for file_name, start, end in offset_list: 244 if offset >= start and offset < end: 281 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info) 282 if not file_name and offset >= start and offset < end: 288 cur_name, start, end = self.ProcessCentralInfo(offset_list, central_info) 289 if not file_name and offset >= start and offset < end:
|
D | native_heapdump_viewer.py | 104 def __init__(self, start, end, offset, name): argument 105 self.start = start 247 start = int(m.group('start'), 16) 253 mappings.append(GetMappingFromOffset(Mapping(start, end, offset, name), app_symboldir)) 271 elif mappings[mid].start > addr: 297 addr_offsets[addr] = addr - mapping.start + mapping.offset
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | AnimatedNotificationDisplayActivity.java | 70 private void createNextAnimation(boolean start) { in createNextAnimation() argument 92 if (start) { in createNextAnimation() 93 mAnimation.start(); in createNextAnimation() 100 mAnimation.start(); in onResume()
|
/development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/ |
D | MainActivity.java | 115 mCountDownTimer.start(); in onUIStateChanged() 165 mMediaPlayer.start(); in playMusic() 189 start(); in checkPermissions() 202 start(); in onRequestPermissionsResult() 217 private void start() { in start() method in MainActivity
|
/development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/ |
D | EasyTextWatcher.java | 29 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument 34 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
|
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/ |
D | PduComposer.java | 339 PositionMarker start = mStack.mark(); in appendEncodedString() local 344 int len = start.getLength(); in appendEncodedString() 874 byte[] start = part.getContentId(); in makeMessageBody() 875 if (start != null) { in makeMessageBody() 877 if (('<' == start[0]) && ('>' == start[start.length - 1])) { in makeMessageBody() 878 appendTextString(start); in makeMessageBody() 880 appendTextString("<" + new String(start) + ">"); in makeMessageBody()
|
/development/tools/hosttestlib/src/com/android/hosttest/ |
D | DeviceTestRunner.java | 59 public TestResult start(String[] args) throws Exception { in start() method in DeviceTestRunner 76 return super.start(parentArgs.toArray(new String[parentArgs.size()])); in start() 101 TestResult r = aTestRunner.start(args); in main()
|
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/ |
D | TextWatcherWrapper.java | 37 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument 42 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
D | TypeUtils.java | 106 int start = typeName.lastIndexOf("."); in classNameOnly() local 107 if (start < 0) { in classNameOnly() 110 return typeName.substring(start+1); in classNameOnly()
|
/development/apps/Development/src/com/android/development/ |
D | LogViewer.java | 62 new Thread(new LogReader()).start(); in onCreate() 131 static int next0(byte[] bytes, int start) { in next0() argument 132 for (int current = start; current < bytes.length; current++) { in next0()
|
/development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
D | MethodStubber.java | 138 public void visitLineNumber(int line, Label start) { in visitLineNumber() argument 144 Label start, Label end, int index) { in visitLocalVariable() argument 174 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() argument
|
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/ |
D | MidiEventThread.java | 63 public void start() { in start() method in MidiEventThread 66 mEventThread.start(); in start()
|
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/ |
D | MidiEventThread.java | 63 public void start() { in start() method in MidiEventThread 66 mEventThread.start(); in start()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | PrintCustomContent.java | 453 int start = -1; in print() 457 if (start < 0) { in print() 458 start = writtenPages.valueAt(i); in print() 460 int oldEnd = end = start; in print() 466 PageRange pageRange = new PageRange(start, end); in print() 468 start = end = -1; in print()
|
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/ |
D | CardEmulationFragment.java | 55 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() argument 60 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() argument
|
/development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/ |
D | AnticiButton.java | 99 downAnim.start(); in runPressAnim() 142 set.start(); in runClickAnim() 155 reverser.start(); in runCancelAnim()
|
/development/vndk/tools/sourcedr/blueprint/ |
D | blueprint.py | 146 self.start = None 162 raise LexerError(self.buf, self.start, 171 self.start = self.end 172 self.token, self.end, self.literal = self.lex(self.buf, self.start) 176 self.start = self.end 206 def decode_oct(buf, offset, start, end): argument 213 codepoint = int(buf[start:end], 8) 222 def decode_hex(buf, offset, start, end): argument 229 return int(buf[start:end], 16) 564 Lexer.compute_line_column(lexer.buf, lexer.start)
|