Searched refs:textField (Results 1 – 9 of 9) sorted by relevance
/external/clang/test/SemaObjC/ |
D | objcbridge-related-attribute.m | 21 NSColor * Test1(NSTextField *textField, CGColorRef newColor) { 23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu… 27 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) { 29 textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning}} 33 CGColorRef Test3(NSTextField *textField, CGColorRef newColor) { 34 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted… 35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to … 38 CGColorRef2 Test4(NSTextField *textField, CGColorRef2 newColor) { 39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}} 40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}}
|
D | arc-objcbridge-related-attribute.m | 21 NSColor * Test1(NSTextField *textField, CGColorRef newColor) { 23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu… 27 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) { 29 …textField.backgroundColor = newColor; // expected-warning {{incompatible pointer types assigning t… 33 CGColorRef Test3(NSTextField *textField, CGColorRef newColor) { 34 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted… 35 …return textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted to … 38 CGColorRef2 Test4(NSTextField *textField, CGColorRef2 newColor) { 39 newColor = textField.backgroundColor; // expected-warning {{incompatible pointer types assigning}} 40 return textField.backgroundColor; // expected-warning {{incompatible pointer types returning}}
|
D | check-objcbridge-related-attribute-lookup.m | 22 NSColor * Test1(NSTextField *textField, CGColorRef newColor) { 23 …textField.backgroundColor = newColor; // expected-error {{'CGColorRef' (aka 'struct CGColor *') mu… 25 …newColor = textField.backgroundColor; // expected-error {{'NSColor *' must be explicitly converted… 28 NSColor * Test2(NSTextField *textField, CGColorRef1 newColor) { 29 …textField.backgroundColor = newColor; // expected-error {{could not find Objective-C class 'XNSCol… 31 …newColor = textField.backgroundColor ; // expected-error {{could not find Objective-C class 'XNSCo… 35 NSColor * Test3(NSTextField *textField, CGColorRef2 newColor) { 36 …textField.backgroundColor = newColor; // expected-error {{'PNsColor' must be name of an Objective-… 38 …newColor = textField.backgroundColor; // expected-error {{'PNsColor' must be name of an Objective-…
|
/external/clang/test/FixIt/ |
D | fixit-objc-bridge-related-attr.m | 19 NSColor * Test1(NSTextField *textField, CGColorRef newColor) { 20 textField.backgroundColor = newColor; 24 CGColorRef Test2(NSTextField *textField, CGColorRef newColor) { 25 newColor = textField.backgroundColor; // [textField.backgroundColor CGColor] 26 return textField.backgroundColor;
|
D | fixit-objc-bridge-related-property.m | 18 CGColorRef Test(NSTextField *textField, CGColorRef newColor) { 19 newColor = textField.backgroundColor; 20 return textField.backgroundColor;
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/rbnf/ |
D | RbnfDemo.java | 96 textField = new DemoTextFieldHolder(); in createDemoFrame() 97 textField.setFont(new Font("Serif", Font.PLAIN, 24)); in createDemoFrame() 112 textField.setText("PARSE ERROR"); in createDemoFrame() 116 textField.setText(spelloutFormatter.format(theNumber, ruleSetName)); in createDemoFrame() 133 textField.addKeyListener(new KeyAdapter() { in createDemoFrame() 143 textField.selectAll(); in createDemoFrame() 146 textField.select(parsePosition.getIndex(), fieldText.length()); in createDemoFrame() 150 textField.selectAll(); in createDemoFrame() 158 textField.addFocusListener(new FocusAdapter() { in createDemoFrame() 168 textField.setText(textField.getText()); // textField.repaint() didn't work right in createDemoFrame() [all …]
|
/external/skia/experimental/iOSSampleApp/Shared/ |
D | SkOptionsTableViewController.mm | 156 UITextField* textField = (UITextField *)sender; 157 [textField resignFirstResponder]; 158 item.fItem->setString([textField.text UTF8String]); 247 UITextField* textField = [[UITextField alloc] 249 textField.adjustsFontSizeToFitWidth = YES; 250 textField.textAlignment = NSTextAlignmentRight; 251 textField.textColor = cell.detailTextLabel.textColor; 252 textField.placeholder = value; 253 textField.returnKeyType = UIReturnKeyDone; 254 [textField addTarget:self [all …]
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/ |
D | ARDMainView.m | 92 - (BOOL)textFieldShouldReturn:(UITextField *)textField { 95 [textField resignFirstResponder];
|
/external/proguard/src/proguard/gui/ |
D | ProGuardGUI.java | 869 private JButton createBrowseButton(final JTextField textField, in createBrowseButton() argument 879 fileChooser.setSelectedFile(new File(textField.getText())); in createBrowseButton() 885 textField.setText(fileChooser.getSelectedFile().getPath()); in createBrowseButton() 894 protected JButton createOptimizationsButton(final JTextField textField) in createOptimizationsButton() argument 904 optimizationsDialog.setFilter(textField.getText()); in createOptimizationsButton() 910 textField.setText(optimizationsDialog.getFilter()); in createOptimizationsButton()
|