HomeSort by relevance Sort by last modified time
    Searched refs:NSString (Results 26 - 50 of 380) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/base/objc/
NSString+StdString.h 17 @interface NSString (StdString)
21 + (std::string)stdStringForString:(NSString *)nsString;
22 + (NSString *)stringForStdString:(const std::string&)stdString;
NSString+StdString.mm 11 #import "NSString+StdString.h"
13 @implementation NSString (StdString)
16 return [NSString stdStringForString:self];
19 + (std::string)stdStringForString:(NSString *)nsString {
20 NSData *charData = [nsString dataUsingEncoding:NSUTF8StringEncoding];
25 + (NSString *)stringForStdString:(const std::string&)stdString {
28 return [[NSString alloc] initWithBytes:stdString.data()
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDStatsBuilder.m 21 NSString *_connRecvBitrate;
22 NSString *_connRtt;
23 NSString *_connSendBitrate;
24 NSString *_localCandType;
25 NSString *_remoteCandType;
26 NSString *_transportType;
29 NSString *_actualEncBitrate;
30 NSString *_availableRecvBw;
31 NSString *_availableSendBw;
32 NSString *_targetEncBitrate
    [all...]
RTCICECandidate+JSON.m 15 static NSString const *kRTCICECandidateTypeKey = @"type";
16 static NSString const *kRTCICECandidateTypeValue = @"candidate";
17 static NSString const *kRTCICECandidateMidKey = @"id";
18 static NSString const *kRTCICECandidateMLineIndexKey = @"label";
19 static NSString const *kRTCICECandidateSdpKey = @"candidate";
24 NSString *mid = dictionary[kRTCICECandidateMidKey];
25 NSString *sdp = dictionary[kRTCICECandidateSdpKey];
ARDJoinResponse.m 17 static NSString const *kARDJoinResultKey = @"result";
18 static NSString const *kARDJoinResultParamsKey = @"params";
19 static NSString const *kARDJoinInitiatorKey = @"is_initiator";
20 static NSString const *kARDJoinRoomIdKey = @"room_id";
21 static NSString const *kARDJoinClientIdKey = @"client_id";
22 static NSString const *kARDJoinMessagesKey = @"messages";
23 static NSString const *kARDJoinWebSocketURLKey = @"wss_url";
24 static NSString const *kARDJoinWebSocketRestURLKey = @"wss_post_url";
42 NSString *resultString = responseJSON[kARDJoinResultKey];
54 for (NSString *message in messages)
    [all...]
ARDBitrateTracker.m 22 + (NSString *)bitrateStringForBitrate:(double)bitrate {
24 return [NSString stringWithFormat:@"%.2fMbps", bitrate * 1e-6];
26 return [NSString stringWithFormat:@"%.0fKbps", bitrate * 1e-3];
28 return [NSString stringWithFormat:@"%.0fbps", bitrate];
32 - (NSString *)bitrateString {
ARDRoomServerClient.h 19 - (void)joinRoomWithRoomId:(NSString *)roomId
25 forRoomId:(NSString *)roomId
26 clientId:(NSString *)clientId
30 - (void)leaveRoomWithRoomId:(NSString *)roomId
31 clientId:(NSString *)clientId
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenRewriteStream.h 47 NSString *text;
52 @property (retain, getter=getText, setter=setText:) NSString *text;
54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
61 - (NSInteger) execute:(NSString *)buf;
63 - (NSString *)toString;
64 - (NSInteger) indexOf:(char)aChar inString:(NSString *)aString;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText
    [all...]
ANTLRTokenStream.h 45 - (NSString *) toString;
51 - (NSString *)toStringFromStart:(NSInteger)startIdx ToEnd:(NSInteger)stopIdx;
59 - (NSString *) toStringFromToken:(id<ANTLRToken>)startToken ToToken:(id<ANTLRToken>)stopToken;
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenRewriteStream.h 47 NSString *text;
52 @property (retain, getter=getText, setter=setText:) NSString *text;
54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
61 - (NSInteger) execute:(NSString *)buf;
63 - (NSString *)toString;
64 - (NSInteger) indexOf:(char)aChar inString:(NSString *)aString;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText
    [all...]
ANTLRTokenStream.h 45 - (NSString *) toString;
51 - (NSString *)toStringFromStart:(NSInteger)startIdx ToEnd:(NSInteger)stopIdx;
59 - (NSString *) toStringFromToken:(id<ANTLRToken>)startToken ToToken:(id<ANTLRToken>)stopToken;
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
ANTLRRewriteRuleTokenStream.h 36 description:(NSString *)elementDescription;
39 description:(NSString *)elementDescription
43 description:(NSString *)elementDescription
48 description:(NSString *)aDescription;
50 description:(NSString *)aDescription
53 description:(NSString *)aDescription
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenRewriteStream.h 47 NSString *text;
52 @property (retain, getter=getText, setter=setText:) NSString *text;
54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)index Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
61 - (NSInteger) execute:(NSString *)buf;
63 - (NSString *)toString;
64 - (NSInteger) indexOf:(char)aChar inString:(NSString *)aString;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText
    [all...]
ANTLRTokenStream.h 45 - (NSString *) toString;
51 - (NSString *)toStringFromStart:(NSInteger)startIdx ToEnd:(NSInteger)stopIdx;
59 - (NSString *) toStringFromToken:(id<ANTLRToken>)startToken ToToken:(id<ANTLRToken>)stopToken;
ANTLRRewriteRuleSubtreeStream.h 37 description:(NSString *)anElementDescription;
39 description:(NSString *)anElementDescription
42 description:(NSString *)anElementDescription
45 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
47 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.h 47 NSString *text;
52 @property (retain, getter=text, setter=setText:) NSString *text;
54 + (ANTLRRewriteOperation *) newANTLRRewriteOperation:(NSInteger)anIndex Text:(NSString *)text;
56 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
61 - (NSInteger) execute:(NSString *)buf;
63 - (NSString *)toString;
64 - (NSInteger) indexOf:(char)aChar inString:(NSString *)aString;
70 + (ANTLRInsertBeforeOp *) newANTLRInsertBeforeOp:(NSInteger)anIndex Text:(NSString *)theText;
71 - (id) initWithIndex:(NSInteger)anIndex Text:(NSString *)theText;
84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText
    [all...]
ANTLRMismatchedNotSetException.h 38 NSString *expecting;
40 @property (retain, getter=getExpecting, setter=setExpecting:) NSString *expecting;
44 Follow:(NSString *)expecting;
47 - (id) initWithStream:(id<ANTLRIntStream>)anInput Follow:(NSString *)expecting;
49 - (NSString *)toString;
ANTLRTokenStream.h 45 - (NSString *) toString;
51 - (NSString *)toStringFromStart:(NSInteger)startIdx ToEnd:(NSInteger)stopIdx;
59 - (NSString *) toStringFromToken:(id<ANTLRToken>)startToken ToToken:(id<ANTLRToken>)stopToken;
  /external/webrtc/webrtc/api/objc/
RTCMediaConstraints.mm 14 #import "webrtc/base/objc/NSString+StdString.h"
41 NSDictionary<NSString *, NSString *> *_mandatory;
42 NSDictionary<NSString *, NSString *> *_optional;
46 (NSDictionary<NSString *, NSString *> *)mandatory
48 (NSDictionary<NSString *, NSString *> *)optional {
58 - (NSString *)description
    [all...]
RTCIceServer.mm 14 #import "webrtc/base/objc/NSString+StdString.h"
22 - (instancetype)initWithURLStrings:(NSArray<NSString *> *)urlStrings {
29 - (instancetype)initWithURLStrings:(NSArray<NSString *> *)urlStrings
30 username:(NSString *)username
31 credential:(NSString *)credential {
41 - (NSString *)description {
42 return [NSString stringWithFormat:@"RTCIceServer:\n%@\n%@\n%@",
53 iceServer.username = [NSString stdStringForString:_username];
54 iceServer.password = [NSString stdStringForString:_credential];
56 [_urlStrings enumerateObjectsUsingBlock:^(NSString *url
    [all...]
  /external/google-breakpad/src/common/mac/testing/
GTMSenTestCase.h 68 NSString *STComposeString(NSString *, ...) NS_FORMAT_FUNCTION(1, 2);
70 NSString *STComposeString(NSString *, ...);
90 NSString *_expression = [NSString stringWithFormat:@"Expected noErr, got %ld for (%s)", (long)a1value, #a1]; \
93 inFile:[NSString stringWithUTF8String:__FILE__] \
99 [self failWithException:[NSException failureInRaise:[NSString stringWithFormat:@"(%s) == noErr fails", #a1] \
101 inFile:[NSString stringWithUTF8String:__FILE__] \
120 NSString *_expression = [NSString stringWithFormat:@"Expected %s(%ld) but got %ld for (%s)", #a2, (long)a2v (…)
    [all...]
  /external/google-breakpad/src/client/mac/sender/
uploader.h 41 extern NSString *const kGoogleServerType;
42 extern NSString *const kSocorroServerType;
43 extern NSString *const kDefaultServerType;
72 + (NSDictionary *)readConfigurationDataFromFile:(NSString *)configFile;
79 - (void)uploadData:(NSData *)data name:(NSString *)name;
83 - (void)addServerParameter:(id)value forKey:(NSString *)key;

Completed in 258 milliseconds

12 3 4 5 6 7 8 91011>>