HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 126 - 150 of 1683) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/ui/views/
event_utils_win.cc 59 WPARAM target = in_client_area ? event.native_event().wParam : nc_hit_result; local
60 PostMessage(window, event_type, target, MAKELPARAM(window_x, window_y));
  /external/chromium_org/webkit/child/
touch_fling_gesture_curve_unittest.cc 51 MockGestureCurveTarget target; local
59 EXPECT_TRUE(curve->apply(0, &target));
60 EXPECT_TRUE(curve->apply(0.25, &target));
61 EXPECT_NEAR(target.current_velocity().width, 1878, 1);
62 EXPECT_EQ(target.current_velocity().height, 0);
63 EXPECT_TRUE(curve->apply(0.45f, &target)); // Use non-uniform tick spacing.
64 EXPECT_TRUE(curve->apply(1, &target));
65 EXPECT_FALSE(curve->apply(1.5, &target));
66 EXPECT_NEAR(target.cumulative_delta().width, 1193, 1);
67 EXPECT_EQ(target.cumulative_delta().height, 0)
    [all...]
  /external/clang/test/Analysis/
unions.cpp 40 int *target; member in class:PR14054_original::ParseNode::__anon16259::__anon16262
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 20 REM target used if not default (to allow run just a portion of buildAll)
21 set target= variable
40 if x%1==x-target set target=%2 && shift && shift && goto processcmdlineargs variable
48 %vm% -cp ..\org.eclipse.releng.basebuilder\startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -f buildAll.xml %target% %bootclasspath% -DmapVersionTag=%mapVersionTag% -DbuildType=%buildType% %buildID% %ftpUser% %ftpPassword%
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
  /external/gtest/test/
Android.mk 39 # generate the right make target (host vs device). $(4) is used in the
69 define target-test
92 $(call target-test, $(sources))
  /external/icu4c/common/
ustr_cnv.c 133 UChar *target = ucs1; local
139 &target,
151 if(target < (ucs1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
152 *target = 0; /* terminate */
205 char *target = s1; local
211 &target,
223 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
224 *target = 0; /* terminate */
  /external/icu4c/i18n/
tridpars.h 31 * A basic ID, which contains source, target, and variant, but no
56 * 'source' and 'target' will always be non-null. The 'variant'
69 UnicodeString target; // not null member in class:TransliteratorIDParser::Specs
221 * @param target the given target.
226 * @return an array of 4 strings: source, target, variant, and
229 * isSourcePresent will be non-null. The target may be empty if the
234 UnicodeString& target,
239 * Given source, target, and variant strings, concatenate them into a
244 const UnicodeString& target,
    [all...]
  /external/icu4c/samples/datefmt/
util.cpp 20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target += "\""
    [all...]
  /external/icu4c/samples/msgfmt/
util.cpp 20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target += "\""
    [all...]
  /external/icu4c/samples/translit/
util.cpp 20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target += "\""
    [all...]
  /external/icu4c/test/cintltst/
eurocreg.c 143 char target[20]; local
150 target,
151 sizeof(target),
163 target,
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
ShadowCamera.java 48 private Light target; field in class:ShadowCamera
50 public ShadowCamera(Light target) {
51 this.target = target;
61 if (target.getType() == Light.Type.Directional) {
62 DirectionalLight dl = (DirectionalLight) target;
68 PointLight pl = (PointLight) target;
  /external/llvm/lib/Support/
regerror.c 88 int target = errcode &~ REG_ITOA; local
96 if (r->code == target)
105 "REG_0x%x", target);
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldReader.java 13 final Object target; field in class:FieldReader
17 public FieldReader(Object target, Field field) {
18 this.target = target;
29 return field.get(target);
31 throw new MockitoException("Cannot read state from field: " + field + ", on instance: " + target);
FieldSetter.java 11 private final Object target; field in class:FieldSetter
14 public FieldSetter(Object target, Field field) {
15 this.target = target;
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +
  /external/protobuf/src/google/protobuf/stubs/
substitute.cc 112 char* target = string_as_array(output) + original_size; local
117 memcpy(target, src->data(), src->size());
118 target += src->size();
121 *target++ = '$';
125 *target++ = format[i];
129 GOOGLE_DCHECK_EQ(target - output->data(), output->size());
  /external/sfntly/cpp/src/test/
test_utils.cc 42 char* target = new char[ucnv_getMaxCharSize(encoder) * 2]; local
50 target_end = target;
51 ucnv_fromUnicode(encoder, &target_end, target + 4,
58 delete[] target;
62 for (int32_t position = 0; position < target_end - target; ++position) {
64 enc_char |= (target[position] & 0xff);
67 delete[] target;
  /external/skia/bench/
MatrixConvolutionBench.cpp 25 SkIPoint target = SkIPoint::Make(1, 1); local
26 fFilter = new SkMatrixConvolutionImageFilter(kernelSize, kernel, gain, bias, target, tileMode, convolveAlpha);
  /external/skia/src/animator/
SkHitTest.cpp 41 SkDisplayable* target = targets[tIndex]; local
43 target->getBounds(&tBounds);
60 SkDisplayable* target = targets[tIndex]; local
61 target->enableBounder();
  /external/v8/src/
ic-inl.h 70 // Get the target address of the IC.
71 Address target = Assembler::target_address_at(address); local
72 // Convert target address to the code object. Code::GetCodeFromTargetAddress
74 Code* result = Code::GetCodeFromTargetAddress(target);
80 void IC::SetTargetAtAddress(Address address, Code* target) {
81 ASSERT(target->is_inline_cache_stub() || target->is_compare_ic_stub());
89 Code::GetStrictMode(target->extra_ic_state()));
92 Assembler::set_target_address_at(address, target->instruction_start());
93 target->GetHeap()->incremental_marking()->RecordCodeTargetPatch(address
    [all...]
  /external/valgrind/main/none/tests/
pth_cancel2.c 65 pthread_t * target = (pthread_t *)arg; local
67 pthread_cancel(*target);
  /frameworks/av/media/libstagefright/foundation/
AMessage.cpp 34 AMessage::AMessage(uint32_t what, ALooper::handler_id target)
36 mTarget(target),
56 ALooper::handler_id AMessage::target() const { function in class:android::AMessage
359 tmp = StringPrintf(", target = %d", mTarget);
  /frameworks/base/core/java/com/android/internal/app/
ChooserActivity.java 30 Log.w("ChooseActivity", "Target is not an intent: " + targetParcelable);
34 Intent target = (Intent)targetParcelable; local
53 super.onCreate(savedInstanceState, target, title, initialIntents, null, false);
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReaderIf.h 22 #include <mcld/Target/GNULDBackend.h>
60 /// target - the target backend
61 const GNULDBackend& target() const { return m_Backend; } function in class:mcld::ELFReaderIF
62 GNULDBackend& target() { return m_Backend; } function in class:mcld::ELFReaderIF
  /frameworks/rs/cpu_ref/linkloader/lib/
StubLayout.cpp 75 void **target = (void **)(stub + 4); local
76 *target = addr;

Completed in 1560 milliseconds

1 2 3 4 56 7 8 91011>>