/packages/apps/UnifiedEmail/res/drawable/ |
folder_no_hover.xml | 19 <selector xmlns:android="http://schemas.android.com/apk/res/android"> 20 <!-- If this selector has more than one state, FolderItemView will need to be changed 23 </selector>
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSParserValues.cpp | 161 OwnPtr<CSSParserSelector> selector = m_tagHistory.release(); local 163 OwnPtr<CSSParserSelector> next = selector->m_tagHistory.release(); 164 toDelete.append(selector.release()); 167 selector = next.release(); 198 void CSSParserSelector::insertTagHistory(CSSSelector::Relation before, PassOwnPtr<CSSParserSelector> selector, CSSSelector::Relation after) 201 selector->setTagHistory(m_tagHistory.release()); 203 selector->setRelation(after); 204 m_tagHistory = selector; 207 void CSSParserSelector::appendTagHistory(CSSSelector::Relation relation, PassOwnPtr<CSSParserSelector> selector) 213 end->setTagHistory(selector); 229 CSSParserSelector* selector = const_cast<CSSParserSelector*>(this); local [all...] |
CSSStyleRule.cpp | 70 for (const CSSSelector* selector = m_styleRule->selectorList().first(); selector; selector = CSSSelectorList::next(selector)) { 71 if (selector != m_styleRule->selectorList().first()) 73 builder.append(selector->selectorText());
|
/external/chromium/chrome/browser/ui/cocoa/ |
animatable_view.mm | 80 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 94 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 96 if ([delegate_ respondsToSelector:@selector(animationDidStop:)]) 102 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 104 if ([delegate_ respondsToSelector:@selector(animationDidEnd:)])
|
test_event_utils.mm | 10 SEL selector) { 11 old_selector_impl_ = class_getInstanceMethod(target, selector); 12 new_selector_impl_ = class_getInstanceMethod(source, selector);
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_model_observer_for_cocoa.h | 5 // C++ bridge class to send a selector to a Cocoa object when the 32 // When |node| in |model| changes, send |selector| to |object|. 33 // Assumes |selector| is a selector that takes one arg, like an 44 SEL selector);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
animatable_view.mm | 80 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 94 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 96 if ([delegate_ respondsToSelector:@selector(animationDidStop:)]) 102 if ([resizeDelegate_ respondsToSelector:@selector(setAnimationInProgress:)]) 104 if ([delegate_ respondsToSelector:@selector(animationDidEnd:)])
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
SocketChannelTest.java | 25 import java.nio.channels.Selector; 70 Selector selector = Selector.open(); local 71 SelectionKey selectionKey = sc.register(selector, SelectionKey.OP_CONNECT);
|
/external/chromium_org/third_party/ocmock/OCMock/ |
OCPartialMockObject.m | 99 Method forwardInvocationMethod = class_getInstanceMethod([self class], @selector(forwardInvocationForRealObject:)); 102 class_addMethod(subclass, @selector(forwardInvocation:), forwardInvocationImp, forwardInvocationTypes); 105 - (void)setupForwarderForSelector:(SEL)selector 108 Method originalMethod = class_getInstanceMethod([subclass superclass], selector); 111 IMP forwarderImp = [subclass instanceMethodForSelector:@selector(aMethodThatMustNotExist)]; 114 SEL aliasSelector = NSSelectorFromString([OCMRealMethodAliasPrefix stringByAppendingString:NSStringFromSelector(selector)]); 124 [self class], NSStringFromSelector([anInvocation selector])];
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
seek_unittest.py | 22 """Tests that with no selector Seek action seeks first media element.""" 32 """Tests that Seek action seeks video element matching selector.""" 33 data = {'selector': '#video_1', 'wait_for_seeked': True, 'seek_time': 1} 40 # Assert only video matching selector has played. 45 """Tests that Seek action seeks all video elements with selector='all'.""" 46 data = {'selector': 'all', 'wait_for_seeked': True, 'seek_time': 1} 59 data = {'selector': '#video_1',
|
play_unittest.py | 23 """Tests that with no selector Play action plays first video element.""" 36 """Tests that Play action plays video element matching selector.""" 37 data = {'selector': '#video_1', 'wait_for_playing': True} 44 # Assert only video matching selector has played. 49 """Tests that Play action plays all video elements with selector='all'.""" 50 data = {'selector': 'all', 'wait_for_playing': True} 63 data = {'selector': '#video_1', 75 data = {'selector': '#video_1', 'wait_for_ended': True} 87 data = {'selector': '#video_1', 'wait_for_ended': False} 99 data = {'selector': '#video_1', 'wait_for_ended': True, 'wait_timeout': 1 [all...] |
wait.py | 45 assert hasattr(self, 'text') or hasattr(self, 'selector') 51 elif self.selector: 53 'document.querySelector("%s") != null' % self.selector),
|
/external/clang/test/Index/ |
complete-at-exprstmt.m | 19 @selector(add:to:); 25 // CHECK-CC1: {TypedText selector}{LeftParen (}{Placeholder selector}{RightParen )} 32 // CHECK-CC2: {TypedText selector}{LeftParen (}{Placeholder selector}{RightParen )} 36 // CHECK-CC3: NotImplemented:{ResultType SEL}{TypedText @selector}{LeftParen (}{Placeholder selector}{RightParen )}
|
complete-objc-message-id.m | 64 // RUN: c-index-test -code-completion-at=%s:31:13 %s | FileCheck -check-prefix=CHECK-SELECTOR-PREF %s 65 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText alloc} (32) 66 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType Class}{TypedText class} (35) 67 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText init} (35) 68 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType id}{TypedText new} (35) 69 // CHECK-SELECTOR-PREF: ObjCClassMethodDecl:{ResultType Class}{TypedText superclass} (35)
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
autocomplete_text_field_editor_unittest.mm | 113 action:@selector(goFish:) 151 EXPECT_EQ(@selector(cut:), [[items objectAtIndex:0] action]) 263 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(cut:)); 264 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(copy:)); 265 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(copyURL:)); 266 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(paste:)); 267 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(pasteAndGo:)); 270 EXPECT_EQ([[items objectAtIndex:i] action], @selector(commandDispatch:)); 285 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(cut:)); 286 EXPECT_EQ([[items objectAtIndex:i++] action], @selector(copy:)) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediamessages.h | 72 const StreamSelector& selector, StreamParams* stream); 74 const StreamSelector& selector, StreamParams* stream); 76 const StreamSelector& selector, StreamParams* stream); 82 bool RemoveAudioStream(const StreamSelector& selector); 83 bool RemoveVideoStream(const StreamSelector& selector); 84 bool RemoveDataStream(const StreamSelector& selector); 98 StaticVideoView(const StreamSelector& selector, 100 : selector(selector), 107 StreamSelector selector; member in struct:cricket::StaticVideoView [all...] |
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
UiCollection.java | 26 * Constructs an instance as described by the selector 28 * @param selector 31 public UiCollection(UiSelector selector) { 32 super(selector); 37 * selector. 44 * @param childPattern {@link UiSelector} selector of the child pattern to match and return 72 * selector. 79 * @param childPattern {@link UiSelector} selector of the child pattern to match and return 94 * selector. 102 * @param childPattern {@link UiSelector} selector of the child pattern to match and retur [all...] |
/frameworks/uiautomator/core/com/android/uiautomator/core/ |
UiCollection.java | 26 * Constructs an instance as described by the selector 28 * @param selector 31 public UiCollection(UiSelector selector) { 32 super(selector); 37 * selector. 44 * @param childPattern {@link UiSelector} selector of the child pattern to match and return 72 * selector. 79 * @param childPattern {@link UiSelector} selector of the child pattern to match and return 94 * selector. 102 * @param childPattern {@link UiSelector} selector of the child pattern to match and retur [all...] |
/external/clang/include/clang/Basic/ |
IdentifierTable.h | 12 /// clang::Selector interfaces. 38 class MultiKeywordSelector; // private class used by Selector 541 /// beyond their selector name; for example, a method called '_init' 552 // additional CamelCase "words" in their first selector chunk 561 // selector with the given name. 600 class Selector { 604 // Empty selector = 0. 612 Selector(IdentifierInfo *II, unsigned nArgs) { 618 Selector(MultiKeywordSelector *SI) { 637 static ObjCMethodFamily getMethodFamilyImpl(Selector sel) [all...] |
/external/clang/test/SemaObjC/ |
unused.m | 32 - (int) meth: (int)x: // expected-warning {{'x' used as the name of the previous parameter rather than as part of the selector}} \ 33 // expected-note {{introduce a parameter name to make 'x' part of the selector}} \ 34 // expected-note {{or insert whitespace before ':' to use 'x' as parameter name and have an empty entry in the selector}} 36 (int)y: // expected-warning {{unused}} expected-warning {{'y' used as the name of the previous parameter rather than as part of the selector}} \ 37 // expected-note {{introduce a parameter name to make 'y' part of the selector}} \ 38 // expected-note {{or insert whitespace before ':' to use 'y' as parameter name and have an empty entry in the selector}}
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerId.java | 6 import org.bouncycastle.cert.selector.X509CertificateHolderSelector; 7 import org.bouncycastle.util.Selector; 13 implements Selector
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
NSScrollerImpDetails.mm | 42 apiAvailable = [scrollerImpClass respondsToSelector:@selector(scrollerImpWithStyle:controlSize:horizontal:replacingScrollerImp:)] 43 && [scrollerImpPairClass instancesRespondToSelector:@selector(scrollerStyle)]; 51 if ([NSScroller respondsToSelector:@selector(preferredScrollerStyle)])
|
/external/chromium_org/third_party/skia/src/lazy/ |
SkBitmapFactory.cpp | 38 void SkBitmapFactory::setCacheSelector(CacheSelector* selector) { 39 SkRefCnt_SafeAssign(fCacheSelector, selector); 40 if (selector != NULL) {
|
/external/chromium_org/ui/base/test/ |
cocoa_test_event_utils.h | 14 // Within a given scope, replace the selector |selector| on |target| with that 18 ScopedClassSwizzler(Class target, Class source, SEL selector);
|
/external/chromium_org/ui/keyboard/resources/elements/ |
kb-key.html | 53 <polymer-element name="kb-layout-selector" class="layout-selector dark" char="Invalid" 56 Polymer('kb-layout-selector', {
|