/external/chromium_org/ui/events/ |
event_dispatcher.cc | 46 EventDispatchDetails EventDispatcherDelegate::DispatchEvent(EventTarget* target, 48 CHECK(target); 53 EventDispatchDetails details = PreDispatchEvent(target, event); 55 details = DispatchEventToTarget(target, event); 57 details = PostDispatchEvent(target, *event); 63 EventTarget* target, Event* event) { 68 EventTarget* target, const Event& event) { 73 EventTarget* target, 78 dispatcher.ProcessEvent(target, event); 104 void EventDispatcher::ProcessEvent(EventTarget* target, Event* event) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PointerLockController.cpp | 48 void PointerLockController::requestPointerLock(Element* target) 50 if (!target || !target->inDocument() || m_documentOfRemovedElementWhileWaitingForUnlock) { 51 enqueueEvent(EventTypeNames::webkitpointerlockerror, target); 55 if (target->document().isSandboxed(SandboxPointerLock)) { 57 target->document().addConsoleMessage(SecurityMessageSource, ErrorMessageLevel, "Blocked pointer lock on an element because the element's frame is sandboxed and the 'allow-pointer-lock' permission is not set."); 58 enqueueEvent(EventTypeNames::webkitpointerlockerror, target); 63 if (m_element->document() != target->document()) { 64 enqueueEvent(EventTypeNames::webkitpointerlockerror, target); 67 enqueueEvent(EventTypeNames::webkitpointerlockchange, target); [all...] |
/external/chromium_org/tools/gn/ |
gyp_helper.cc | 11 #include "tools/gn/target.h" 20 SourceFile GypHelper::GetGypFileForTarget(const Target* target, 23 if (!target->gyp_file().is_null()) 24 return target->gyp_file(); 27 const std::string& dir = target->label().dir().value(); 39 target->label().GetUserVisibleName(false) + "\n" 47 std::string GypHelper::GetNameForTarget(const Target* target) const { 48 if (target->settings()->is_default() [all...] |
ninja_target_writer.cc | 19 #include "tools/gn/target.h" 22 NinjaTargetWriter::NinjaTargetWriter(const Target* target, 25 : settings_(target->settings()), 26 target_(target), 38 void NinjaTargetWriter::RunAndWriteFile(const Target* target, 40 const Settings* settings = target->settings(); 44 target->label().GetUserVisibleName(false)); 48 helper.GetNinjaFileForTarget(target).GetSourceFile [all...] |
ninja_binary_target_writer_unittest.cc | 16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); 17 target.set_output_type(Target::SOURCE_SET); 18 target.sources().push_back(SourceFile("//foo/input1.cc")); 19 target.sources().push_back(SourceFile("//foo/input2.cc")); 20 target.OnResolved(); 25 NinjaBinaryTargetWriter writer(&target, setup.toolchain(), out); 51 Target shlib_target(setup.settings(), Label(SourceDir("//foo/"), "shlib")); 52 shlib_target.set_output_type(Target::SHARED_LIBRARY) [all...] |
ninja_copy_target_writer_unittest.cc | 16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); 17 target.set_output_type(Target::COPY_FILES); 19 target.sources().push_back(SourceFile("//foo/input1.txt")); 20 target.sources().push_back(SourceFile("//foo/input2.txt")); 22 target.script_values().outputs().push_back( 30 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out); 50 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out);
|
/external/chromium/sdch/open-vcdiff/src/ |
vcdiff_test.sh | 48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \ 53 # vcdiff with all three arguments. Verify that output file matches target file 56 -target $TARGET_FILE \ 62 -target $OUTPUT_TARGET_FILE \ 66 || { echo "Decoded target does not match original"; \ 73 # vcdiff using stdin/stdout. Verify that output file matches target file 86 || { echo "Decoded target does not match original"; \ 96 -target $TARGET_FILE \ 106 || { echo "Decoded target does not match original"; \ 121 -target $OUTPUT_TARGET_FILE; } [all...] |
/external/chromium_org/sdch/open-vcdiff/src/ |
vcdiff_test.sh | 48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \ 53 # vcdiff with all three arguments. Verify that output file matches target file 56 -target $TARGET_FILE \ 62 -target $OUTPUT_TARGET_FILE \ 66 || { echo "Decoded target does not match original"; \ 73 # vcdiff using stdin/stdout. Verify that output file matches target file 86 || { echo "Decoded target does not match original"; \ 96 -target $TARGET_FILE \ 106 || { echo "Decoded target does not match original"; \ 121 -target $OUTPUT_TARGET_FILE; } [all...] |
/external/open-vcdiff/src/ |
vcdiff_test.sh | 48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \ 53 # vcdiff with all three arguments. Verify that output file matches target file 56 -target $TARGET_FILE \ 62 -target $OUTPUT_TARGET_FILE \ 66 || { echo "Decoded target does not match original"; \ 73 # vcdiff using stdin/stdout. Verify that output file matches target file 86 || { echo "Decoded target does not match original"; \ 96 -target $TARGET_FILE \ 106 || { echo "Decoded target does not match original"; \ 121 -target $OUTPUT_TARGET_FILE; } [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
MutationRecord.cpp | 47 ChildListRecord(PassRefPtr<Node> target, PassRefPtr<NodeList> added, PassRefPtr<NodeList> removed, PassRefPtr<Node> previousSibling, PassRefPtr<Node> nextSibling) 48 : m_target(target) 58 virtual Node* target() OVERRIDE { return m_target.get(); } 73 RecordWithEmptyNodeLists(PassRefPtr<Node> target, const String& oldValue) 74 : m_target(target) 80 virtual Node* target() OVERRIDE { return m_target.get(); } 100 AttributesRecord(PassRefPtr<Node> target, const QualifiedName& name, const AtomicString& oldValue) 101 : RecordWithEmptyNodeLists(target, oldValue) 118 CharacterDataRecord(PassRefPtr<Node> target, const String& oldValue) 119 : RecordWithEmptyNodeLists(target, oldValue [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/ |
dsc_info.py | 21 for target in targets: 22 if target['NAME'] == target_name: 23 return target 24 Error('Target %s not found' % target_name) 29 target = FindTarget(tree, target_name) 30 for filename in target['SOURCES']: 37 parser = optparse.OptionParser(usage='%prog: [OPTIONS] TARGET') 41 help='Print a list of source files for the target', 49 target = args[0] 53 return '\n'.join(GetSources(libdir, tree, target)) [all...] |
/external/chromium_org/remoting/host/ |
audio_silence_detector_unittest.cc | 16 void TestSilenceDetector(AudioSilenceDetector* target, 19 target->Reset(kSamplingRate, 1); 23 bool result = target->IsSilence(samples, samples_count); 47 AudioSilenceDetector target(0); 48 TestSilenceDetector(&target, kSamples, arraysize(kSamples), true); 54 AudioSilenceDetector target(0); 55 TestSilenceDetector(&target, kSamples, arraysize(kSamples), false);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tscoll.h | 33 void doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result); 35 void doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result); 36 void doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result); 37 virtual void reportCResult( const UnicodeString &source, const UnicodeString &target, 44 static UnicodeString &prettify(const CollationKey &source, UnicodeString &target); 45 static UnicodeString &appendCompareResult(Collator::EComparisonResult result, UnicodeString &target); 52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
|
/external/chromium_org/third_party/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/icu4c/test/intltest/ |
tscoll.h | 33 void doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result); 35 void doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result); 36 void doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result); 37 virtual void reportCResult( const UnicodeString &source, const UnicodeString &target, 44 static UnicodeString &prettify(const CollationKey &source, UnicodeString &target); 45 static UnicodeString &appendCompareResult(Collator::EComparisonResult result, UnicodeString &target); 52 UCollationResult compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status);
|
/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;
|
/frameworks/base/core/java/android/os/ |
Messenger.java | 34 * @param target The Handler that will receive sent messages. 36 public Messenger(Handler target) { 37 mTarget = target.getIMessenger(); 46 * @throws RemoteException Throws DeadObjectException if the target 94 IBinder target = in.readStrongBinder(); 95 return target != null ? new Messenger(target) : null; 136 * @param target The IBinder this Messenger should communicate with. 138 public Messenger(IBinder target) { 139 mTarget = IMessenger.Stub.asInterface(target); [all...] |
RemoteCallback.java | 47 RemoteCallbackProxy(IRemoteCallback target) { 48 super(target); 60 RemoteCallback(IRemoteCallback target) { 62 mTarget = target; 98 IBinder target = in.readStrongBinder(); 99 return target != null ? new RemoteCallbackProxy( 100 IRemoteCallback.Stub.asInterface(target)) : null;
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/ |
ImageFormat.java | 40 int target) { 41 MutableFrameFormat result = new MutableFrameFormat(FrameFormat.TYPE_BYTE, target); 45 if (target == FrameFormat.TARGET_SIMPLE) { 54 int target) { 59 target); 62 public static MutableFrameFormat create(int colorspace, int target) { 67 target);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
F.pass.cpp | 73 assert(f.target<A>()); 74 assert(f.target<int(*)(int)>() == 0); 81 assert(f.target<int(*)(int)>()); 82 assert(f.target<A>() == 0); 89 assert(f.target<int(*)(int)>() == 0); 90 assert(f.target<A>() == 0); 96 assert(f.target<int (A::*)(int) const>() != 0);
|
F_assign.pass.cpp | 77 assert(f.target<A>()); 78 assert(f.target<int(*)(int)>() == 0); 86 assert(f.target<int(*)(int)>()); 87 assert(f.target<A>() == 0); 95 assert(f.target<int(*)(int)>() == 0); 96 assert(f.target<A>() == 0); 103 assert(f.target<int (A::*)(int) const>() != 0);
|
alloc_F.pass.cpp | 62 assert(f.target<A>()); 63 assert(f.target<int(*)(int)>() == 0); 68 assert(f.target<int(*)(int)>()); 69 assert(f.target<A>() == 0); 75 assert(f.target<int(*)(int)>() == 0); 76 assert(f.target<A>() == 0); 83 assert(f.target<int (A::*)(int) const>() != 0);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
SwitchList.java | 23 * List of (value, target) mappings representing the choices of a 25 * also holds the default target for the switch. 33 * is always one extra element in the target list, to hold the 34 * default target 81 * Gets the indicated target. Asking for the target at {@code size()} 82 * returns the default target. 85 * @return {@code >= 0;} the target 92 * Gets the default target. This is just a shorthand for 95 * @return {@code >= 0;} the default target 176 int target = targets.get(i); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/events/ |
EventContext.h | 67 EventTarget* target() const { return m_target.get(); } function in class:WebCore::EventContext 96 inline bool EventContext::isUnreachableNode(EventTarget* target) 99 return target && target->toNode() && !target->toNode()->isSVGElement() && !target->toNode()->treeScope().isInclusiveAncestorOf(m_node->treeScope()); 103 inline void EventContext::setTarget(PassRefPtr<EventTarget> target) 105 ASSERT(!isUnreachableNode(target.get())); 106 m_target = target;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
teximage.h | 44 _mesa_is_cube_face(GLenum target) 46 return (target >= GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB && 47 target <= GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB); 67 _mesa_is_proxy_texture(GLenum target); 70 _mesa_get_proxy_target(GLenum target); 92 GLenum target, GLint level, 108 GLenum target); 111 _mesa_get_current_tex_object(struct gl_context *ctx, GLenum target); 117 GLenum target, GLint level); 122 GLenum target, GLint level) [all...] |