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

1 2 3 4 5 6 7 891011>>

  /external/libmojo/mojo/public/cpp/bindings/lib/
sync_call_restrictions.cc 21 static SyncCallSettings* current();
45 SyncCallSettings* SyncCallSettings::current() { function in class:mojo::__anon25186::SyncCallSettings
72 if (!SyncCallSettings::current()->allowed()) {
83 SyncCallSettings::current()->IncreaseScopedAllowCount();
88 SyncCallSettings::current()->DecreaseScopedAllowCount();
  /external/skia/src/core/
SkFontMgr.cpp 231 SkFontStyle current; local
232 this->getStyle(i, &current, nullptr);
238 if (current.width() <= pattern.width()) {
239 currentScore += 10 - pattern.width() + current.width();
241 currentScore += 10 - current.width();
244 if (current.width() > pattern.width()) {
245 currentScore += 10 + pattern.width() - current.width();
247 currentScore += current.width();
259 0 <= current.slant() && current.slant() <= 2)
    [all...]
  /external/skqp/src/core/
SkFontMgr.cpp 231 SkFontStyle current; local
232 this->getStyle(i, &current, nullptr);
238 if (current.width() <= pattern.width()) {
239 currentScore += 10 - pattern.width() + current.width();
241 currentScore += 10 - current.width();
244 if (current.width() > pattern.width()) {
245 currentScore += 10 + pattern.width() - current.width();
247 currentScore += current.width();
259 0 <= current.slant() && current.slant() <= 2)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
STLExtras.h 67 RootIt current; member in class:llvm::mapped_iterator
83 inline const RootIt &getCurrent() const { return current; }
87 : current(I), Fn(F) {}
89 : current(It.current), Fn(It.Fn) {}
92 return Fn(*current); // little change
95 _Self& operator++() { ++current; return *this; }
96 _Self& operator--() { --current; return *this; }
97 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
98 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp;
    [all...]
  /external/v8/src/
context-measure.cc 72 for (Object** current = start; current < end; current++) {
73 if ((*current)->IsSmi()) continue;
74 MeasureObject(HeapObject::cast(*current));
  /external/selinux/libsepol/cil/src/
cil_resolve_ast.c 157 int cil_resolve_classperms(struct cil_tree_node *current, struct cil_classperms *cp, void *extra_args)
164 rc = cil_resolve_name(current, cp->class_str, CIL_SYM_CLASSES, extra_args, &datum);
188 int cil_resolve_classperms_set(struct cil_tree_node *current, struct cil_classperms_set *cp_set, void *extra_args)
193 rc = cil_resolve_name(current, cp_set->set_str, CIL_SYM_CLASSPERMSETS, extra_args, &datum);
201 rc = cil_resolve_classperms_list(current, cp_set->set->classperms, extra_args);
213 int cil_resolve_classperms_list(struct cil_tree_node *current, struct cil_list *cp_list, void *extra_args)
220 rc = cil_resolve_classperms(current, curr->data, extra_args);
225 rc = cil_resolve_classperms_set(current, curr->data, extra_args);
238 int cil_resolve_classpermissionset(struct cil_tree_node *current, struct cil_classpermissionset *cps, void *extra_args)
246 rc = cil_resolve_name(current, cps->set_str, CIL_SYM_CLASSPERMSETS, args, &datum)
4164 char *current = strtok_r(name_dup, ".", &sp); local
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_test.c 1097 struct regression_test_case *current = regression_test_cases; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberFormatterSettings.java 447 NumberFormatterSettings<?> current = this; local
448 while (current != null) {
449 switch (current.key) {
451 macros.fallback((MacroProps) current.value);
455 macros.loc = (ULocale) current.value;
460 macros.notation = (Notation) current.value;
465 macros.unit = (MeasureUnit) current.value;
470 macros.rounder = (Rounder) current.value;
475 macros.grouper = (Grouper) current.value;
480 macros.padder = (Padder) current.value
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberFormatterSettings.java 455 NumberFormatterSettings<?> current = this; local
456 while (current != null) {
457 switch (current.key) {
459 macros.fallback((MacroProps) current.value);
463 macros.loc = (ULocale) current.value;
468 macros.notation = (Notation) current.value;
473 macros.unit = (MeasureUnit) current.value;
478 macros.rounder = (Rounder) current.value;
483 macros.grouper = (Grouper) current.value;
488 macros.padder = (Padder) current.value
    [all...]
  /external/mesa3d/src/compiler/glsl/
blob.c 84 blob->current = blob->data + ALIGN(blob->current - blob->data, alignment);
187 blob->current = data;
198 if (blob->current < blob->end && blob->end - blob->current >= size)
214 ret = blob->current;
216 blob->current += size;
248 ret = *((uint32_t*) blob->current);
250 blob->current += size;
266 ret = *((uint64_t*) blob->current);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Huffman.java 90 long current = 0; local
98 current <<= nbits;
99 current |= code;
104 out.write(((int) (current >> n)));
109 current <<= (8 - n);
110 current |= (0xFF >>> n);
111 out.write((int) current);
129 int current = 0; local
133 current = (current << 8) | b
173 Node current = root; local
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Timeline.java 61 * Used for debug purpose. Gets the current number of empty timelines that
106 private Timeline current; field in class:Timeline
124 current = parent = null;
131 this.current = this;
139 * Adds a Tween to the current timeline.
141 * @return The current timeline, for chaining instructions.
145 current.children.add(tween);
150 * Nests a Timeline in the current one.
152 * @return The current timeline, for chaining instructions.
156 if (timeline.current != timeline) throw new RuntimeException("You forgot to call a few 'end()' statements in your pushe (…)
    [all...]
  /frameworks/ml/nn/tools/
sync_enums_to_hal.py 42 self.current = -1
46 assert not self.sections[self.current]
48 line = self.sections[self.current - 1].pop()
49 self.sections[self.current].insert(0, line)
52 self.current = self.current + 1
65 assert self.current == 0
70 self.sections[self.current].append(line)
71 if self.current == self.REST:
74 assert self.current == self.RES
    [all...]
  /external/ImageMagick/Magick++/lib/
Options.cpp 788 current=_drawInfo->affine; local
800 _drawInfo->affine.sx=current.sx*affine.sx+current.ry*affine.rx;
801 _drawInfo->affine.rx=current.rx*affine.sx+current.sy*affine.rx;
802 _drawInfo->affine.ry=current.sx*affine.ry+current.ry*affine.sy;
803 _drawInfo->affine.sy=current.rx*affine.ry+current.sy*affine.sy;
804 _drawInfo->affine.tx=current.sx*affine.tx+current.ry*affine.ty+current.tx
822 current=_drawInfo->affine; local
848 current=_drawInfo->affine; local
872 current=_drawInfo->affine; local
897 current=_drawInfo->affine; local
    [all...]
  /external/flatbuffers/android/jni/
run_flatc.py 22 # Paths to search for flatc relative to the current working directory.
34 current = os.path.join(flatbuffers_dir, path,
36 if os.path.exists(current):
37 flatc = current
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DrawableCrossFadeViewAnimation.java 30 * Animates from the previous drawable to the current drawable in one of two ways.
38 * @param current {@inheritDoc}
43 public boolean animate(T current, ViewAdapter adapter) {
46 TransitionDrawable transitionDrawable = new TransitionDrawable(new Drawable[] { previous, current });
52 defaultAnimation.animate(current, adapter);
  /external/iputils/
tftpsubs.c 40 server. Written originally with multiple buffers in mind, but current
72 static int current; /* index of buffer in use */ variable
90 current = 0;
97 /* Have emptied current buffer by sending to net and getting ack.
104 bfs[current].counter = BF_FREE; /* free old one */
105 current = !current; /* "incr" current */
107 b = &bfs[current]; /* look at new buffer */
169 bfs[current].counter = ct; /* set size of data to write *
    [all...]
  /external/libxcam/modules/ocl/
priority_buffer_queue.cpp 49 SmartPtr<PriorityBuffer> &current = *iter; local
50 XCAM_ASSERT (current.ptr ());
51 if (buf->priority_greater_than (*current.ptr()))
  /external/mesa3d/src/gallium/state_trackers/clover/core/
timestamp.cpp 57 timestamp::current::current(command_queue &q) : function in class:timestamp::current
62 timestamp::current::operator()() const {
  /system/update_engine/
proxy_resolver.cc 36 // MessageLoop::current() since the unit test using a FakeSystemState may
37 // have not define a MessageLoop for the current thread.
38 MessageLoop::current()->CancelTask(idle_callback_id_);
45 idle_callback_id_ = MessageLoop::current()->PostTask(
54 return MessageLoop::current()->CancelTask(request);
  /external/swiftshader/src/Shader/
PixelRoutine.cpp 861 void PixelRoutine::blendFactor(Vector4s &blendFactor, const Vector4s &current, const Vector4s &pixel, BlendFactor blendFactorActive)
872 blendFactor.x = current.x;
873 blendFactor.y = current.y;
874 blendFactor.z = current.z;
877 blendFactor.x = Short4(0xFFFFu) - current.x;
878 blendFactor.y = Short4(0xFFFFu) - current.y;
879 blendFactor.z = Short4(0xFFFFu) - current.z;
892 blendFactor.x = current.w;
893 blendFactor.y = current.w;
894 blendFactor.z = current.w
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
AsyncUtils.java 62 Throwable current = ex; local
63 while (current != null) {
64 if (current instanceof CancellationException) {
65 return (CancellationException) current;
67 current = current.getCause();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 84 IToken current = ( (ITokenStream)input ).LT( 1 );
85 if ( current.Type == TokenTypes.EndOfFile )
87 current = ( (ITokenStream)input ).LT( -1 );
89 t.Line = current.Line;
90 t.CharPositionInLine = current.CharPositionInLine;
92 t.InputStream = current.InputStream;
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 80 * Gets the current value.
82 * @return the current value
123 * if the current value is <a href="#bitEquals">bitwise equal</a>
139 * if the current value is <a href="#bitEquals">bitwise equal</a>
159 * Atomically adds the given value to the current value.
166 long current = value; local
167 double currentVal = longBitsToDouble(current);
170 if (updater.compareAndSet(this, current, next)) {
177 * Atomically adds the given value to the current value.
184 long current = value local
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
ActiveSourceHandler.java 80 // TV is in a mode that should keep its current source/input from
82 // or switch the port back to the one used for the current mode.
83 ActiveSource current = tv.getActiveSource(); local
84 if (current.logicalAddress == getSourceAddress()) {
86 current.logicalAddress, current.physicalAddress);
88 tv.updateActiveSource(current);
91 tv.startRoutingControl(newActive.physicalAddress, current.physicalAddress, true,

Completed in 649 milliseconds

1 2 3 4 5 6 7 891011>>