public static final class GraphDebugInfo.FileLineCol extends com.google.protobuf.GeneratedMessageV3 implements GraphDebugInfo.FileLineColOrBuilder
This represents a file/line location in the source code.Protobuf type
tensorflow.GraphDebugInfo.FileLineCol
Modifier and Type | Class and Description |
---|---|
static class |
GraphDebugInfo.FileLineCol.Builder
This represents a file/line location in the source code.
|
com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
Modifier and Type | Field and Description |
---|---|
static int |
CODE_FIELD_NUMBER |
static int |
COL_FIELD_NUMBER |
static int |
FILE_INDEX_FIELD_NUMBER |
static int |
FUNC_FIELD_NUMBER |
static int |
LINE_FIELD_NUMBER |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getCode()
Source code contained in this file line.
|
com.google.protobuf.ByteString |
getCodeBytes()
Source code contained in this file line.
|
int |
getCol()
Col number in the file line.
|
static GraphDebugInfo.FileLineCol |
getDefaultInstance() |
GraphDebugInfo.FileLineCol |
getDefaultInstanceForType() |
static com.google.protobuf.Descriptors.Descriptor |
getDescriptor() |
int |
getFileIndex()
File name index, which can be used to retrive the file name string from
`files`.
|
String |
getFunc()
Name of function contains the file line.
|
com.google.protobuf.ByteString |
getFuncBytes()
Name of function contains the file line.
|
int |
getLine()
Line number in the file.
|
com.google.protobuf.Parser<GraphDebugInfo.FileLineCol> |
getParserForType() |
int |
getSerializedSize() |
com.google.protobuf.UnknownFieldSet |
getUnknownFields() |
int |
hashCode() |
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable |
internalGetFieldAccessorTable() |
boolean |
isInitialized() |
static GraphDebugInfo.FileLineCol.Builder |
newBuilder() |
static GraphDebugInfo.FileLineCol.Builder |
newBuilder(GraphDebugInfo.FileLineCol prototype) |
GraphDebugInfo.FileLineCol.Builder |
newBuilderForType() |
protected GraphDebugInfo.FileLineCol.Builder |
newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) |
static GraphDebugInfo.FileLineCol |
parseDelimitedFrom(InputStream input) |
static GraphDebugInfo.FileLineCol |
parseDelimitedFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static GraphDebugInfo.FileLineCol |
parseFrom(byte[] data) |
static GraphDebugInfo.FileLineCol |
parseFrom(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static GraphDebugInfo.FileLineCol |
parseFrom(ByteBuffer data) |
static GraphDebugInfo.FileLineCol |
parseFrom(ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static GraphDebugInfo.FileLineCol |
parseFrom(com.google.protobuf.ByteString data) |
static GraphDebugInfo.FileLineCol |
parseFrom(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static GraphDebugInfo.FileLineCol |
parseFrom(com.google.protobuf.CodedInputStream input) |
static GraphDebugInfo.FileLineCol |
parseFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static GraphDebugInfo.FileLineCol |
parseFrom(InputStream input) |
static GraphDebugInfo.FileLineCol |
parseFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static com.google.protobuf.Parser<GraphDebugInfo.FileLineCol> |
parser() |
GraphDebugInfo.FileLineCol.Builder |
toBuilder() |
void |
writeTo(com.google.protobuf.CodedOutputStream output) |
canUseUnsafe, computeStringSize, computeStringSizeNoTag, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof, internalGetMapField, makeExtensionsImmutable, newBuilderForType, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTag
findInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toString
addAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeTo
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
public static final int FILE_INDEX_FIELD_NUMBER
public static final int LINE_FIELD_NUMBER
public static final int COL_FIELD_NUMBER
public static final int FUNC_FIELD_NUMBER
public static final int CODE_FIELD_NUMBER
public final com.google.protobuf.UnknownFieldSet getUnknownFields()
getUnknownFields
in interface com.google.protobuf.MessageOrBuilder
getUnknownFields
in class com.google.protobuf.GeneratedMessageV3
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable
in class com.google.protobuf.GeneratedMessageV3
public int getFileIndex()
File name index, which can be used to retrive the file name string from `files`. The value should be between 0 and (len(files)-1)
int32 file_index = 1;
getFileIndex
in interface GraphDebugInfo.FileLineColOrBuilder
public int getLine()
Line number in the file.
int32 line = 2;
getLine
in interface GraphDebugInfo.FileLineColOrBuilder
public int getCol()
Col number in the file line.
int32 col = 3;
getCol
in interface GraphDebugInfo.FileLineColOrBuilder
public String getFunc()
Name of function contains the file line.
string func = 4;
getFunc
in interface GraphDebugInfo.FileLineColOrBuilder
public com.google.protobuf.ByteString getFuncBytes()
Name of function contains the file line.
string func = 4;
getFuncBytes
in interface GraphDebugInfo.FileLineColOrBuilder
public String getCode()
Source code contained in this file line.
string code = 5;
getCode
in interface GraphDebugInfo.FileLineColOrBuilder
public com.google.protobuf.ByteString getCodeBytes()
Source code contained in this file line.
string code = 5;
getCodeBytes
in interface GraphDebugInfo.FileLineColOrBuilder
public final boolean isInitialized()
isInitialized
in interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
in class com.google.protobuf.GeneratedMessageV3
public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
writeTo
in interface com.google.protobuf.MessageLite
writeTo
in class com.google.protobuf.GeneratedMessageV3
IOException
public int getSerializedSize()
getSerializedSize
in interface com.google.protobuf.MessageLite
getSerializedSize
in class com.google.protobuf.GeneratedMessageV3
public boolean equals(Object obj)
equals
in interface com.google.protobuf.Message
equals
in class com.google.protobuf.AbstractMessage
public int hashCode()
hashCode
in interface com.google.protobuf.Message
hashCode
in class com.google.protobuf.AbstractMessage
public static GraphDebugInfo.FileLineCol parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferException
public static GraphDebugInfo.FileLineCol parseFrom(InputStream input) throws IOException
IOException
public static GraphDebugInfo.FileLineCol parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOException
public static GraphDebugInfo.FileLineCol parseDelimitedFrom(InputStream input) throws IOException
IOException
public static GraphDebugInfo.FileLineCol parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOException
public static GraphDebugInfo.FileLineCol parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
IOException
public static GraphDebugInfo.FileLineCol parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
IOException
public GraphDebugInfo.FileLineCol.Builder newBuilderForType()
newBuilderForType
in interface com.google.protobuf.Message
newBuilderForType
in interface com.google.protobuf.MessageLite
public static GraphDebugInfo.FileLineCol.Builder newBuilder()
public static GraphDebugInfo.FileLineCol.Builder newBuilder(GraphDebugInfo.FileLineCol prototype)
public GraphDebugInfo.FileLineCol.Builder toBuilder()
toBuilder
in interface com.google.protobuf.Message
toBuilder
in interface com.google.protobuf.MessageLite
protected GraphDebugInfo.FileLineCol.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
newBuilderForType
in class com.google.protobuf.GeneratedMessageV3
public static GraphDebugInfo.FileLineCol getDefaultInstance()
public static com.google.protobuf.Parser<GraphDebugInfo.FileLineCol> parser()
public com.google.protobuf.Parser<GraphDebugInfo.FileLineCol> getParserForType()
getParserForType
in interface com.google.protobuf.Message
getParserForType
in interface com.google.protobuf.MessageLite
getParserForType
in class com.google.protobuf.GeneratedMessageV3
public GraphDebugInfo.FileLineCol getDefaultInstanceForType()
getDefaultInstanceForType
in interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType
in interface com.google.protobuf.MessageOrBuilder
Copyright © 2015–2019. All rights reserved.