HomeSort by relevance Sort by last modified time
    Searched full:combined (Results 151 - 175 of 2458) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceRequest.java 29 * ThreadSafe class to deal with the combined future and lifetime
  /packages/apps/Email/res/values/
colors.xml 32 <!-- Account color chips on combined view -->
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
SelectionBuilder.java 53 * Returns a combined selection clause with AND of all clauses added using
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 52 String[] combined = new String[extraFragments.length + graphicsFragments.length]; local
53 System.arraycopy(graphicsFragments, 0, combined, 0, graphicsFragments.length);
54 System.arraycopy(extraFragments, 0, combined, graphicsFragments.length,
58 currentIndex, combined);
  /toolchain/binutils/binutils-2.25/include/
vtv-change-permission.h 17 distribution when not linked into a combined executable.)
  /art/runtime/
class_table.cc 163 ClassSet combined; local
168 combined.Insert(root);
171 const size_t ret = combined.WriteToMemory(ptr);
  /external/autotest/client/site_tests/graphics_dEQP/expectations/broadwell/
dEQP-GLES2.functional.hasty.Flaky.bz2 
  /external/chromium-trace/catapult/telemetry/telemetry/value/
summary.py 92 # x for page1, page2 combined
96 # y for page1, page2 combined
138 # Output the combined values.
  /external/elfutils/libelf/
elf-knowledge.h 82 match if two sections are automatically combined. Sections still
83 can be forcefully combined in which case SH_FLAGS_COMBINE can be
84 used to determine the combined flags. */
  /external/fio/lib/
rand.c 2 This is a maximally equidistributed combined Tausworthe generator
13 From: P. L'Ecuyer, "Maximally Equidistributed Combined Tausworthe
22 Equidistributed Combined LFSR Generators", Mathematics of
  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 242 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
243 if (Combined < 27)
246 if (Combined == 31)
248 Combined += 5;
250 Combined -= 27;
251 unsigned Op1High = Combined % 3;
252 unsigned Op2High = Combined / 3;
261 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
262 if (Combined >= 27)
265 unsigned Op1High = Combined % 3
    [all...]
  /frameworks/support/v7/appcompat/tests/src/android/support/v7/widget/
AppCompatSpinnerTest.java 75 // combined bitmap matches the expected color fill. This should remove dependency on the
80 // Note that we are only testing the center pixel of the combined popup background. This
82 // drop shadow of the combined visual appearance of a popup.
  /frameworks/wilhelm/src/android/
android_Effect.h 117 * should be combined with the send level for the aux level to follow volume changes.
124 * should be combined with the send level for the aux level to follow volume changes.
132 * should be combined with the send level for the aux level to follow volume changes.
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 242 * to combined output character.
357 * key is a "dead key" that should be combined with another to
485 * @return The combined character, or 0 if the characters cannot be combined.
501 int combined; local
503 combined = sDeadKeyCache.get(combination, -1);
504 if (combined == -1) {
509 combined = result.codePointCount(0, result.length()) == 1
511 sDeadKeyCache.put(combination, combined);
514 return combined;
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTest.java 38 * JDWP Unit test for possible combined (co-located) events:
152 // ignore SINGLE_STEP events until receiving combined METHOD_ENTRY,
154 logWriter.println("=> Try to receive and check combined events: "
287 // ignore SINGLE_STEP events until receiving combined METHOD_EXIT,
289 logWriter.println("=> Try to receive and check combined events: "
407 // ignore SINGLE_STEP events until receiving combined METHOD_ENTRY,
410 .println("=> Try to receive and check combined events: METHOD_ENTRY, SINGLE_STEP events; ignore single SINGLE_STEP event");
534 // ignore SINGLE_STEP events until receiving combined METHOD_EXIT,
537 .println("=> Try to receive and check combined events: METHOD_EXIT, SINGLE_STEP events; ignore single SINGLE_STEP event");
654 // receive and check combined METHOD_ENTRY, BREAKPOINT event
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
BuildDependencyGenerator.java 43 * For example, combined grammar T.g (no token import) generates:
126 if (grammar.type == Grammar.COMBINED) {
139 // for combined, don't generate TLexer.tokens
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 135 /// buffer with a new string. This is effectively a combined "remove/insert"
141 /// buffer with a new string. This is effectively a combined "remove/insert"
148 /// buffer with a new string. This is effectively a combined "remove/insert"
  /external/llvm/include/llvm/Bitcode/
ReaderWriter.h 80 /// combined index during function importing. When reading the combined index
106 /// writing the combined index file for ThinLTO.
  /external/skia/src/core/
SkPictureRecord.h 23 #define UNPACK_8_24(combined, small, large) \
24 small = (combined >> 24) & 0xFF; \
25 large = combined & MASK_24;
  /hardware/bsp/intel/peripheral/libmraa/api/mraa/
common.h 190 * Get combined platform type, board must be initialised.
191 * The combined type is represented as
194 * @return int combined platform type
  /libcore/ojluni/src/main/java/java/util/stream/
PipelineHelper.java 66 * Gets the combined stream and operation flags for the output of the described
70 * @return the combined stream and operation flags
85 * {@link StreamOpFlag#SIZED} is known on the combined stream and operation
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 104 * Multipart or BodyPart which contains accepted BodyParts. Usually combined with other
171 * Usually combined with other builder object and helper method.
212 * Usually combined with other builder object and helper method.
  /cts/tests/openglperf2/jni/graphics/
PerspectiveMeshNode.cpp 54 // Pass in the combined matrix.
  /cts/tests/openglperf2/jni/reference/scene/flocking/
WaterMeshNode.cpp 58 // Pass in the combined matrix.
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
RepeatingSensorOperation.java 25 * times. This class can be combined to compose complex {@link SensorOperation}s.

Completed in 2447 milliseconds

1 2 3 4 5 67 8 91011>>