HomeSort by relevance Sort by last modified time
    Searched refs:current (Results 176 - 200 of 6162) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 173 char last, current; local
178 current = getMappingCode(str.charAt(i));
179 if (current == last) {
181 } else if (current != 0) {
182 sBuf.append(current);
185 last = current;
  /external/autotest/client/tests/selftest/
selftest.py 19 current = int(fd.readline())
22 current += 1
24 fd.write('%d' % current)
29 logging.debug("checkpoint %d %d", current, checkpoint)
31 if (current != checkpoint):
33 "%d when %d expected" % (current, checkpoint))
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 93 Date current = new Date(); local
94 String dtf = format.format(current);
96 assertTrue("Incorrect date format", sdf.format(current).equals(dtf));
113 Date current = new Date(); local
116 StringBuffer sb = format.format(current, toAppend, fp);
118 assertTrue("Incorrect date format", sdf.format(current).equals(
222 Date current = new Date(); local
225 Date date = format.parse(format.format(current).toString());
226 assertEquals(current.getDate(), date.getDate());
227 assertEquals(current.getDay(), date.getDay())
384 Date current = new Date(); local
    [all...]
  /hardware/ril/libril/
RilSapSocket.cpp 87 RilSapSocketList *current = head; local
89 while(NULL != current) {
90 RLOGD("SocketName:%s",current->socket->name);
91 RLOGD("Socket id:%d",current->socket->id);
92 current = current->next;
98 RilSapSocketList *current = head; local
103 while(NULL != current) {
104 if(socketId == current->socket->id) {
105 sap_socket = current->socket
150 RilSapSocketList *current; local
180 RilSapSocketList* current = head; local
    [all...]
  /external/guice/core/src/com/google/inject/spi/
ModuleSource.java 131 ModuleSource current = this; local
132 while (current != null) {
133 String className = current.moduleClassName;
135 current = current.parent;
171 ModuleSource current = this; local
172 while (current != null) {
174 StackTraceElements.convertToStackTraceElement(current.partialCallStack);
177 current = current.parent
    [all...]
  /art/compiler/optimizing/
ssa_liveness_analysis.cc 52 HInstruction* current = inst_it.Current(); local
53 codegen_->AllocateLocations(current);
54 LocationSummary* locations = current->GetLocations();
56 instructions_from_ssa_index_.push_back(current);
57 current->SetSsaIndex(ssa_index++);
58 current->SetLiveInterval(
59 LiveInterval::MakeInterval(allocator_, current->GetType(), current));
61 current->SetLifetimePosition(lifetime_position)
70 HInstruction* current = inst_it.Current(); local
175 HInstruction* current = GetInstructionFromSsaIndex(idx); local
181 HInstruction* current = back_it.Current(); local
228 HInstruction* current = inst_it.Current(); local
247 HInstruction* current = GetInstructionFromSsaIndex(idx); local
527 LiveInterval* current = this; local
    [all...]
register_allocator_linear_scan.cc 77 // Always reserve for the current method and the graph's max out registers.
116 HInstruction* instruction = inst_it.Current();
123 HInstruction* instruction = inst_it.Current();
171 ProcessInstruction(back_it.Current());
174 ProcessInstruction(inst_it.Current());
196 // can be after the current interval during linear scan.
216 // can be after the current interval during linear scan.
300 LiveInterval* current = instruction->GetLiveInterval(); local
301 if (current == nullptr) return;
307 DCHECK(unhandled.empty() || current->StartsBeforeOrAt(unhandled.back()))
503 LiveInterval* current = unhandled_->back(); local
1060 LiveInterval* current = (*array)[i - 1u]; local
    [all...]
  /external/curl/tests/libtest/
lib526.c 59 int current = 0; local
80 multi_add_handle(m, curl[current]);
101 curl_easy_cleanup(curl[current]);
102 curl[current] = NULL;
104 if(++current < NUM_HANDLES) {
105 fprintf(stderr, "Advancing to URL %d\n", current);
120 multi_add_handle(m, curl[current]);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
TokenRange.java 58 private JavaToken current = begin;
67 JavaToken retval = current;
68 if(current == null){
71 if (current == end) {
74 current = current.getNextToken().orElse(null);
75 if(current == null && hasNext){
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary_utils.cpp 33 std::vector<DicNode> current; local
41 current.emplace_back();
42 DicNodeUtils::initAsRoot(dictionaryStructurePolicy, prevWordIds, &current.front());
46 for (const DicNode &dicNode : current) {
54 current.clear();
55 current.swap(next);
59 for (const DicNode &dicNode : current) {
  /system/extras/showmap/
showmap.cpp 135 mapinfo *current = *head; local
142 if (current && coalesce_by_name && !strcmp(map->name, current->name)) {
143 current->size += map->size;
144 current->rss += map->rss;
145 current->pss += map->pss;
146 current->shared_clean += map->shared_clean;
147 current->shared_dirty += map->shared_dirty;
148 current->private_clean += map->private_clean;
149 current->private_dirty += map->private_dirty
179 mapinfo *current = NULL; local
    [all...]
  /external/autotest/client/common_lib/cros/manual/
meet_helper.py 169 current = int(handle.get_speaker_volume())
175 if test_volume > current:
176 while test_volume > current:
178 transit_volume = current + random.randrange(1, step)
180 transit_volume = current + step
187 current = int(handle.get_speaker_volume())
193 logging.info('+++set vol %d, current %d, target %d',
194 transit_volume, current, test_volume)
196 while test_volume < current:
198 transit_volume = current - random.randrange(1, step
    [all...]
  /external/libvpx/libvpx/test/
active_map_refresh_test.cc 20 int CheckMb(const vpx_image_t &current, const vpx_image_t &previous, int mb_r,
25 int r_top = std::min(r + 16, static_cast<int>(current.d_h));
26 int c_top = std::min(c0 + 16, static_cast<int>(current.d_w));
29 if (plane > 0 && current.x_chroma_shift) {
33 if (plane > 0 && current.y_chroma_shift) {
39 if (current.planes[plane][current.stride[plane] * r + c] !=
49 void GenerateMap(int mb_rows, int mb_cols, const vpx_image_t &current,
53 map[mb_r * mb_cols + mb_c] = CheckMb(current, previous, mb_r, mb_c);
81 vpx_image_t *current = video->img() local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonEvent.java 211 int current = 0; local
216 if (rawEvent.charAt(current) == '\"') {
218 current++;
220 while (current < length) {
223 wordEnd = current;
232 String word = rawEvent.substring(current, wordEnd);
233 current += word.length();
237 current++; // skip the trailing quote
247 int nextSpace = rawEvent.indexOf(' ', current);
248 int nextQuote = rawEvent.indexOf(" \"", current);
    [all...]
  /cts/tests/signature/api/
Android.mk 39 $(eval $(call build_xml_api_file,current.api,frameworks/base/api/current.txt))
40 $(eval $(call build_xml_api_file,system-current.api,frameworks/base/api/system-current.txt))
42 $(eval $(call build_xml_api_file,android-test-base-current.api,frameworks/base/test-base/api/android-test-base-current.txt))
43 $(eval $(call build_xml_api_file,android-test-mock-current.api,frameworks/base/test-mock/api/android-test-mock-current.txt))
44 $(eval $(call build_xml_api_file,android-test-runner-current.api,frameworks/base/test-runner/api/android-test-runner-current.txt)
    [all...]
  /external/autotest/server/site_tests/firmware_ECCharging/
firmware_ECCharging.py 16 # Threshold of trickle charging current in mA
43 """Get battery desired current value."""
44 current = int(self.ec.send_command_get_output("battery",
46 logging.info("Battery desired current = %d mA", current)
47 return current
59 """Get the actual current from charger to battery."""
60 current = int(self.ec.send_command_get_output("battery",
62 logging.info("Battery actual current = %d mA", current)
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/
TestClass.java 72 private boolean isShadowed(Method current, Method previous) {
73 if (!previous.getName().equals(current.getName())) {
76 if (previous.getParameterTypes().length != current.getParameterTypes().length) {
80 if (!previous.getParameterTypes()[i].equals(current.getParameterTypes()[i])) {
89 Class<?> current = testClass; local
90 while (current != null) {
91 results.add(current);
92 current = current.getSuperclass();
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_optimize.c 297 union i915_full_token *current; local
310 current = &tokens->Tokens[i];
312 if (current->Token.Type != TGSI_TOKEN_TYPE_INSTRUCTION)
315 opcode = current->FullInstruction.Instruction.Opcode;
321 dst_reg = &current->FullInstruction.Dst[0];
333 current = &tokens->Tokens[i];
335 if (current->Token.Type != TGSI_TOKEN_TYPE_INSTRUCTION)
338 opcode = current->FullInstruction.Instruction.Opcode;
344 src_reg = &current->FullInstruction.Src[2];
347 src_reg = &current->FullInstruction.Src[1]
408 union i915_full_token *current = &tokens->Tokens[index - 1]; local
548 union i915_full_token current; local
575 union i915_full_token *current = &tokens->Tokens[index - 1]; local
    [all...]
  /external/python/cpython3/Lib/distutils/
config.py 74 current = {'server': server}
75 current['username'] = config.get(server, 'username')
83 current[key] = config.get(server, key)
85 current[key] = default
92 current['repository'] = self.DEFAULT_REPOSITORY
93 return current
95 if (current['server'] == repository or
96 current['repository'] == repository):
97 return current
  /hardware/google/av/codec2/docs/
doxyfilter.sh 4 global in_comment, current, indent, hold
5 in_comment, current, indent, hold = False, None, '', []
15 global current, hold
16 if current == '//':
29 global current, indent, hold
30 if t != current or ind not in (indent, indent + ' '):
32 current, indent = t, ind
36 global current, indent
41 current, indent = None, None
  /toolchain/binutils/binutils-2.27/binutils/
nlmheader.y 85 /* The current symbol prefix when reading a list of import or export
520 /* The current line number. */
522 /* The current state. */
528 /* The current input file. */
530 static struct input current;
541 current.next = NULL;
553 *push = current;
555 current.next = push;
558 current = *push;
568 current.file = fopen (name, "r")
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicListHeaderIterator.java 162 final int current = this.currentIndex; local
163 if (current < 0) {
167 this.lastIndex = current;
168 this.currentIndex = findNext(current);
170 return (Header) this.allHeaders.get(current);
  /external/glide/library/src/main/java/com/bumptech/glide/manager/
RequestManagerRetriever.java 163 RequestManagerFragment current = (RequestManagerFragment) fm.findFragmentByTag(TAG); local
164 if (current == null) {
165 current = pendingRequestManagerFragments.get(fm);
166 if (current == null) {
167 current = new RequestManagerFragment();
168 pendingRequestManagerFragments.put(fm, current);
169 fm.beginTransaction().add(current, TAG).commitAllowingStateLoss();
173 RequestManager requestManager = current.getRequestManager();
175 requestManager = new RequestManager(context, current.getGlideLifecycle());
176 current.setRequestManager(requestManager)
183 SupportRequestManagerFragment current = (SupportRequestManagerFragment) fm.findFragmentByTag(TAG); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CSCharacterIterator.java 35 return current();
47 public char current() { method in class:CSCharacterIterator
60 return current();
70 return current();
80 return current();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CSCharacterIterator.java 33 return current();
45 public char current() { method in class:CSCharacterIterator
58 return current();
68 return current();
78 return current();

Completed in 783 milliseconds

1 2 3 4 5 6 78 91011>>