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

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/libsepol/cil/src/
cil_reset_ast.h 6 int cil_reset_ast(struct cil_tree_node *current);
cil_resolve_ast.h 38 int cil_resolve_classorder(struct cil_tree_node *current, void *extra_args);
39 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args);
40 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args);
41 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args);
42 int cil_resolve_avrule(struct cil_tree_node *current, void *extra_args);
43 int cil_resolve_type_rule(struct cil_tree_node *current, void *extra_args);
44 int cil_resolve_typeattributeset(struct cil_tree_node *current, void *extra_args);
45 int cil_resolve_typealias(struct cil_tree_node *current, void *extra_args);
46 int cil_resolve_typebounds(struct cil_tree_node *current, void *extra_args);
47 int cil_resolve_typepermissive(struct cil_tree_node *current, void *extra_args)
    [all...]
  /test/vts/tools/build/tasks/list/
vts_test_hidl_hal_hash_list.mk 20 frameworks/hardware/interfaces/current.txt \
21 hardware/interfaces/current.txt \
22 system/hardware/interfaces/current.txt \
23 system/libhidl/transport/current.txt \
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
CursorPhotoSource.java 41 protected ImageData naturalNext(ImageData current) {
42 if (current.cursor == null || current.cursor.isClosed()) {
43 openCursor(current);
45 findPosition(current);
46 current.cursor.moveToPosition(current.position);
47 current.cursor.moveToNext();
49 if (!current.cursor.isAfterLast()) {
50 data = unpackImageData(current.cursor, null)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
MemoryObject.cpp 20 uint64_t current = address; local
23 if (current + size > limit)
26 while (current - address < size) {
27 if (readByte(current, &buf[(current - address)]))
30 current++;
34 *copied = current - address;
  /frameworks/base/libs/hwui/utils/
StringUtils.cpp 24 const char* current = spacedList; local
25 const char* head = current;
27 head = strchr(current, ' ');
28 std::string s(current, head ? head - current : strlen(current));
32 current = head + 1;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSuggestionWrapper.java 26 * Gets the current suggestion.
28 protected abstract Suggestion current(); method in class:AbstractSuggestionWrapper
31 return current().getShortcutId();
35 return current().getSuggestionFormat();
39 return current().getSuggestionIcon1();
43 return current().getSuggestionIcon2();
47 return current().getSuggestionIntentAction();
51 return current().getSuggestionIntentComponent();
55 return current().getSuggestionIntentDataString();
59 return current().getSuggestionIntentExtraData()
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 34 Child current = children[index]; local
35 if (current == null) {
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
38 children[index] = current;
39 return current;
44 if (current.hash == hash
45 && current.uri.compareTo(uri) == 0
46 && current.localName.compareTo(localName) == 0) {
48 return current;
51 previous = current;
69 Child current = children[index]; local
    [all...]
  /external/libexif/test/
test-sorted.c 33 ExifTag last = 0, current; local
36 current = exif_tag_table_get_tag(i);
37 if (current < last) {
39 current);
43 printf("Tag 0x%04x has a NULL name\n", current);
46 last = current;
  /build/make/core/
project_definitions.mk 24 -include prebuilts/sdk/current/definitions.mk
  /tools/tradefederation/core/src/com/android/tradefed/config/
OptionUpdateRule.java 31 boolean shouldUpdate(String optionName, Object current, Object update)
33 return current == null;
40 boolean shouldUpdate(String optionName, Object current, Object update)
49 boolean shouldUpdate(String optionName, Object current, Object update)
51 return current == null || compare(optionName, current, update) < 0;
58 boolean shouldUpdate(String optionName, Object current, Object update)
60 return current == null || compare(optionName, current, update) > 0;
67 boolean shouldUpdate(String optionName, Object current, Object update
88 Object current; local
    [all...]
  /bionic/tests/
sys_quota_test.cpp 24 dqblk current; local
25 quotactl(QCMD(Q_GETQUOTA, USRQUOTA), "/", getuid(), reinterpret_cast<char*>(&current));
31 dqinfo current; local
32 quotactl(QCMD(Q_GETINFO, USRQUOTA), "/", 0, reinterpret_cast<char*>(&current));
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThread.java 36 // On systems that do not require this type of signalling, the current() method
46 public static native long current(); method in class:NativeThread
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 204 * Traverse to the next node after the current node.
207 * @param current The current node of the iteration.
211 public int next(int context, int current)
213 return getParent(current);
217 * Traverse to the next node after the current node that is matched
221 * @param current The current node of the iteration.
226 public int next(int context, int current, int expandedTypeID)
229 current = makeNodeIdentity(current)
    [all...]
  /external/v8/src/
conversions-inl.h 228 bool SubStringEquals(Iterator* current,
231 DCHECK(**current == *substring);
233 ++*current;
234 if (*current == end || **current != *substring) return false;
236 ++*current;
245 Iterator* current,
247 while (*current != end) {
248 if (!unicode_cache->IsWhiteSpaceOrLineTerminator(**current)) return true;
249 ++*current;
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitWriterBuffer.java 22 int current = (buffer.get(initialPos + position / 8)); local
23 current = current < 0 ? current + 256 : current;
24 current += i << (left - numBits);
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
  /frameworks/base/libs/androidfw/
ResourceUtils.cpp 32 const char* current = start; local
33 while (current != end) {
34 if (out_type->size() == 0 && *current == '/') {
36 out_type->assign(start, current - start);
37 start = current + 1;
38 } else if (out_package->size() == 0 && *current == ':') {
40 out_package->assign(start, current - start);
41 start = current + 1;
43 current++;
  /tools/loganalysis/src/com/android/loganalysis/util/config/
OptionUpdateRule.java 32 Object update(String optionName, Object current, Object update)
34 if (current == null) return update;
35 return current;
42 Object update(String optionName, Object current, Object update)
51 Object update(String optionName, Object current, Object update)
53 if (current == null) return update;
54 if (compare(optionName, current, update) < 0) {
55 // current < update; so use the update
58 // current >= update; so keep current
101 Object current; local
    [all...]
  /external/android-clat/
checksum.c 30 * current - the current checksum (or 0 to start a new checksum)
34 uint32_t ip_checksum_add(uint32_t current, const void *data, int len) {
35 uint32_t checksum = current;
95 uint32_t current = 0; local
96 current = ip_checksum_add(current, &(ip6->ip6_src), sizeof(struct in6_addr));
97 current = ip_checksum_add(current, &(ip6->ip6_dst), sizeof(struct in6_addr));
98 current = ip_checksum_add(current, &checksum_len, sizeof(checksum_len))
115 uint32_t current = 0; local
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DiffedFieldValue.java 37 * The value of the field in the current heap dump.
39 public final Value current; field in class:DiffedFieldValue
58 * The field exists in the current heap dump but not the baseline.
63 * The field exists in both the current and baseline heap dumps.
68 * The field exists in the baseline heap dump but not the current.
74 * Constructs a DiffedFieldValue where there are both current and baseline
77 * @param current the current field
81 public static DiffedFieldValue matched(FieldValue current, FieldValue baseline) {
82 return new DiffedFieldValue(current.name
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
smooth.h 30 int16_t *current, /* (i) the un enhanced residual for
  /external/pdfium/core/fxcrt/
fx_random_unittest.cpp 19 std::array<uint32_t, 16> current; local
21 FX_Random_GenerateMT(current.data(), 16);
22 EXPECT_TRUE(seen.insert(current).second);
  /external/guava/guava/src/com/google/common/io/
MultiReader.java 35 private Reader current; field in class:MultiReader
43 * Closes the current reader and opens the next one, if any.
48 current = it.next().openStream();
53 if (current == null) {
56 int result = current.read(cbuf, off, len);
67 while (current != null) {
68 long result = current.skip(n);
79 return (current != null) && current.ready();
83 if (current != null)
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
StringUtils.java 48 int current = begin; local
49 while (current < end && (s.charAt(current) == '-' || s.charAt(current) == ' ')) {
50 ++current;
52 result.append(s, begin, current);
53 while (current < end) {
54 result.append(s.charAt(current));
55 ++current;
56 if ((end - current) % 3 == 0 && end != current)
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadTest.java 38 Thread current = Thread.currentThread(); local
39 ThreadGroup tg = current.getThreadGroup();
41 assertSame(tg, current.getUncaughtExceptionHandler());
42 current.setUncaughtExceptionHandler(eh);
44 assertSame(eh, current.getUncaughtExceptionHandler());
46 current.setUncaughtExceptionHandler(null);
48 assertSame(tg, current.getUncaughtExceptionHandler());

Completed in 880 milliseconds

1 2 3 4 5 6 7 8 91011>>